[Python-checkins] [3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28943)

serhiy-storchaka webhook-mailer at python.org
Thu Oct 14 13:02:34 EDT 2021


https://github.com/python/cpython/commit/0bff4ccbfd3297b0adf690655d3e9ddb0033bc69
commit: 0bff4ccbfd3297b0adf690655d3e9ddb0033bc69
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: serhiy-storchaka <storchaka at gmail.com>
date: 2021-10-14T20:02:20+03:00
summary:

[3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28943)

They support now splitting escape sequences between input chunks.

Add the third parameter "final" in codecs.unicode_escape_decode().
It is True by default to match the former behavior.
(cherry picked from commit c96d1546b11b4c282a7e21737cb1f5d16349656d)

Co-authored-by: Serhiy Storchaka <storchaka at gmail.com>

files:
A Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst
M Doc/data/python3.10.abi
M Include/cpython/unicodeobject.h
M Lib/encodings/unicode_escape.py
M Lib/test/test_codecs.py
M Modules/_codecsmodule.c
M Modules/clinic/_codecsmodule.c.h
M Objects/unicodeobject.c
M Parser/string_parser.c

diff --git a/Doc/data/python3.10.abi b/Doc/data/python3.10.abi
index 1dca3e1c2e3de..0e678f3aedf9f 100644
--- a/Doc/data/python3.10.abi
+++ b/Doc/data/python3.10.abi
@@ -1046,6 +1046,7 @@
     <elf-symbol name='_PyGen_Finalize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyGen_SetStopIterationValue' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyImport_AcquireLock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_PyImport_FindExtensionObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyImport_FixupBuiltin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyImport_FixupExtensionObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyImport_GetModuleId' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -1248,7 +1249,8 @@
     <elf-symbol name='_PyUnicode_AsUnicode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyUnicode_CheckConsistency' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyUnicode_Copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
-    <elf-symbol name='_PyUnicode_DecodeUnicodeEscape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_PyUnicode_DecodeUnicodeEscapeInternal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_PyUnicode_DecodeUnicodeEscapeStateful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyUnicode_EQ' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyUnicode_EncodeCharmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <elf-symbol name='_PyUnicode_EncodeUTF16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -1647,333 +1649,1037 @@
     <function-decl name='Py_GetBuildInfo' mangled-name='Py_GetBuildInfo' filepath='./Modules/getbuildinfo.c' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetBuildInfo'>
       <return type-id='type-id-3'/>
     </function-decl>
+    <type-decl name='void' id='type-id-4'/>
+    <function-decl name='PyOS_snprintf' mangled-name='PyOS_snprintf' filepath='./Include/pyerrors.h' line='310' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Parser/token.c' comp-dir-path='/src' language='LANG_C99'>
-    <qualified-type-def type-id='type-id-3' const='yes' id='type-id-4'/>
+    <qualified-type-def type-id='type-id-3' const='yes' id='type-id-5'/>
 
-    <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='infinite' id='type-id-5'>
-      <subrange length='infinite' id='type-id-6'/>
+    <array-type-def dimensions='1' type-id='type-id-5' size-in-bits='infinite' id='type-id-6'>
+      <subrange length='infinite' id='type-id-7'/>
 
     </array-type-def>
-    <qualified-type-def type-id='type-id-5' const='yes' id='type-id-7'/>
-    <var-decl name='_PyParser_TokenNames' type-id='type-id-7' mangled-name='_PyParser_TokenNames' visibility='default' filepath='./Include/token.h' line='88' column='1' elf-symbol-id='_PyParser_TokenNames'/>
-    <type-decl name='int' size-in-bits='32' id='type-id-8'/>
+    <qualified-type-def type-id='type-id-6' const='yes' id='type-id-8'/>
+    <var-decl name='_PyParser_TokenNames' type-id='type-id-8' mangled-name='_PyParser_TokenNames' visibility='default' filepath='./Include/token.h' line='88' column='1' elf-symbol-id='_PyParser_TokenNames'/>
+    <type-decl name='int' size-in-bits='32' id='type-id-9'/>
     <function-decl name='PyToken_ThreeChars' mangled-name='PyToken_ThreeChars' filepath='Parser/token.c' line='194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_ThreeChars'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='194' column='1'/>
-      <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='194' column='1'/>
-      <parameter type-id='type-id-8' name='c3' filepath='Parser/token.c' line='194' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='c1' filepath='Parser/token.c' line='194' column='1'/>
+      <parameter type-id='type-id-9' name='c2' filepath='Parser/token.c' line='194' column='1'/>
+      <parameter type-id='type-id-9' name='c3' filepath='Parser/token.c' line='194' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyToken_TwoChars' mangled-name='PyToken_TwoChars' filepath='Parser/token.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_TwoChars'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='110' column='1'/>
-      <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='110' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='c1' filepath='Parser/token.c' line='110' column='1'/>
+      <parameter type-id='type-id-9' name='c2' filepath='Parser/token.c' line='110' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyToken_OneChar' mangled-name='PyToken_OneChar' filepath='Parser/token.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyToken_OneChar'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='79' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='c1' filepath='Parser/token.c' line='79' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Parser/pegen.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyAST_Name' mangled-name='_PyAST_Name' filepath='./Include/internal/pycore_ast.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_expr_seq_new' mangled-name='_Py_asdl_expr_seq_new' filepath='./Include/internal/pycore_ast.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_memmove' mangled-name='memmove' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Call' mangled-name='_PyAST_Call' filepath='./Include/internal/pycore_ast.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_Dealloc' mangled-name='_Py_Dealloc' filepath='./Include/object.h' line='447' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArena_AddPyObject' mangled-name='_PyArena_AddPyObject' filepath='./Include/internal/pycore_pyarena.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strlen' mangled-name='strlen' filepath='/usr/include/string.h' line='385' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='./Include/unicodeobject.h' line='454' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_TypeIgnore' mangled-name='_PyAST_TypeIgnore' filepath='./Include/internal/pycore_ast.h' line='835' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_type_ignore_seq_new' mangled-name='_Py_asdl_type_ignore_seq_new' filepath='./Include/internal/pycore_ast.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Module' mangled-name='_PyAST_Module' filepath='./Include/internal/pycore_ast.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_FstringParser_ConcatFstring' mangled-name='_PyPegen_FstringParser_ConcatFstring' filepath='Parser/string_parser.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_parsestr' mangled-name='_PyPegen_parsestr' filepath='Parser/string_parser.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_FstringParser_ConcatAndDel' mangled-name='_PyPegen_FstringParser_ConcatAndDel' filepath='Parser/string_parser.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_ConcatAndDel' mangled-name='PyBytes_ConcatAndDel' filepath='./Include/bytesobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_FstringParser_Init' mangled-name='_PyPegen_FstringParser_Init' filepath='Parser/string_parser.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Constant' mangled-name='_PyAST_Constant' filepath='./Include/internal/pycore_ast.h' line='763' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_FstringParser_Dealloc' mangled-name='_PyPegen_FstringParser_Dealloc' filepath='Parser/string_parser.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='./Include/pyerrors.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_FstringParser_Finish' mangled-name='_PyPegen_FstringParser_Finish' filepath='Parser/string_parser.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__stack_chk_fail' mangled-name='__stack_chk_fail' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_keyword_seq_new' mangled-name='_Py_asdl_keyword_seq_new' filepath='./Include/internal/pycore_ast.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArena_Malloc' mangled-name='_PyArena_Malloc' filepath='./Include/internal/pycore_pyarena.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_ClassDef' mangled-name='_PyAST_ClassDef' filepath='./Include/internal/pycore_ast.h' line='644' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_FunctionDef' mangled-name='_PyAST_FunctionDef' filepath='./Include/internal/pycore_ast.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_AsyncFunctionDef' mangled-name='_PyAST_AsyncFunctionDef' filepath='./Include/internal/pycore_ast.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_arg_seq_new' mangled-name='_Py_asdl_arg_seq_new' filepath='./Include/internal/pycore_ast.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_arguments' mangled-name='_PyAST_arguments' filepath='./Include/internal/pycore_ast.h' line='794' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_generic_seq_new' mangled-name='_Py_asdl_generic_seq_new' filepath='./Include/internal/pycore_asdl.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_AsString' mangled-name='PyBytes_AsString' filepath='./Include/bytesobject.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_arg' mangled-name='_PyAST_arg' filepath='./Include/internal/pycore_ast.h' line='798' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_pattern_seq_new' mangled-name='_Py_asdl_pattern_seq_new' filepath='./Include/internal/pycore_ast.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_List' mangled-name='_PyAST_List' filepath='./Include/internal/pycore_ast.h' line='778' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Tuple' mangled-name='_PyAST_Tuple' filepath='./Include/internal/pycore_ast.h' line='781' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Attribute' mangled-name='_PyAST_Attribute' filepath='./Include/internal/pycore_ast.h' line='766' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Subscript' mangled-name='_PyAST_Subscript' filepath='./Include/internal/pycore_ast.h' line='769' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Starred' mangled-name='_PyAST_Starred' filepath='./Include/internal/pycore_ast.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_int_seq_new' mangled-name='_Py_asdl_int_seq_new' filepath='./Include/internal/pycore_asdl.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_asdl_identifier_seq_new' mangled-name='_Py_asdl_identifier_seq_new' filepath='./Include/internal/pycore_asdl.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='./Include/unicodeobject.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_alias' mangled-name='_PyAST_alias' filepath='./Include/internal/pycore_ast.h' line='804' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_strcpy' mangled-name='strcpy' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='./Include/cpython/unicodeobject.h' line='472' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='./Include/cpython/unicodeobject.h' line='742' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_FromStringAndSize' mangled-name='PyBytes_FromStringAndSize' filepath='./Include/bytesobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='./Include/unicodeobject.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_FromUTF8' mangled-name='PyTokenizer_FromUTF8' filepath='Parser/tokenizer.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_Free' mangled-name='PyTokenizer_Free' filepath='Parser/tokenizer.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_FromString' mangled-name='PyTokenizer_FromString' filepath='Parser/tokenizer.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_FromFile' mangled-name='PyTokenizer_FromFile' filepath='Parser/tokenizer.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='./Include/unicodeobject.h' line='996' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='./Include/pyerrors.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_Malloc' mangled-name='PyMem_Malloc' filepath='./Include/pymem.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_Calloc' mangled-name='PyMem_Calloc' filepath='./Include/pymem.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_Free' mangled-name='PyMem_Free' filepath='./Include/pymem.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='./Include/pyerrors.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strchr' mangled-name='strchr' filepath='/usr/include/string.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__errno_location' mangled-name='__errno_location' filepath='/usr/include/errno.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='./Include/longobject.h' line='205' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='./Include/longobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_strtoul' mangled-name='PyOS_strtoul' filepath='./Include/longobject.h' line='204' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='./Include/pystrtod.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='./Include/complexobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromString' mangled-name='PyLong_FromString' filepath='./Include/longobject.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFloat_FromDouble' mangled-name='PyFloat_FromDouble' filepath='./Include/floatobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strncmp' mangled-name='strncmp' filepath='/usr/include/string.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_AsStringAndSize' mangled-name='PyBytes_AsStringAndSize' filepath='./Include/bytesobject.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strcmp' mangled-name='strcmp' filepath='/usr/include/string.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_Realloc' mangled-name='PyMem_Realloc' filepath='./Include/pymem.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_strncpy' mangled-name='strncpy' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_Get' mangled-name='PyTokenizer_Get' filepath='Parser/tokenizer.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='./Include/pyerrors.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strtok' mangled-name='strtok' filepath='/usr/include/string.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_memcpy' mangled-name='memcpy' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='./Include/unicodeobject.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_BuildValue' mangled-name='Py_BuildValue' filepath='./Include/modsupport.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_Pack' mangled-name='PyTuple_Pack' filepath='./Include/tupleobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='./Include/pyerrors.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='./Include/cpython/pyerrors.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='./Include/pyerrors.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='./Include/object.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Clear' mangled-name='PyErr_Clear' filepath='./Include/pyerrors.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='./Include/pyerrors.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='./Include/import.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='./Include/object.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_MakeTpCall' mangled-name='_PyObject_MakeTpCall' filepath='./Include/cpython/abstract.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_CheckFunctionResult' mangled-name='_Py_CheckFunctionResult' filepath='./Include/cpython/abstract.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Get' mangled-name='PyThreadState_Get' filepath='./Include/pystate.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_Name' mangled-name='_PyType_Name' filepath='./Include/cpython/object.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='./Include/pyerrors.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_parse' mangled-name='_PyPegen_parse' filepath='Parser/pegen.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Parser/parser.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyPegen_expect_token' mangled-name='_PyPegen_expect_token' filepath='Parser/pegen.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_singleton_seq' mangled-name='_PyPegen_singleton_seq' filepath='Parser/pegen.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_insert_memo' mangled-name='_PyPegen_insert_memo' filepath='Parser/pegen.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_insert_in_front' mangled-name='_PyPegen_seq_insert_in_front' filepath='Parser/pegen.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_append_to_end' mangled-name='_PyPegen_seq_append_to_end' filepath='Parser/pegen.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_FunctionType' mangled-name='_PyAST_FunctionType' filepath='./Include/internal/pycore_ast.h' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_make_module' mangled-name='_PyPegen_make_module' filepath='Parser/pegen.h' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_function_def_decorators' mangled-name='_PyPegen_function_def_decorators' filepath='Parser/pegen.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_lookahead' mangled-name='_PyPegen_lookahead' filepath='Parser/pegen.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_lookahead_with_int' mangled-name='_PyPegen_lookahead_with_int' filepath='Parser/pegen.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_class_def_decorators' mangled-name='_PyPegen_class_def_decorators' filepath='Parser/pegen.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_last_nonnwhitespace_token' mangled-name='_PyPegen_get_last_nonnwhitespace_token' filepath='Parser/pegen.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_While' mangled-name='_PyAST_While' filepath='./Include/internal/pycore_ast.h' line='670' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_raise_error' mangled-name='_PyPegen_raise_error' filepath='Parser/pegen.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_fill_token' mangled-name='_PyPegen_fill_token' filepath='Parser/pegen.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Match' mangled-name='_PyAST_Match' filepath='./Include/internal/pycore_ast.h' line='682' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_expect_soft_keyword' mangled-name='_PyPegen_expect_soft_keyword' filepath='Parser/pegen.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Pass' mangled-name='_PyAST_Pass' filepath='./Include/internal/pycore_ast.h' line='705' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_interactive_exit' mangled-name='_PyPegen_interactive_exit' filepath='Parser/pegen.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Interactive' mangled-name='_PyAST_Interactive' filepath='./Include/internal/pycore_ast.h' line='630' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Expression' mangled-name='_PyAST_Expression' filepath='./Include/internal/pycore_ast.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_dummy_name' mangled-name='_PyPegen_dummy_name' filepath='Parser/pegen.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_IfExp' mangled-name='_PyAST_IfExp' filepath='./Include/internal/pycore_ast.h' line='726' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_is_memoized' mangled-name='_PyPegen_is_memoized' filepath='Parser/pegen.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_name_token' mangled-name='_PyPegen_name_token' filepath='Parser/pegen.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_string_token' mangled-name='_PyPegen_string_token' filepath='Parser/pegen.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_soft_keyword_token' mangled-name='_PyPegen_soft_keyword_token' filepath='Parser/pegen.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_comprehension' mangled-name='_PyAST_comprehension' filepath='./Include/internal/pycore_ast.h' line='787' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_set_expr_context' mangled-name='_PyPegen_set_expr_context' filepath='Parser/pegen.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_NamedExpr' mangled-name='_PyAST_NamedExpr' filepath='./Include/internal/pycore_ast.h' line='714' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_expr_name' mangled-name='_PyPegen_get_expr_name' filepath='Parser/pegen.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_key_pattern_pair' mangled-name='_PyPegen_key_pattern_pair' filepath='Parser/pegen.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchAs' mangled-name='_PyAST_MatchAs' filepath='./Include/internal/pycore_ast.h' line='829' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_lookahead_with_name' mangled-name='_PyPegen_lookahead_with_name' filepath='Parser/pegen.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_match_case' mangled-name='_PyAST_match_case' filepath='./Include/internal/pycore_ast.h' line='809' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_invalid_target' mangled-name='_PyPegen_get_invalid_target' filepath='Parser/pegen.h' line='303' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_last_item' mangled-name='_PyPegen_seq_last_item' filepath='Parser/pegen.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_check_legacy_stmt' mangled-name='_PyPegen_check_legacy_stmt' filepath='Parser/pegen.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_update_memo' mangled-name='_PyPegen_update_memo' filepath='Parser/pegen.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_keyword' mangled-name='_PyAST_keyword' filepath='./Include/internal/pycore_ast.h' line='801' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_keyword_or_starred' mangled-name='_PyPegen_keyword_or_starred' filepath='Parser/pegen.h' line='283' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_join_sequences' mangled-name='_PyPegen_join_sequences' filepath='Parser/pegen.h' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_collect_call_seqs' mangled-name='_PyPegen_collect_call_seqs' filepath='Parser/pegen.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_delete_starred_exprs' mangled-name='_PyPegen_seq_delete_starred_exprs' filepath='Parser/pegen.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_extract_starred_exprs' mangled-name='_PyPegen_seq_extract_starred_exprs' filepath='Parser/pegen.h' line='284' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_nonparen_genexp_in_call' mangled-name='_PyPegen_nonparen_genexp_in_call' filepath='Parser/pegen.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_arguments_parsing_error' mangled-name='_PyPegen_arguments_parsing_error' filepath='Parser/pegen.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_YieldFrom' mangled-name='_PyAST_YieldFrom' filepath='./Include/internal/pycore_ast.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Yield' mangled-name='_PyAST_Yield' filepath='./Include/internal/pycore_ast.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_key_value_pair' mangled-name='_PyPegen_key_value_pair' filepath='Parser/pegen.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_GeneratorExp' mangled-name='_PyAST_GeneratorExp' filepath='./Include/internal/pycore_ast.h' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_concatenate_strings' mangled-name='_PyPegen_concatenate_strings' filepath='Parser/pegen.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_number_token' mangled-name='_PyPegen_number_token' filepath='Parser/pegen.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_ListComp' mangled-name='_PyAST_ListComp' filepath='./Include/internal/pycore_ast.h' line='734' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_SetComp' mangled-name='_PyAST_SetComp' filepath='./Include/internal/pycore_ast.h' line='737' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_values' mangled-name='_PyPegen_get_values' filepath='Parser/pegen.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_keys' mangled-name='_PyPegen_get_keys' filepath='Parser/pegen.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Dict' mangled-name='_PyAST_Dict' filepath='./Include/internal/pycore_ast.h' line='729' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Set' mangled-name='_PyAST_Set' filepath='./Include/internal/pycore_ast.h' line='732' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_DictComp' mangled-name='_PyAST_DictComp' filepath='./Include/internal/pycore_ast.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Slice' mangled-name='_PyAST_Slice' filepath='./Include/internal/pycore_ast.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Await' mangled-name='_PyAST_Await' filepath='./Include/internal/pycore_ast.h' line='746' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_UnaryOp' mangled-name='_PyAST_UnaryOp' filepath='./Include/internal/pycore_ast.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_BinOp' mangled-name='_PyAST_BinOp' filepath='./Include/internal/pycore_ast.h' line='717' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_cmpop_expr_pair' mangled-name='_PyPegen_cmpop_expr_pair' filepath='Parser/pegen.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_check_barry_as_flufl' mangled-name='_PyPegen_check_barry_as_flufl' filepath='Parser/pegen.h' line='293' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_exprs' mangled-name='_PyPegen_get_exprs' filepath='Parser/pegen.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_cmpops' mangled-name='_PyPegen_get_cmpops' filepath='Parser/pegen.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Compare' mangled-name='_PyAST_Compare' filepath='./Include/internal/pycore_ast.h' line='752' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_BoolOp' mangled-name='_PyAST_BoolOp' filepath='./Include/internal/pycore_ast.h' line='711' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_name_default_pair' mangled-name='_PyPegen_name_default_pair' filepath='Parser/pegen.h' line='274' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_star_etc' mangled-name='_PyPegen_star_etc' filepath='Parser/pegen.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_slash_with_default' mangled-name='_PyPegen_slash_with_default' filepath='Parser/pegen.h' line='275' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Lambda' mangled-name='_PyAST_Lambda' filepath='./Include/internal/pycore_ast.h' line='723' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_empty_arguments' mangled-name='_PyPegen_empty_arguments' filepath='Parser/pegen.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_make_arguments' mangled-name='_PyPegen_make_arguments' filepath='Parser/pegen.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_expect_forced_token' mangled-name='_PyPegen_expect_forced_token' filepath='Parser/pegen.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_add_type_comment_to_arg' mangled-name='_PyPegen_add_type_comment_to_arg' filepath='Parser/pegen.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_new_type_comment' mangled-name='_PyPegen_new_type_comment' filepath='Parser/pegen.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_patterns' mangled-name='_PyPegen_get_patterns' filepath='Parser/pegen.h' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_get_pattern_keys' mangled-name='_PyPegen_get_pattern_keys' filepath='Parser/pegen.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_map_names_to_ids' mangled-name='_PyPegen_map_names_to_ids' filepath='Parser/pegen.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchClass' mangled-name='_PyAST_MatchClass' filepath='./Include/internal/pycore_ast.h' line='823' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_first_item' mangled-name='_PyPegen_seq_first_item' filepath='Parser/pegen.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchMapping' mangled-name='_PyAST_MatchMapping' filepath='./Include/internal/pycore_ast.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchStar' mangled-name='_PyAST_MatchStar' filepath='./Include/internal/pycore_ast.h' line='827' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_lookahead_with_string' mangled-name='_PyPegen_lookahead_with_string' filepath='Parser/pegen.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_ensure_real' mangled-name='_PyPegen_ensure_real' filepath='Parser/pegen.h' line='291' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_ensure_imaginary' mangled-name='_PyPegen_ensure_imaginary' filepath='Parser/pegen.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchOr' mangled-name='_PyAST_MatchOr' filepath='./Include/internal/pycore_ast.h' line='832' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchValue' mangled-name='_PyAST_MatchValue' filepath='./Include/internal/pycore_ast.h' line='811' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchSingleton' mangled-name='_PyAST_MatchSingleton' filepath='./Include/internal/pycore_ast.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_MatchSequence' mangled-name='_PyAST_MatchSequence' filepath='./Include/internal/pycore_ast.h' line='816' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Try' mangled-name='_PyAST_Try' filepath='./Include/internal/pycore_ast.h' line='687' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_ExceptHandler' mangled-name='_PyAST_ExceptHandler' filepath='./Include/internal/pycore_ast.h' line='790' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_withitem' mangled-name='_PyAST_withitem' filepath='./Include/internal/pycore_ast.h' line='807' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_With' mangled-name='_PyAST_With' filepath='./Include/internal/pycore_ast.h' line='676' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_AsyncWith' mangled-name='_PyAST_AsyncWith' filepath='./Include/internal/pycore_ast.h' line='679' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_For' mangled-name='_PyAST_For' filepath='./Include/internal/pycore_ast.h' line='662' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_AsyncFor' mangled-name='_PyAST_AsyncFor' filepath='./Include/internal/pycore_ast.h' line='666' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_If' mangled-name='_PyAST_If' filepath='./Include/internal/pycore_ast.h' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_join_names_with_dot' mangled-name='_PyPegen_join_names_with_dot' filepath='Parser/pegen.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_alias_for_star' mangled-name='_PyPegen_alias_for_star' filepath='Parser/pegen.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_count_dots' mangled-name='_PyPegen_seq_count_dots' filepath='Parser/pegen.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_ImportFrom' mangled-name='_PyAST_ImportFrom' filepath='./Include/internal/pycore_ast.h' line='695' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_augoperator' mangled-name='_PyPegen_augoperator' filepath='Parser/pegen.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_AnnAssign' mangled-name='_PyAST_AnnAssign' filepath='./Include/internal/pycore_ast.h' line='659' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Assign' mangled-name='_PyAST_Assign' filepath='./Include/internal/pycore_ast.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_AugAssign' mangled-name='_PyAST_AugAssign' filepath='./Include/internal/pycore_ast.h' line='656' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Expr' mangled-name='_PyAST_Expr' filepath='./Include/internal/pycore_ast.h' line='703' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Break' mangled-name='_PyAST_Break' filepath='./Include/internal/pycore_ast.h' line='707' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Continue' mangled-name='_PyAST_Continue' filepath='./Include/internal/pycore_ast.h' line='709' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Return' mangled-name='_PyAST_Return' filepath='./Include/internal/pycore_ast.h' line='649' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Raise' mangled-name='_PyAST_Raise' filepath='./Include/internal/pycore_ast.h' line='685' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Import' mangled-name='_PyAST_Import' filepath='./Include/internal/pycore_ast.h' line='693' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Delete' mangled-name='_PyAST_Delete' filepath='./Include/internal/pycore_ast.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Assert' mangled-name='_PyAST_Assert' filepath='./Include/internal/pycore_ast.h' line='691' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Global' mangled-name='_PyAST_Global' filepath='./Include/internal/pycore_ast.h' line='698' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Nonlocal' mangled-name='_PyAST_Nonlocal' filepath='./Include/internal/pycore_ast.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_seq_flatten' mangled-name='_PyPegen_seq_flatten' filepath='Parser/pegen.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_raise_error_known_location' mangled-name='_PyPegen_raise_error_known_location' filepath='Parser/pegen.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Parser/string_parser.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyAST_JoinedStr' mangled-name='_PyAST_JoinedStr' filepath='./Include/internal/pycore_ast.h' line='761' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='./Include/unicodeobject.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='./Include/unicodeobject.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='./Include/unicodeobject.h' line='835' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_Parser_New' mangled-name='_PyPegen_Parser_New' filepath='Parser/pegen.h' line='249' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_run_parser' mangled-name='_PyPegen_run_parser' filepath='Parser/pegen.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_Parser_Free' mangled-name='_PyPegen_Parser_Free' filepath='Parser/pegen.h' line='250' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_FormattedValue' mangled-name='_PyAST_FormattedValue' filepath='./Include/internal/pycore_ast.h' line='758' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_DecodeEscape' mangled-name='_PyBytes_DecodeEscape' filepath='./Include/cpython/bytesobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='./Include/pyerrors.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='./Include/pyerrors.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin___sprintf_chk' mangled-name='__sprintf_chk' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_DecodeUnicodeEscapeInternal' mangled-name='_PyUnicode_DecodeUnicodeEscapeInternal' filepath='./Include/cpython/unicodeobject.h' line='846' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='./Include/unicodeobject.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_WarnExplicitObject' mangled-name='PyErr_WarnExplicitObject' filepath='./Include/warnings.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_new_identifier' mangled-name='_PyPegen_new_identifier' filepath='Parser/pegen.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Parser/peg_api.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PySys_Audit' mangled-name='PySys_Audit' filepath='./Include/cpython/sysmodule.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_run_parser_from_file_pointer' mangled-name='_PyPegen_run_parser_from_file_pointer' filepath='Parser/pegen.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPegen_run_parser_from_string' mangled-name='_PyPegen_run_parser_from_string' filepath='Parser/pegen.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Parser/myreadline.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-9'>
+    <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-10'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='prev' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
+        <var-decl name='prev' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='next' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
+        <var-decl name='next' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='interp' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
+        <var-decl name='interp' type-id='type-id-12' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='frame' type-id='type-id-12' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
+        <var-decl name='frame' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
+        <var-decl name='recursion_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='recursion_headroom' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
+        <var-decl name='recursion_headroom' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
+        <var-decl name='stackcheck_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
+        <var-decl name='tracing' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='cframe' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
+        <var-decl name='cframe' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='c_profilefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
+        <var-decl name='c_profilefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='c_tracefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
+        <var-decl name='c_tracefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='c_profileobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
+        <var-decl name='c_profileobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='c_traceobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
+        <var-decl name='c_traceobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='curexc_type' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
+        <var-decl name='curexc_type' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='curexc_value' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
+        <var-decl name='curexc_value' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='curexc_traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
+        <var-decl name='curexc_traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='exc_state' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
+        <var-decl name='exc_state' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='exc_info' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
+        <var-decl name='exc_info' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
+        <var-decl name='gilstate_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='async_exc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
+        <var-decl name='async_exc' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='thread_id' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
+        <var-decl name='thread_id' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
+        <var-decl name='trash_delete_nesting' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='trash_delete_later' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
+        <var-decl name='trash_delete_later' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='on_delete' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
+        <var-decl name='on_delete' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='on_delete_data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
+        <var-decl name='on_delete_data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
+        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='async_gen_firstiter' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
+        <var-decl name='async_gen_firstiter' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='async_gen_finalizer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
+        <var-decl name='async_gen_finalizer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='context' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
+        <var-decl name='context' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='context_ver' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
+        <var-decl name='context_ver' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='id' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
+        <var-decl name='id' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='root_cframe' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
+        <var-decl name='root_cframe' type-id='type-id-23' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-9' size-in-bits='64' id='type-id-10'/>
-    <class-decl name='_is' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-23'/>
-    <typedef-decl name='PyInterpreterState' type-id='type-id-23' filepath='./Include/pystate.h' line='22' column='1' id='type-id-24'/>
-    <pointer-type-def type-id='type-id-24' size-in-bits='64' id='type-id-11'/>
-    <class-decl name='_frame' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-25'/>
-    <typedef-decl name='PyFrameObject' type-id='type-id-25' filepath='./Include/pyframe.h' line='12' column='1' id='type-id-26'/>
-    <pointer-type-def type-id='type-id-26' size-in-bits='64' id='type-id-12'/>
-    <class-decl name='_cframe' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='32' column='1' id='type-id-27'>
+    <pointer-type-def type-id='type-id-10' size-in-bits='64' id='type-id-11'/>
+    <class-decl name='_is' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-24'/>
+    <typedef-decl name='PyInterpreterState' type-id='type-id-24' filepath='./Include/pystate.h' line='22' column='1' id='type-id-25'/>
+    <pointer-type-def type-id='type-id-25' size-in-bits='64' id='type-id-12'/>
+    <class-decl name='_frame' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-26'/>
+    <typedef-decl name='PyFrameObject' type-id='type-id-26' filepath='./Include/pyframe.h' line='12' column='1' id='type-id-27'/>
+    <pointer-type-def type-id='type-id-27' size-in-bits='64' id='type-id-13'/>
+    <class-decl name='_cframe' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='32' column='1' id='type-id-28'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='use_tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='43' column='1'/>
+        <var-decl name='use_tracing' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='previous' type-id='type-id-28' visibility='default' filepath='./Include/cpython/pystate.h' line='44' column='1'/>
+        <var-decl name='previous' type-id='type-id-29' visibility='default' filepath='./Include/cpython/pystate.h' line='44' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-27' size-in-bits='64' id='type-id-28'/>
-    <typedef-decl name='CFrame' type-id='type-id-27' filepath='./Include/cpython/pystate.h' line='45' column='1' id='type-id-22'/>
-    <pointer-type-def type-id='type-id-22' size-in-bits='64' id='type-id-13'/>
-    <class-decl name='_object' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/object.h' line='105' column='1' id='type-id-29'>
+    <pointer-type-def type-id='type-id-28' size-in-bits='64' id='type-id-29'/>
+    <typedef-decl name='CFrame' type-id='type-id-28' filepath='./Include/cpython/pystate.h' line='45' column='1' id='type-id-23'/>
+    <pointer-type-def type-id='type-id-23' size-in-bits='64' id='type-id-14'/>
+    <class-decl name='_object' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/object.h' line='105' column='1' id='type-id-30'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_refcnt' type-id='type-id-30' visibility='default' filepath='./Include/object.h' line='107' column='1'/>
+        <var-decl name='ob_refcnt' type-id='type-id-31' visibility='default' filepath='./Include/object.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='ob_type' type-id='type-id-31' visibility='default' filepath='./Include/object.h' line='108' column='1'/>
+        <var-decl name='ob_type' type-id='type-id-32' visibility='default' filepath='./Include/object.h' line='108' column='1'/>
       </data-member>
     </class-decl>
-    <type-decl name='long int' size-in-bits='64' id='type-id-32'/>
-    <typedef-decl name='__ssize_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='193' column='1' id='type-id-33'/>
-    <typedef-decl name='ssize_t' type-id='type-id-33' filepath='/usr/include/stdio.h' line='77' column='1' id='type-id-34'/>
-    <typedef-decl name='Py_ssize_t' type-id='type-id-34' filepath='./Include/pyport.h' line='107' column='1' id='type-id-30'/>
-    <class-decl name='_typeobject' size-in-bits='3264' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='191' column='1' id='type-id-35'>
+    <type-decl name='long int' size-in-bits='64' id='type-id-33'/>
+    <typedef-decl name='__ssize_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='193' column='1' id='type-id-34'/>
+    <typedef-decl name='ssize_t' type-id='type-id-34' filepath='/usr/include/stdio.h' line='77' column='1' id='type-id-35'/>
+    <typedef-decl name='Py_ssize_t' type-id='type-id-35' filepath='./Include/pyport.h' line='107' column='1' id='type-id-31'/>
+    <class-decl name='_typeobject' size-in-bits='3264' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='191' column='1' id='type-id-36'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/object.h' line='192' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/object.h' line='192' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='tp_name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/object.h' line='193' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='tp_basicsize' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='194' column='1'/>
+        <var-decl name='tp_basicsize' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='194' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='tp_itemsize' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='194' column='1'/>
+        <var-decl name='tp_itemsize' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='194' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='tp_dealloc' type-id='type-id-37' visibility='default' filepath='./Include/cpython/object.h' line='198' column='1'/>
+        <var-decl name='tp_dealloc' type-id='type-id-38' visibility='default' filepath='./Include/cpython/object.h' line='198' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='tp_vectorcall_offset' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='199' column='1'/>
+        <var-decl name='tp_vectorcall_offset' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='199' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='tp_getattr' type-id='type-id-38' visibility='default' filepath='./Include/cpython/object.h' line='200' column='1'/>
+        <var-decl name='tp_getattr' type-id='type-id-39' visibility='default' filepath='./Include/cpython/object.h' line='200' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='tp_setattr' type-id='type-id-39' visibility='default' filepath='./Include/cpython/object.h' line='201' column='1'/>
+        <var-decl name='tp_setattr' type-id='type-id-40' visibility='default' filepath='./Include/cpython/object.h' line='201' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='tp_as_async' type-id='type-id-40' visibility='default' filepath='./Include/cpython/object.h' line='202' column='1'/>
+        <var-decl name='tp_as_async' type-id='type-id-41' visibility='default' filepath='./Include/cpython/object.h' line='202' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='tp_repr' type-id='type-id-41' visibility='default' filepath='./Include/cpython/object.h' line='204' column='1'/>
+        <var-decl name='tp_repr' type-id='type-id-42' visibility='default' filepath='./Include/cpython/object.h' line='204' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='tp_as_number' type-id='type-id-42' visibility='default' filepath='./Include/cpython/object.h' line='208' column='1'/>
+        <var-decl name='tp_as_number' type-id='type-id-43' visibility='default' filepath='./Include/cpython/object.h' line='208' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='tp_as_sequence' type-id='type-id-43' visibility='default' filepath='./Include/cpython/object.h' line='209' column='1'/>
+        <var-decl name='tp_as_sequence' type-id='type-id-44' visibility='default' filepath='./Include/cpython/object.h' line='209' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='tp_as_mapping' type-id='type-id-44' visibility='default' filepath='./Include/cpython/object.h' line='210' column='1'/>
+        <var-decl name='tp_as_mapping' type-id='type-id-45' visibility='default' filepath='./Include/cpython/object.h' line='210' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='tp_hash' type-id='type-id-45' visibility='default' filepath='./Include/cpython/object.h' line='214' column='1'/>
+        <var-decl name='tp_hash' type-id='type-id-46' visibility='default' filepath='./Include/cpython/object.h' line='214' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1024'>
-        <var-decl name='tp_call' type-id='type-id-46' visibility='default' filepath='./Include/cpython/object.h' line='215' column='1'/>
+        <var-decl name='tp_call' type-id='type-id-47' visibility='default' filepath='./Include/cpython/object.h' line='215' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1088'>
-        <var-decl name='tp_str' type-id='type-id-41' visibility='default' filepath='./Include/cpython/object.h' line='216' column='1'/>
+        <var-decl name='tp_str' type-id='type-id-42' visibility='default' filepath='./Include/cpython/object.h' line='216' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='tp_getattro' type-id='type-id-47' visibility='default' filepath='./Include/cpython/object.h' line='217' column='1'/>
+        <var-decl name='tp_getattro' type-id='type-id-48' visibility='default' filepath='./Include/cpython/object.h' line='217' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='tp_setattro' type-id='type-id-48' visibility='default' filepath='./Include/cpython/object.h' line='218' column='1'/>
+        <var-decl name='tp_setattro' type-id='type-id-49' visibility='default' filepath='./Include/cpython/object.h' line='218' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='tp_as_buffer' type-id='type-id-49' visibility='default' filepath='./Include/cpython/object.h' line='221' column='1'/>
+        <var-decl name='tp_as_buffer' type-id='type-id-50' visibility='default' filepath='./Include/cpython/object.h' line='221' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='tp_flags' type-id='type-id-18' visibility='default' filepath='./Include/cpython/object.h' line='224' column='1'/>
+        <var-decl name='tp_flags' type-id='type-id-19' visibility='default' filepath='./Include/cpython/object.h' line='224' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
         <var-decl name='tp_doc' type-id='type-id-3' visibility='default' filepath='./Include/cpython/object.h' line='226' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='tp_traverse' type-id='type-id-50' visibility='default' filepath='./Include/cpython/object.h' line='230' column='1'/>
+        <var-decl name='tp_traverse' type-id='type-id-51' visibility='default' filepath='./Include/cpython/object.h' line='230' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='tp_clear' type-id='type-id-51' visibility='default' filepath='./Include/cpython/object.h' line='233' column='1'/>
+        <var-decl name='tp_clear' type-id='type-id-52' visibility='default' filepath='./Include/cpython/object.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='tp_richcompare' type-id='type-id-52' visibility='default' filepath='./Include/cpython/object.h' line='237' column='1'/>
+        <var-decl name='tp_richcompare' type-id='type-id-53' visibility='default' filepath='./Include/cpython/object.h' line='237' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='tp_weaklistoffset' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='240' column='1'/>
+        <var-decl name='tp_weaklistoffset' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='240' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='tp_iter' type-id='type-id-53' visibility='default' filepath='./Include/cpython/object.h' line='243' column='1'/>
+        <var-decl name='tp_iter' type-id='type-id-54' visibility='default' filepath='./Include/cpython/object.h' line='243' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='tp_iternext' type-id='type-id-54' visibility='default' filepath='./Include/cpython/object.h' line='244' column='1'/>
+        <var-decl name='tp_iternext' type-id='type-id-55' visibility='default' filepath='./Include/cpython/object.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='tp_methods' type-id='type-id-55' visibility='default' filepath='./Include/cpython/object.h' line='247' column='1'/>
+        <var-decl name='tp_methods' type-id='type-id-56' visibility='default' filepath='./Include/cpython/object.h' line='247' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='tp_members' type-id='type-id-56' visibility='default' filepath='./Include/cpython/object.h' line='248' column='1'/>
+        <var-decl name='tp_members' type-id='type-id-57' visibility='default' filepath='./Include/cpython/object.h' line='248' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='tp_getset' type-id='type-id-57' visibility='default' filepath='./Include/cpython/object.h' line='249' column='1'/>
+        <var-decl name='tp_getset' type-id='type-id-58' visibility='default' filepath='./Include/cpython/object.h' line='249' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='tp_base' type-id='type-id-58' visibility='default' filepath='./Include/cpython/object.h' line='251' column='1'/>
+        <var-decl name='tp_base' type-id='type-id-59' visibility='default' filepath='./Include/cpython/object.h' line='251' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='tp_dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='252' column='1'/>
+        <var-decl name='tp_dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='252' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2176'>
-        <var-decl name='tp_descr_get' type-id='type-id-59' visibility='default' filepath='./Include/cpython/object.h' line='253' column='1'/>
+        <var-decl name='tp_descr_get' type-id='type-id-60' visibility='default' filepath='./Include/cpython/object.h' line='253' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2240'>
-        <var-decl name='tp_descr_set' type-id='type-id-60' visibility='default' filepath='./Include/cpython/object.h' line='254' column='1'/>
+        <var-decl name='tp_descr_set' type-id='type-id-61' visibility='default' filepath='./Include/cpython/object.h' line='254' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2304'>
-        <var-decl name='tp_dictoffset' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='255' column='1'/>
+        <var-decl name='tp_dictoffset' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='255' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2368'>
-        <var-decl name='tp_init' type-id='type-id-61' visibility='default' filepath='./Include/cpython/object.h' line='256' column='1'/>
+        <var-decl name='tp_init' type-id='type-id-62' visibility='default' filepath='./Include/cpython/object.h' line='256' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2432'>
-        <var-decl name='tp_alloc' type-id='type-id-62' visibility='default' filepath='./Include/cpython/object.h' line='257' column='1'/>
+        <var-decl name='tp_alloc' type-id='type-id-63' visibility='default' filepath='./Include/cpython/object.h' line='257' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2496'>
-        <var-decl name='tp_new' type-id='type-id-63' visibility='default' filepath='./Include/cpython/object.h' line='258' column='1'/>
+        <var-decl name='tp_new' type-id='type-id-64' visibility='default' filepath='./Include/cpython/object.h' line='258' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2560'>
-        <var-decl name='tp_free' type-id='type-id-64' visibility='default' filepath='./Include/cpython/object.h' line='259' column='1'/>
+        <var-decl name='tp_free' type-id='type-id-65' visibility='default' filepath='./Include/cpython/object.h' line='259' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2624'>
-        <var-decl name='tp_is_gc' type-id='type-id-51' visibility='default' filepath='./Include/cpython/object.h' line='260' column='1'/>
+        <var-decl name='tp_is_gc' type-id='type-id-52' visibility='default' filepath='./Include/cpython/object.h' line='260' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2688'>
-        <var-decl name='tp_bases' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='261' column='1'/>
+        <var-decl name='tp_bases' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2752'>
-        <var-decl name='tp_mro' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='262' column='1'/>
+        <var-decl name='tp_mro' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='262' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2816'>
-        <var-decl name='tp_cache' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='263' column='1'/>
+        <var-decl name='tp_cache' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='263' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2880'>
-        <var-decl name='tp_subclasses' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='264' column='1'/>
+        <var-decl name='tp_subclasses' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='264' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2944'>
-        <var-decl name='tp_weaklist' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='265' column='1'/>
+        <var-decl name='tp_weaklist' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='265' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3008'>
-        <var-decl name='tp_del' type-id='type-id-37' visibility='default' filepath='./Include/cpython/object.h' line='266' column='1'/>
+        <var-decl name='tp_del' type-id='type-id-38' visibility='default' filepath='./Include/cpython/object.h' line='266' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3072'>
-        <var-decl name='tp_version_tag' type-id='type-id-65' visibility='default' filepath='./Include/cpython/object.h' line='269' column='1'/>
+        <var-decl name='tp_version_tag' type-id='type-id-66' visibility='default' filepath='./Include/cpython/object.h' line='269' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3136'>
-        <var-decl name='tp_finalize' type-id='type-id-37' visibility='default' filepath='./Include/cpython/object.h' line='271' column='1'/>
+        <var-decl name='tp_finalize' type-id='type-id-38' visibility='default' filepath='./Include/cpython/object.h' line='271' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3200'>
-        <var-decl name='tp_vectorcall' type-id='type-id-66' visibility='default' filepath='./Include/cpython/object.h' line='272' column='1'/>
+        <var-decl name='tp_vectorcall' type-id='type-id-67' visibility='default' filepath='./Include/cpython/object.h' line='272' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-36' visibility='default' filepath='./Include/object.h' line='115' column='1' id='type-id-67'>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-37' visibility='default' filepath='./Include/object.h' line='115' column='1' id='type-id-68'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/object.h' line='116' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/object.h' line='116' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='ob_size' type-id='type-id-30' visibility='default' filepath='./Include/object.h' line='117' column='1'/>
+        <var-decl name='ob_size' type-id='type-id-31' visibility='default' filepath='./Include/object.h' line='117' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='PyObject' type-id='type-id-29' filepath='./Include/object.h' line='109' column='1' id='type-id-68'/>
-    <typedef-decl name='PyVarObject' type-id='type-id-67' filepath='./Include/object.h' line='118' column='1' id='type-id-36'/>
-    <type-decl name='void' id='type-id-69'/>
-    <pointer-type-def type-id='type-id-68' size-in-bits='64' id='type-id-15'/>
+    <typedef-decl name='PyObject' type-id='type-id-30' filepath='./Include/object.h' line='109' column='1' id='type-id-69'/>
+    <typedef-decl name='PyVarObject' type-id='type-id-68' filepath='./Include/object.h' line='118' column='1' id='type-id-37'/>
+    <pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-16'/>
     <pointer-type-def type-id='type-id-70' size-in-bits='64' id='type-id-71'/>
-    <typedef-decl name='destructor' type-id='type-id-71' filepath='./Include/object.h' line='201' column='1' id='type-id-37'/>
+    <typedef-decl name='destructor' type-id='type-id-71' filepath='./Include/object.h' line='201' column='1' id='type-id-38'/>
     <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-72'/>
     <pointer-type-def type-id='type-id-73' size-in-bits='64' id='type-id-74'/>
-    <typedef-decl name='getattrfunc' type-id='type-id-74' filepath='./Include/object.h' line='202' column='1' id='type-id-38'/>
+    <typedef-decl name='getattrfunc' type-id='type-id-74' filepath='./Include/object.h' line='202' column='1' id='type-id-39'/>
     <pointer-type-def type-id='type-id-75' size-in-bits='64' id='type-id-76'/>
-    <typedef-decl name='setattrfunc' type-id='type-id-76' filepath='./Include/object.h' line='204' column='1' id='type-id-39'/>
+    <typedef-decl name='setattrfunc' type-id='type-id-76' filepath='./Include/object.h' line='204' column='1' id='type-id-40'/>
     <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-77' visibility='default' filepath='./Include/cpython/object.h' line='173' column='1' id='type-id-78'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='am_await' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='174' column='1'/>
@@ -1998,12 +2704,12 @@
       <enumerator name='PYGEN_NEXT' value='1'/>
     </enum-decl>
     <typedef-decl name='PySendResult' type-id='type-id-84' filepath='./Include/object.h' line='639' column='1' id='type-id-85'/>
-    <pointer-type-def type-id='type-id-15' size-in-bits='64' id='type-id-86'/>
+    <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-86'/>
     <pointer-type-def type-id='type-id-87' size-in-bits='64' id='type-id-88'/>
     <typedef-decl name='sendfunc' type-id='type-id-88' filepath='./Include/cpython/object.h' line='171' column='1' id='type-id-80'/>
     <typedef-decl name='PyAsyncMethods' type-id='type-id-78' filepath='./Include/cpython/object.h' line='178' column='1' id='type-id-77'/>
-    <pointer-type-def type-id='type-id-77' size-in-bits='64' id='type-id-40'/>
-    <typedef-decl name='reprfunc' type-id='type-id-82' filepath='./Include/object.h' line='206' column='1' id='type-id-41'/>
+    <pointer-type-def type-id='type-id-77' size-in-bits='64' id='type-id-41'/>
+    <typedef-decl name='reprfunc' type-id='type-id-82' filepath='./Include/object.h' line='206' column='1' id='type-id-42'/>
     <class-decl name='__anonymous_struct__' size-in-bits='2304' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-89' visibility='default' filepath='./Include/cpython/object.h' line='104' column='1' id='type-id-90'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='nb_add' type-id='type-id-91' visibility='default' filepath='./Include/cpython/object.h' line='109' column='1'/>
@@ -2021,7 +2727,7 @@
         <var-decl name='nb_divmod' type-id='type-id-91' visibility='default' filepath='./Include/cpython/object.h' line='113' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='nb_power' type-id='type-id-46' visibility='default' filepath='./Include/cpython/object.h' line='114' column='1'/>
+        <var-decl name='nb_power' type-id='type-id-47' visibility='default' filepath='./Include/cpython/object.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='nb_negative' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='115' column='1'/>
@@ -2033,7 +2739,7 @@
         <var-decl name='nb_absolute' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='117' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='nb_bool' type-id='type-id-51' visibility='default' filepath='./Include/cpython/object.h' line='118' column='1'/>
+        <var-decl name='nb_bool' type-id='type-id-52' visibility='default' filepath='./Include/cpython/object.h' line='118' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
         <var-decl name='nb_invert' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='119' column='1'/>
@@ -2057,7 +2763,7 @@
         <var-decl name='nb_int' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='125' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1088'>
-        <var-decl name='nb_reserved' type-id='type-id-20' visibility='default' filepath='./Include/cpython/object.h' line='126' column='1'/>
+        <var-decl name='nb_reserved' type-id='type-id-21' visibility='default' filepath='./Include/cpython/object.h' line='126' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
         <var-decl name='nb_float' type-id='type-id-79' visibility='default' filepath='./Include/cpython/object.h' line='127' column='1'/>
@@ -2075,7 +2781,7 @@
         <var-decl name='nb_inplace_remainder' type-id='type-id-91' visibility='default' filepath='./Include/cpython/object.h' line='132' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='nb_inplace_power' type-id='type-id-46' visibility='default' filepath='./Include/cpython/object.h' line='133' column='1'/>
+        <var-decl name='nb_inplace_power' type-id='type-id-47' visibility='default' filepath='./Include/cpython/object.h' line='133' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
         <var-decl name='nb_inplace_lshift' type-id='type-id-91' visibility='default' filepath='./Include/cpython/object.h' line='134' column='1'/>
@@ -2117,12 +2823,12 @@
     <pointer-type-def type-id='type-id-92' size-in-bits='64' id='type-id-93'/>
     <typedef-decl name='binaryfunc' type-id='type-id-93' filepath='./Include/object.h' line='185' column='1' id='type-id-91'/>
     <pointer-type-def type-id='type-id-94' size-in-bits='64' id='type-id-95'/>
-    <typedef-decl name='ternaryfunc' type-id='type-id-95' filepath='./Include/object.h' line='186' column='1' id='type-id-46'/>
+    <typedef-decl name='ternaryfunc' type-id='type-id-95' filepath='./Include/object.h' line='186' column='1' id='type-id-47'/>
     <pointer-type-def type-id='type-id-96' size-in-bits='64' id='type-id-97'/>
-    <typedef-decl name='inquiry' type-id='type-id-97' filepath='./Include/object.h' line='187' column='1' id='type-id-51'/>
-    <pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-20'/>
+    <typedef-decl name='inquiry' type-id='type-id-97' filepath='./Include/object.h' line='187' column='1' id='type-id-52'/>
+    <pointer-type-def type-id='type-id-4' size-in-bits='64' id='type-id-21'/>
     <typedef-decl name='PyNumberMethods' type-id='type-id-90' filepath='./Include/cpython/object.h' line='149' column='1' id='type-id-89'/>
-    <pointer-type-def type-id='type-id-89' size-in-bits='64' id='type-id-42'/>
+    <pointer-type-def type-id='type-id-89' size-in-bits='64' id='type-id-43'/>
     <class-decl name='__anonymous_struct__' size-in-bits='640' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-98' visibility='default' filepath='./Include/cpython/object.h' line='151' column='1' id='type-id-99'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='sq_length' type-id='type-id-100' visibility='default' filepath='./Include/cpython/object.h' line='152' column='1'/>
@@ -2137,13 +2843,13 @@
         <var-decl name='sq_item' type-id='type-id-101' visibility='default' filepath='./Include/cpython/object.h' line='155' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='was_sq_slice' type-id='type-id-20' visibility='default' filepath='./Include/cpython/object.h' line='156' column='1'/>
+        <var-decl name='was_sq_slice' type-id='type-id-21' visibility='default' filepath='./Include/cpython/object.h' line='156' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
         <var-decl name='sq_ass_item' type-id='type-id-102' visibility='default' filepath='./Include/cpython/object.h' line='157' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='was_sq_ass_slice' type-id='type-id-20' visibility='default' filepath='./Include/cpython/object.h' line='158' column='1'/>
+        <var-decl name='was_sq_ass_slice' type-id='type-id-21' visibility='default' filepath='./Include/cpython/object.h' line='158' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
         <var-decl name='sq_contains' type-id='type-id-103' visibility='default' filepath='./Include/cpython/object.h' line='159' column='1'/>
@@ -2164,7 +2870,7 @@
     <pointer-type-def type-id='type-id-110' size-in-bits='64' id='type-id-111'/>
     <typedef-decl name='objobjproc' type-id='type-id-111' filepath='./Include/object.h' line='195' column='1' id='type-id-103'/>
     <typedef-decl name='PySequenceMethods' type-id='type-id-99' filepath='./Include/cpython/object.h' line='163' column='1' id='type-id-98'/>
-    <pointer-type-def type-id='type-id-98' size-in-bits='64' id='type-id-43'/>
+    <pointer-type-def type-id='type-id-98' size-in-bits='64' id='type-id-44'/>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-112' visibility='default' filepath='./Include/cpython/object.h' line='165' column='1' id='type-id-113'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='mp_length' type-id='type-id-100' visibility='default' filepath='./Include/cpython/object.h' line='166' column='1'/>
@@ -2179,12 +2885,12 @@
     <pointer-type-def type-id='type-id-115' size-in-bits='64' id='type-id-116'/>
     <typedef-decl name='objobjargproc' type-id='type-id-116' filepath='./Include/object.h' line='193' column='1' id='type-id-114'/>
     <typedef-decl name='PyMappingMethods' type-id='type-id-113' filepath='./Include/cpython/object.h' line='169' column='1' id='type-id-112'/>
-    <pointer-type-def type-id='type-id-112' size-in-bits='64' id='type-id-44'/>
-    <typedef-decl name='Py_hash_t' type-id='type-id-30' filepath='./Include/pyport.h' line='116' column='1' id='type-id-117'/>
+    <pointer-type-def type-id='type-id-112' size-in-bits='64' id='type-id-45'/>
+    <typedef-decl name='Py_hash_t' type-id='type-id-31' filepath='./Include/pyport.h' line='116' column='1' id='type-id-117'/>
     <pointer-type-def type-id='type-id-118' size-in-bits='64' id='type-id-119'/>
-    <typedef-decl name='hashfunc' type-id='type-id-119' filepath='./Include/object.h' line='207' column='1' id='type-id-45'/>
-    <typedef-decl name='getattrofunc' type-id='type-id-93' filepath='./Include/object.h' line='203' column='1' id='type-id-47'/>
-    <typedef-decl name='setattrofunc' type-id='type-id-116' filepath='./Include/object.h' line='205' column='1' id='type-id-48'/>
+    <typedef-decl name='hashfunc' type-id='type-id-119' filepath='./Include/object.h' line='207' column='1' id='type-id-46'/>
+    <typedef-decl name='getattrofunc' type-id='type-id-93' filepath='./Include/object.h' line='203' column='1' id='type-id-48'/>
+    <typedef-decl name='setattrofunc' type-id='type-id-116' filepath='./Include/object.h' line='205' column='1' id='type-id-49'/>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-120' visibility='default' filepath='./Include/cpython/object.h' line='180' column='1' id='type-id-121'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='bf_getbuffer' type-id='type-id-122' visibility='default' filepath='./Include/cpython/object.h' line='181' column='1'/>
@@ -2195,22 +2901,22 @@
     </class-decl>
     <class-decl name='bufferinfo' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='49' column='1' id='type-id-124'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='buf' type-id='type-id-20' visibility='default' filepath='./Include/cpython/object.h' line='50' column='1'/>
+        <var-decl name='buf' type-id='type-id-21' visibility='default' filepath='./Include/cpython/object.h' line='50' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='obj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/object.h' line='51' column='1'/>
+        <var-decl name='obj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/object.h' line='51' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='len' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='52' column='1'/>
+        <var-decl name='len' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='52' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='itemsize' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='53' column='1'/>
+        <var-decl name='itemsize' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='53' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='readonly' type-id='type-id-8' visibility='default' filepath='./Include/cpython/object.h' line='55' column='1'/>
+        <var-decl name='readonly' type-id='type-id-9' visibility='default' filepath='./Include/cpython/object.h' line='55' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='ndim' type-id='type-id-8' visibility='default' filepath='./Include/cpython/object.h' line='56' column='1'/>
+        <var-decl name='ndim' type-id='type-id-9' visibility='default' filepath='./Include/cpython/object.h' line='56' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
         <var-decl name='format' type-id='type-id-72' visibility='default' filepath='./Include/cpython/object.h' line='57' column='1'/>
@@ -2225,10 +2931,10 @@
         <var-decl name='suboffsets' type-id='type-id-125' visibility='default' filepath='./Include/cpython/object.h' line='60' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='internal' type-id='type-id-20' visibility='default' filepath='./Include/cpython/object.h' line='61' column='1'/>
+        <var-decl name='internal' type-id='type-id-21' visibility='default' filepath='./Include/cpython/object.h' line='61' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-30' size-in-bits='64' id='type-id-125'/>
+    <pointer-type-def type-id='type-id-31' size-in-bits='64' id='type-id-125'/>
     <typedef-decl name='Py_buffer' type-id='type-id-124' filepath='./Include/cpython/object.h' line='62' column='1' id='type-id-126'/>
     <pointer-type-def type-id='type-id-126' size-in-bits='64' id='type-id-127'/>
     <pointer-type-def type-id='type-id-128' size-in-bits='64' id='type-id-129'/>
@@ -2236,16 +2942,16 @@
     <pointer-type-def type-id='type-id-130' size-in-bits='64' id='type-id-131'/>
     <typedef-decl name='releasebufferproc' type-id='type-id-131' filepath='./Include/cpython/object.h' line='65' column='1' id='type-id-123'/>
     <typedef-decl name='PyBufferProcs' type-id='type-id-121' filepath='./Include/cpython/object.h' line='183' column='1' id='type-id-120'/>
-    <pointer-type-def type-id='type-id-120' size-in-bits='64' id='type-id-49'/>
-    <type-decl name='unsigned long int' size-in-bits='64' id='type-id-18'/>
+    <pointer-type-def type-id='type-id-120' size-in-bits='64' id='type-id-50'/>
+    <type-decl name='unsigned long int' size-in-bits='64' id='type-id-19'/>
     <pointer-type-def type-id='type-id-132' size-in-bits='64' id='type-id-133'/>
     <typedef-decl name='visitproc' type-id='type-id-133' filepath='./Include/object.h' line='196' column='1' id='type-id-134'/>
     <pointer-type-def type-id='type-id-135' size-in-bits='64' id='type-id-136'/>
-    <typedef-decl name='traverseproc' type-id='type-id-136' filepath='./Include/object.h' line='197' column='1' id='type-id-50'/>
+    <typedef-decl name='traverseproc' type-id='type-id-136' filepath='./Include/object.h' line='197' column='1' id='type-id-51'/>
     <pointer-type-def type-id='type-id-137' size-in-bits='64' id='type-id-138'/>
-    <typedef-decl name='richcmpfunc' type-id='type-id-138' filepath='./Include/object.h' line='208' column='1' id='type-id-52'/>
-    <typedef-decl name='getiterfunc' type-id='type-id-82' filepath='./Include/object.h' line='209' column='1' id='type-id-53'/>
-    <typedef-decl name='iternextfunc' type-id='type-id-82' filepath='./Include/object.h' line='210' column='1' id='type-id-54'/>
+    <typedef-decl name='richcmpfunc' type-id='type-id-138' filepath='./Include/object.h' line='208' column='1' id='type-id-53'/>
+    <typedef-decl name='getiterfunc' type-id='type-id-82' filepath='./Include/object.h' line='209' column='1' id='type-id-54'/>
+    <typedef-decl name='iternextfunc' type-id='type-id-82' filepath='./Include/object.h' line='210' column='1' id='type-id-55'/>
     <class-decl name='PyMethodDef' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/methodobject.h' line='35' column='1' id='type-id-139'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='ml_name' type-id='type-id-3' visibility='default' filepath='./Include/methodobject.h' line='36' column='1'/>
@@ -2254,16 +2960,16 @@
         <var-decl name='ml_meth' type-id='type-id-140' visibility='default' filepath='./Include/methodobject.h' line='37' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='ml_flags' type-id='type-id-8' visibility='default' filepath='./Include/methodobject.h' line='38' column='1'/>
+        <var-decl name='ml_flags' type-id='type-id-9' visibility='default' filepath='./Include/methodobject.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='ml_doc' type-id='type-id-3' visibility='default' filepath='./Include/methodobject.h' line='40' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyCFunction' type-id='type-id-93' filepath='./Include/methodobject.h' line='19' column='1' id='type-id-140'/>
-    <pointer-type-def type-id='type-id-139' size-in-bits='64' id='type-id-55'/>
+    <pointer-type-def type-id='type-id-139' size-in-bits='64' id='type-id-56'/>
     <class-decl name='PyMemberDef' size-in-bits='320' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-141'/>
-    <pointer-type-def type-id='type-id-141' size-in-bits='64' id='type-id-56'/>
+    <pointer-type-def type-id='type-id-141' size-in-bits='64' id='type-id-57'/>
     <class-decl name='PyGetSetDef' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='11' column='1' id='type-id-142'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/descrobject.h' line='12' column='1'/>
@@ -2278,61 +2984,61 @@
         <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='./Include/descrobject.h' line='15' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='closure' type-id='type-id-20' visibility='default' filepath='./Include/descrobject.h' line='16' column='1'/>
+        <var-decl name='closure' type-id='type-id-21' visibility='default' filepath='./Include/descrobject.h' line='16' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-145' size-in-bits='64' id='type-id-146'/>
     <typedef-decl name='getter' type-id='type-id-146' filepath='./Include/descrobject.h' line='8' column='1' id='type-id-143'/>
     <pointer-type-def type-id='type-id-147' size-in-bits='64' id='type-id-148'/>
     <typedef-decl name='setter' type-id='type-id-148' filepath='./Include/descrobject.h' line='9' column='1' id='type-id-144'/>
-    <pointer-type-def type-id='type-id-142' size-in-bits='64' id='type-id-57'/>
-    <pointer-type-def type-id='type-id-35' size-in-bits='64' id='type-id-58'/>
-    <typedef-decl name='descrgetfunc' type-id='type-id-95' filepath='./Include/object.h' line='211' column='1' id='type-id-59'/>
-    <typedef-decl name='descrsetfunc' type-id='type-id-116' filepath='./Include/object.h' line='212' column='1' id='type-id-60'/>
-    <typedef-decl name='initproc' type-id='type-id-116' filepath='./Include/object.h' line='213' column='1' id='type-id-61'/>
-    <typedef-decl name='PyTypeObject' type-id='type-id-35' filepath='./Include/object.h' line='66' column='1' id='type-id-149'/>
-    <pointer-type-def type-id='type-id-149' size-in-bits='64' id='type-id-31'/>
+    <pointer-type-def type-id='type-id-142' size-in-bits='64' id='type-id-58'/>
+    <pointer-type-def type-id='type-id-36' size-in-bits='64' id='type-id-59'/>
+    <typedef-decl name='descrgetfunc' type-id='type-id-95' filepath='./Include/object.h' line='211' column='1' id='type-id-60'/>
+    <typedef-decl name='descrsetfunc' type-id='type-id-116' filepath='./Include/object.h' line='212' column='1' id='type-id-61'/>
+    <typedef-decl name='initproc' type-id='type-id-116' filepath='./Include/object.h' line='213' column='1' id='type-id-62'/>
+    <typedef-decl name='PyTypeObject' type-id='type-id-36' filepath='./Include/object.h' line='66' column='1' id='type-id-149'/>
+    <pointer-type-def type-id='type-id-149' size-in-bits='64' id='type-id-32'/>
     <pointer-type-def type-id='type-id-150' size-in-bits='64' id='type-id-151'/>
-    <typedef-decl name='allocfunc' type-id='type-id-151' filepath='./Include/object.h' line='215' column='1' id='type-id-62'/>
+    <typedef-decl name='allocfunc' type-id='type-id-151' filepath='./Include/object.h' line='215' column='1' id='type-id-63'/>
     <pointer-type-def type-id='type-id-152' size-in-bits='64' id='type-id-153'/>
-    <typedef-decl name='newfunc' type-id='type-id-153' filepath='./Include/object.h' line='214' column='1' id='type-id-63'/>
-    <pointer-type-def type-id='type-id-154' size-in-bits='64' id='type-id-19'/>
-    <typedef-decl name='freefunc' type-id='type-id-19' filepath='./Include/object.h' line='200' column='1' id='type-id-64'/>
-    <type-decl name='unsigned int' size-in-bits='32' id='type-id-65'/>
-    <qualified-type-def type-id='type-id-15' const='yes' id='type-id-155'/>
+    <typedef-decl name='newfunc' type-id='type-id-153' filepath='./Include/object.h' line='214' column='1' id='type-id-64'/>
+    <pointer-type-def type-id='type-id-154' size-in-bits='64' id='type-id-20'/>
+    <typedef-decl name='freefunc' type-id='type-id-20' filepath='./Include/object.h' line='200' column='1' id='type-id-65'/>
+    <type-decl name='unsigned int' size-in-bits='32' id='type-id-66'/>
+    <qualified-type-def type-id='type-id-16' const='yes' id='type-id-155'/>
     <pointer-type-def type-id='type-id-155' size-in-bits='64' id='type-id-156'/>
-    <typedef-decl name='size_t' type-id='type-id-18' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='209' column='1' id='type-id-157'/>
+    <typedef-decl name='size_t' type-id='type-id-19' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='209' column='1' id='type-id-157'/>
     <pointer-type-def type-id='type-id-158' size-in-bits='64' id='type-id-159'/>
-    <typedef-decl name='vectorcallfunc' type-id='type-id-159' filepath='./Include/cpython/object.h' line='67' column='1' id='type-id-66'/>
+    <typedef-decl name='vectorcallfunc' type-id='type-id-159' filepath='./Include/cpython/object.h' line='67' column='1' id='type-id-67'/>
     <pointer-type-def type-id='type-id-160' size-in-bits='64' id='type-id-161'/>
-    <typedef-decl name='Py_tracefunc' type-id='type-id-161' filepath='./Include/cpython/pystate.h' line='15' column='1' id='type-id-14'/>
+    <typedef-decl name='Py_tracefunc' type-id='type-id-161' filepath='./Include/cpython/pystate.h' line='15' column='1' id='type-id-15'/>
     <class-decl name='_err_stackitem' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='47' column='1' id='type-id-162'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='exc_type' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
+        <var-decl name='exc_type' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='exc_value' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
+        <var-decl name='exc_value' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='exc_traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
+        <var-decl name='exc_traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='54' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='previous_item' type-id='type-id-163' visibility='default' filepath='./Include/cpython/pystate.h' line='56' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-162' size-in-bits='64' id='type-id-163'/>
-    <typedef-decl name='_PyErr_StackItem' type-id='type-id-162' filepath='./Include/cpython/pystate.h' line='58' column='1' id='type-id-16'/>
-    <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-17'/>
-    <typedef-decl name='__uint64_t' type-id='type-id-18' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='45' column='1' id='type-id-164'/>
-    <typedef-decl name='uint64_t' type-id='type-id-164' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='27' column='1' id='type-id-21'/>
-    <typedef-decl name='PyThreadState' type-id='type-id-9' filepath='./Include/pystate.h' line='20' column='1' id='type-id-165'/>
+    <typedef-decl name='_PyErr_StackItem' type-id='type-id-162' filepath='./Include/cpython/pystate.h' line='58' column='1' id='type-id-17'/>
+    <pointer-type-def type-id='type-id-17' size-in-bits='64' id='type-id-18'/>
+    <typedef-decl name='__uint64_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='45' column='1' id='type-id-164'/>
+    <typedef-decl name='uint64_t' type-id='type-id-164' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='27' column='1' id='type-id-22'/>
+    <typedef-decl name='PyThreadState' type-id='type-id-10' filepath='./Include/pystate.h' line='20' column='1' id='type-id-165'/>
     <pointer-type-def type-id='type-id-165' size-in-bits='64' id='type-id-166'/>
     <var-decl name='_PyOS_ReadlineTState' type-id='type-id-166' mangled-name='_PyOS_ReadlineTState' visibility='default' filepath='./Include/cpython/pythonrun.h' line='120' column='1' elf-symbol-id='_PyOS_ReadlineTState'/>
     <pointer-type-def type-id='type-id-167' size-in-bits='64' id='type-id-168'/>
     <var-decl name='PyOS_InputHook' type-id='type-id-168' mangled-name='PyOS_InputHook' visibility='default' filepath='./Include/pythonrun.h' line='18' column='1' elf-symbol-id='PyOS_InputHook'/>
     <class-decl name='_IO_FILE' size-in-bits='1728' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='49' column='1' id='type-id-169'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_flags' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='51' column='1'/>
+        <var-decl name='_flags' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='51' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='_IO_read_ptr' type-id='type-id-72' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='54' column='1'/>
@@ -2374,10 +3080,10 @@
         <var-decl name='_chain' type-id='type-id-171' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='_fileno' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='72' column='1'/>
+        <var-decl name='_fileno' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='928'>
-        <var-decl name='_flags2' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='73' column='1'/>
+        <var-decl name='_flags2' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='73' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
         <var-decl name='_old_offset' type-id='type-id-172' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='74' column='1'/>
@@ -2407,13 +3113,13 @@
         <var-decl name='_freeres_list' type-id='type-id-171' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='93' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='_freeres_buf' type-id='type-id-20' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='94' column='1'/>
+        <var-decl name='_freeres_buf' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='94' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
         <var-decl name='__pad5' type-id='type-id-157' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='95' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='_mode' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='96' column='1'/>
+        <var-decl name='_mode' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='96' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1568'>
         <var-decl name='_unused2' type-id='type-id-180' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='98' column='1'/>
@@ -2422,24 +3128,24 @@
     <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-181'/>
     <pointer-type-def type-id='type-id-181' size-in-bits='64' id='type-id-170'/>
     <pointer-type-def type-id='type-id-169' size-in-bits='64' id='type-id-171'/>
-    <typedef-decl name='__off_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='152' column='1' id='type-id-172'/>
+    <typedef-decl name='__off_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='152' column='1' id='type-id-172'/>
     <type-decl name='unsigned short int' size-in-bits='16' id='type-id-173'/>
     <type-decl name='signed char' size-in-bits='8' id='type-id-174'/>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='8' id='type-id-175'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
-    <typedef-decl name='_IO_lock_t' type-id='type-id-69' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='43' column='1' id='type-id-183'/>
+    <typedef-decl name='_IO_lock_t' type-id='type-id-4' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='43' column='1' id='type-id-183'/>
     <pointer-type-def type-id='type-id-183' size-in-bits='64' id='type-id-176'/>
-    <typedef-decl name='__off64_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1' id='type-id-177'/>
+    <typedef-decl name='__off64_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1' id='type-id-177'/>
     <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-184'/>
     <pointer-type-def type-id='type-id-184' size-in-bits='64' id='type-id-178'/>
     <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-185'/>
     <pointer-type-def type-id='type-id-185' size-in-bits='64' id='type-id-179'/>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='160' id='type-id-180'>
-      <subrange length='20' type-id='type-id-18' id='type-id-186'/>
+      <subrange length='20' type-id='type-id-19' id='type-id-186'/>
 
     </array-type-def>
     <typedef-decl name='FILE' type-id='type-id-169' filepath='/usr/include/x86_64-linux-gnu/bits/types/FILE.h' line='7' column='1' id='type-id-187'/>
@@ -2452,59 +3158,107 @@
       <parameter type-id='type-id-3' name='prompt' filepath='Parser/myreadline.c' line='354' column='1'/>
       <return type-id='type-id-72'/>
     </function-decl>
+    <function-decl name='PyEval_SaveThread' mangled-name='PyEval_SaveThread' filepath='./Include/ceval.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='./Include/pythread.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fileno' mangled-name='fileno' filepath='/usr/include/stdio.h' line='786' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='isatty' mangled-name='isatty' filepath='/usr/include/unistd.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_RestoreThread' mangled-name='PyEval_RestoreThread' filepath='./Include/ceval.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='./Include/pythread.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_RawFree' mangled-name='PyMem_RawFree' filepath='./Include/cpython/pymem.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='./Include/pythread.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__fgets_alias' mangled-name='fgets' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_CheckSignals' mangled-name='PyErr_CheckSignals' filepath='./Include/pyerrors.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='clearerr' mangled-name='clearerr' filepath='/usr/include/stdio.h' line='757' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='feof' mangled-name='feof' filepath='/usr/include/stdio.h' line='759' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Include/internal/pycore_pystate.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_RawRealloc' mangled-name='PyMem_RawRealloc' filepath='./Include/cpython/pymem.h' line='7' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__fprintf_chk' mangled-name='__fprintf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fflush' mangled-name='fflush' filepath='/usr/include/stdio.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
     <function-type size-in-bits='64' id='type-id-81'>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-158'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-156'/>
       <parameter type-id='type-id-157'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-92'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-94'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-137'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-8'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-9'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-73'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-72'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-106'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-30'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-31'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-145'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-152'>
-      <parameter type-id='type-id-31'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-32'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-150'>
+      <parameter type-id='type-id-32'/>
       <parameter type-id='type-id-31'/>
-      <parameter type-id='type-id-30'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-189'>
       <parameter type-id='type-id-188'/>
@@ -2513,695 +3267,931 @@
       <return type-id='type-id-72'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-167'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-96'>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-160'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-12'/>
-      <parameter type-id='type-id-8'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-13'/>
+      <parameter type-id='type-id-9'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-110'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-115'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-147'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-128'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-127'/>
-      <parameter type-id='type-id-8'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-75'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-72'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-108'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-30'/>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-31'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-135'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-134'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-132'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-87'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-86'/>
       <return type-id='type-id-85'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-118'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <return type-id='type-id-117'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-104'>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-31'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-70'>
-      <parameter type-id='type-id-15'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-4'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-130'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-127'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-154'>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-4'/>
     </function-type>
   </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Parser/tokenizer.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='./Include/cpython/fileutils.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fdopen' mangled-name='fdopen' filepath='/usr/include/stdio.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fclose' mangled-name='fclose' filepath='/usr/include/stdio.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='./Include/unicodeobject.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='./Include/cpython/pyerrors.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='./Include/unicodeobject.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='./Include/unicodeobject.h' line='467' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsPrintable' mangled-name='_PyUnicode_IsPrintable' filepath='./Include/cpython/unicodeobject.h' line='1140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='./Include/cpython/unicodeobject.h' line='1160' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyToken_ThreeChars' mangled-name='PyToken_ThreeChars' filepath='./Include/token.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyToken_TwoChars' mangled-name='PyToken_TwoChars' filepath='./Include/token.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__ctype_b_loc' mangled-name='__ctype_b_loc' filepath='/usr/include/ctype.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyToken_OneChar' mangled-name='PyToken_OneChar' filepath='./Include/token.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strcspn' mangled-name='strcspn' filepath='/usr/include/string.h' line='273' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_BuildValue_SizeT' mangled-name='_Py_BuildValue_SizeT' filepath='./Include/modsupport.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='./Include/unicodeobject.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_Readline' mangled-name='PyOS_Readline' filepath='./Include/cpython/pythonrun.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_WriteStderr' mangled-name='PySys_WriteStderr' filepath='./Include/sysmodule.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__printf_chk' mangled-name='__printf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='putc' mangled-name='putc' filepath='/usr/include/stdio.h' line='522' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_fwrite' mangled-name='fwrite' filepath='/usr/include/stdio.h' line='652' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='./Include/unicodeobject.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallNoArgs' mangled-name='PyObject_CallNoArgs' filepath='./Include/abstract.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_UniversalNewlineFgets' mangled-name='Py_UniversalNewlineFgets' filepath='./Include/cpython/fileobject.h' line='5' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getc' mangled-name='getc' filepath='/usr/include/stdio.h' line='486' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='ungetc' mangled-name='ungetc' filepath='/usr/include/stdio.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='ftell' mangled-name='ftell' filepath='/usr/include/stdio.h' line='689' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='lseek' mangled-name='lseek64' filepath='/usr/include/unistd.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_CallMethodId_SizeT' mangled-name='_PyObject_CallMethodId_SizeT' filepath='./Include/cpython/abstract.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GetAttrId' mangled-name='_PyObject_GetAttrId' filepath='./Include/cpython/object.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='./Include/pyerrors.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__ctype_tolower_loc' mangled-name='__ctype_tolower_loc' filepath='/usr/include/ctype.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/abstract.c' comp-dir-path='/src' language='LANG_C99'>
     <qualified-type-def type-id='type-id-72' const='yes' id='type-id-191'/>
     <pointer-type-def type-id='type-id-191' size-in-bits='64' id='type-id-192'/>
     <function-decl name='_Py_FreeCharPArray' mangled-name='_Py_FreeCharPArray' filepath='Objects/abstract.c' line='2972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FreeCharPArray'>
       <parameter type-id='type-id-192' name='array' filepath='Objects/abstract.c' line='2972' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PySequence_BytesToCharpArray' mangled-name='_PySequence_BytesToCharpArray' filepath='Objects/abstract.c' line='2913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySequence_BytesToCharpArray'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/abstract.c' line='2913' column='1'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/abstract.c' line='2913' column='1'/>
       <return type-id='type-id-192'/>
     </function-decl>
     <function-decl name='PyIter_Send' mangled-name='PyIter_Send' filepath='Objects/abstract.c' line='2879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Send'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2879' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Objects/abstract.c' line='2879' column='1'/>
+      <parameter type-id='type-id-16' name='iter' filepath='Objects/abstract.c' line='2879' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Objects/abstract.c' line='2879' column='1'/>
       <parameter type-id='type-id-86' name='result' filepath='Objects/abstract.c' line='2879' column='1'/>
       <return type-id='type-id-85'/>
     </function-decl>
-    <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='Objects/abstract.c' line='2863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Next'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
     <function-decl name='PyAIter_Check' mangled-name='PyAIter_Check' filepath='Objects/abstract.c' line='2847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAIter_Check'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyIter_Check' mangled-name='PyIter_Check' filepath='Objects/abstract.c' line='2839' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Check'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GetAIter' mangled-name='PyObject_GetAIter' filepath='Objects/abstract.c' line='2819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAIter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='Objects/abstract.c' line='2793' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetIter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2793' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_RealIsSubclass' mangled-name='_PyObject_RealIsSubclass' filepath='Objects/abstract.c' line='2786' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_RealIsSubclass'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
+      <parameter type-id='type-id-16' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_RealIsInstance' mangled-name='_PyObject_RealIsInstance' filepath='Objects/abstract.c' line='2780' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_RealIsInstance'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
+      <parameter type-id='type-id-16' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_IsSubclass' mangled-name='PyObject_IsSubclass' filepath='Objects/abstract.c' line='2772' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsSubclass'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <parameter type-id='type-id-16' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_IsInstance' mangled-name='PyObject_IsInstance' filepath='Objects/abstract.c' line='2687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsInstance'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <parameter type-id='type-id-16' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMapping_Values' mangled-name='PyMapping_Values' filepath='Objects/abstract.c' line='2473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Values'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMapping_Items' mangled-name='PyMapping_Items' filepath='Objects/abstract.c' line='2459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Items'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMapping_Keys' mangled-name='PyMapping_Keys' filepath='Objects/abstract.c' line='2445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Keys'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMapping_HasKey' mangled-name='PyMapping_HasKey' filepath='Objects/abstract.c' line='2399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKey'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2399' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/abstract.c' line='2399' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMapping_HasKeyString' mangled-name='PyMapping_HasKeyString' filepath='Objects/abstract.c' line='2385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_HasKeyString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
       <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMapping_SetItemString' mangled-name='PyMapping_SetItemString' filepath='Objects/abstract.c' line='2366' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_SetItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2366' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2366' column='1'/>
       <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/abstract.c' line='2366' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='Objects/abstract.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_GetItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
       <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMapping_Length' mangled-name='PyMapping_Length' filepath='Objects/abstract.c' line='2342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Length'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='Objects/abstract.c' line='2317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2317' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2317' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyMapping_Check' mangled-name='PyMapping_Check' filepath='Objects/abstract.c' line='2310' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMapping_Check'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_Index' mangled-name='PySequence_Index' filepath='Objects/abstract.c' line='2302' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Index'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='2302' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2302' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='2302' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2302' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PySequence_In' mangled-name='PySequence_In' filepath='Objects/abstract.c' line='2296' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_In'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='Objects/abstract.c' line='2281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Contains'>
-      <parameter type-id='type-id-15' name='seq' filepath='Objects/abstract.c' line='2281' column='1'/>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/abstract.c' line='2281' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='2296' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2296' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_Count' mangled-name='PySequence_Count' filepath='Objects/abstract.c' line='2272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Count'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='2302' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2302' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='2302' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2302' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='_PySequence_IterSearch' mangled-name='_PySequence_IterSearch' filepath='Objects/abstract.c' line='2187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySequence_IterSearch'>
-      <parameter type-id='type-id-15' name='seq' filepath='Objects/abstract.c' line='2187' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2187' column='1'/>
-      <parameter type-id='type-id-8' name='operation' filepath='Objects/abstract.c' line='2187' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='seq' filepath='Objects/abstract.c' line='2187' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='2187' column='1'/>
+      <parameter type-id='type-id-9' name='operation' filepath='Objects/abstract.c' line='2187' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PySequence_Fast' mangled-name='PySequence_Fast' filepath='Objects/abstract.c' line='2152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Fast'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2152' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2152' column='1'/>
       <parameter type-id='type-id-3' name='m' filepath='Objects/abstract.c' line='2152' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='Objects/abstract.c' line='2129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_List'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_Tuple' mangled-name='PySequence_Tuple' filepath='Objects/abstract.c' line='2045' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Tuple'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2045' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2045' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_DelSlice' mangled-name='PySequence_DelSlice' filepath='Objects/abstract.c' line='2022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_DelSlice'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='2022' column='1'/>
-      <parameter type-id='type-id-30' name='i1' filepath='Objects/abstract.c' line='2022' column='1'/>
-      <parameter type-id='type-id-30' name='i2' filepath='Objects/abstract.c' line='2022' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='2022' column='1'/>
+      <parameter type-id='type-id-31' name='i1' filepath='Objects/abstract.c' line='2022' column='1'/>
+      <parameter type-id='type-id-31' name='i2' filepath='Objects/abstract.c' line='2022' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_SetSlice' mangled-name='PySequence_SetSlice' filepath='Objects/abstract.c' line='1999' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_SetSlice'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1999' column='1'/>
-      <parameter type-id='type-id-30' name='i1' filepath='Objects/abstract.c' line='1999' column='1'/>
-      <parameter type-id='type-id-30' name='i2' filepath='Objects/abstract.c' line='1999' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1999' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1999' column='1'/>
+      <parameter type-id='type-id-31' name='i1' filepath='Objects/abstract.c' line='1999' column='1'/>
+      <parameter type-id='type-id-31' name='i2' filepath='Objects/abstract.c' line='1999' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1999' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_DelItem' mangled-name='PySequence_DelItem' filepath='Objects/abstract.c' line='1966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_DelItem'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1966' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/abstract.c' line='1966' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1966' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/abstract.c' line='1966' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_SetItem' mangled-name='PySequence_SetItem' filepath='Objects/abstract.c' line='1933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_SetItem'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1933' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/abstract.c' line='1933' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1933' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySequence_GetSlice' mangled-name='PySequence_GetSlice' filepath='Objects/abstract.c' line='1911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_GetSlice'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1911' column='1'/>
-      <parameter type-id='type-id-30' name='i1' filepath='Objects/abstract.c' line='1911' column='1'/>
-      <parameter type-id='type-id-30' name='i2' filepath='Objects/abstract.c' line='1911' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1911' column='1'/>
+      <parameter type-id='type-id-31' name='i1' filepath='Objects/abstract.c' line='1911' column='1'/>
+      <parameter type-id='type-id-31' name='i2' filepath='Objects/abstract.c' line='1911' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_GetItem' mangled-name='PySequence_GetItem' filepath='Objects/abstract.c' line='1881' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_GetItem'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1881' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/abstract.c' line='1881' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1881' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/abstract.c' line='1881' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_InPlaceRepeat' mangled-name='PySequence_InPlaceRepeat' filepath='Objects/abstract.c' line='1847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceRepeat'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1847' column='1'/>
-      <parameter type-id='type-id-30' name='count' filepath='Objects/abstract.c' line='1847' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1847' column='1'/>
+      <parameter type-id='type-id-31' name='count' filepath='Objects/abstract.c' line='1847' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_InPlaceConcat' mangled-name='PySequence_InPlaceConcat' filepath='Objects/abstract.c' line='1818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_InPlaceConcat'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1818' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1818' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1818' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1818' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_Repeat' mangled-name='PySequence_Repeat' filepath='Objects/abstract.c' line='1787' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Repeat'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1787' column='1'/>
-      <parameter type-id='type-id-30' name='count' filepath='Objects/abstract.c' line='1787' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1787' column='1'/>
+      <parameter type-id='type-id-31' name='count' filepath='Objects/abstract.c' line='1787' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_Concat' mangled-name='PySequence_Concat' filepath='Objects/abstract.c' line='1761' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Concat'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1761' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1761' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1761' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1761' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySequence_Length' mangled-name='PySequence_Length' filepath='Objects/abstract.c' line='1754' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Length'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='Objects/abstract.c' line='1730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2317' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2317' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PySequence_Check' mangled-name='PySequence_Check' filepath='Objects/abstract.c' line='1721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Check'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1721' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyNumber_ToBase' mangled-name='PyNumber_ToBase' filepath='Objects/abstract.c' line='1702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_ToBase'>
-      <parameter type-id='type-id-15' name='n' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='n' filepath='Objects/abstract.c' line='1702' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/abstract.c' line='1702' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Float' mangled-name='PyNumber_Float' filepath='Objects/abstract.c' line='1641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Float'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1641' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1641' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Long' mangled-name='PyNumber_Long' filepath='Objects/abstract.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Long'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1529' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1529' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_AsSsize_t' mangled-name='PyNumber_AsSsize_t' filepath='Objects/abstract.c' line='1478' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_AsSsize_t'>
-      <parameter type-id='type-id-15' name='item' filepath='Objects/abstract.c' line='1478' column='1'/>
-      <parameter type-id='type-id-15' name='err' filepath='Objects/abstract.c' line='1478' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='item' filepath='Objects/abstract.c' line='1478' column='1'/>
+      <parameter type-id='type-id-16' name='err' filepath='Objects/abstract.c' line='1478' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyNumber_Index' mangled-name='PyNumber_Index' filepath='Objects/abstract.c' line='1466' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Index'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='item' filepath='Objects/abstract.c' line='1466' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyNumber_Index' mangled-name='_PyNumber_Index' filepath='Objects/abstract.c' line='1419' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyNumber_Index'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='item' filepath='Objects/abstract.c' line='1419' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyIndex_Check' mangled-name='PyIndex_Check' filepath='Objects/abstract.c' line='1407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIndex_Check'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1721' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyNumber_Absolute' mangled-name='PyNumber_Absolute' filepath='Objects/abstract.c' line='1389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Absolute'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Invert' mangled-name='PyNumber_Invert' filepath='Objects/abstract.c' line='1372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Invert'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Positive' mangled-name='PyNumber_Positive' filepath='Objects/abstract.c' line='1355' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Positive'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Negative' mangled-name='PyNumber_Negative' filepath='Objects/abstract.c' line='1338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Negative'>
-      <parameter type-id='type-id-15' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='1389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlacePower' mangled-name='PyNumber_InPlacePower' filepath='Objects/abstract.c' line='1328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlacePower'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='z' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <parameter type-id='type-id-16' name='z' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceRemainder' mangled-name='PyNumber_InPlaceRemainder' filepath='Objects/abstract.c' line='1321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceRemainder'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceMatrixMultiply' mangled-name='PyNumber_InPlaceMatrixMultiply' filepath='Objects/abstract.c' line='1314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceMatrixMultiply'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceMultiply' mangled-name='PyNumber_InPlaceMultiply' filepath='Objects/abstract.c' line='1285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceMultiply'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceAdd' mangled-name='PyNumber_InPlaceAdd' filepath='Objects/abstract.c' line='1262' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceAdd'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceTrueDivide' mangled-name='PyNumber_InPlaceTrueDivide' filepath='Objects/abstract.c' line='1255' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceTrueDivide'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceFloorDivide' mangled-name='PyNumber_InPlaceFloorDivide' filepath='Objects/abstract.c' line='1248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceFloorDivide'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceSubtract' mangled-name='PyNumber_InPlaceSubtract' filepath='Objects/abstract.c' line='1244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceSubtract'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceRshift' mangled-name='PyNumber_InPlaceRshift' filepath='Objects/abstract.c' line='1243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceRshift'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceLshift' mangled-name='PyNumber_InPlaceLshift' filepath='Objects/abstract.c' line='1242' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceLshift'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceAnd' mangled-name='PyNumber_InPlaceAnd' filepath='Objects/abstract.c' line='1241' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceAnd'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceXor' mangled-name='PyNumber_InPlaceXor' filepath='Objects/abstract.c' line='1240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceXor'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_InPlaceOr' mangled-name='PyNumber_InPlaceOr' filepath='Objects/abstract.c' line='1239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_InPlaceOr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Power' mangled-name='PyNumber_Power' filepath='Objects/abstract.c' line='1150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Power'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='z' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <parameter type-id='type-id-16' name='z' filepath='Objects/abstract.c' line='1328' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Remainder' mangled-name='PyNumber_Remainder' filepath='Objects/abstract.c' line='1144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Remainder'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_TrueDivide' mangled-name='PyNumber_TrueDivide' filepath='Objects/abstract.c' line='1138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_TrueDivide'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_FloorDivide' mangled-name='PyNumber_FloorDivide' filepath='Objects/abstract.c' line='1132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_FloorDivide'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_MatrixMultiply' mangled-name='PyNumber_MatrixMultiply' filepath='Objects/abstract.c' line='1126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_MatrixMultiply'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Multiply' mangled-name='PyNumber_Multiply' filepath='Objects/abstract.c' line='1107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Multiply'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1285' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Add' mangled-name='PyNumber_Add' filepath='Objects/abstract.c' line='1069' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Add'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1069' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1069' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1069' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1069' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Divmod' mangled-name='PyNumber_Divmod' filepath='Objects/abstract.c' line='1066' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Divmod'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Subtract' mangled-name='PyNumber_Subtract' filepath='Objects/abstract.c' line='1065' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Subtract'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Rshift' mangled-name='PyNumber_Rshift' filepath='Objects/abstract.c' line='1064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Rshift'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Lshift' mangled-name='PyNumber_Lshift' filepath='Objects/abstract.c' line='1063' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Lshift'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_And' mangled-name='PyNumber_And' filepath='Objects/abstract.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_And'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Xor' mangled-name='PyNumber_Xor' filepath='Objects/abstract.c' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Xor'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Or' mangled-name='PyNumber_Or' filepath='Objects/abstract.c' line='1060' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Or'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyNumber_Check' mangled-name='PyNumber_Check' filepath='Objects/abstract.c' line='830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyNumber_Check'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='830' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_Format' mangled-name='PyObject_Format' filepath='Objects/abstract.c' line='767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Format'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='767' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Objects/abstract.c' line='767' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='767' column='1'/>
+      <parameter type-id='type-id-16' name='format_spec' filepath='Objects/abstract.c' line='767' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyBuffer_Release' mangled-name='PyBuffer_Release' filepath='Objects/abstract.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_Release'>
       <parameter type-id='type-id-127' name='view' filepath='Objects/abstract.c' line='752' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyBuffer_FillInfo' mangled-name='PyBuffer_FillInfo' filepath='Objects/abstract.c' line='713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FillInfo'>
       <parameter type-id='type-id-127' name='view' filepath='Objects/abstract.c' line='713' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='713' column='1'/>
-      <parameter type-id='type-id-20' name='buf' filepath='Objects/abstract.c' line='713' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/abstract.c' line='713' column='1'/>
-      <parameter type-id='type-id-8' name='readonly' filepath='Objects/abstract.c' line='714' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/abstract.c' line='714' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='713' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Objects/abstract.c' line='713' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/abstract.c' line='713' column='1'/>
+      <parameter type-id='type-id-9' name='readonly' filepath='Objects/abstract.c' line='714' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/abstract.c' line='714' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyBuffer_FillContiguousStrides' mangled-name='PyBuffer_FillContiguousStrides' filepath='Objects/abstract.c' line='689' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FillContiguousStrides'>
-      <parameter type-id='type-id-8' name='nd' filepath='Objects/abstract.c' line='689' column='1'/>
+      <parameter type-id='type-id-9' name='nd' filepath='Objects/abstract.c' line='689' column='1'/>
       <parameter type-id='type-id-125' name='shape' filepath='Objects/abstract.c' line='689' column='1'/>
       <parameter type-id='type-id-125' name='strides' filepath='Objects/abstract.c' line='690' column='1'/>
-      <parameter type-id='type-id-8' name='itemsize' filepath='Objects/abstract.c' line='690' column='1'/>
+      <parameter type-id='type-id-9' name='itemsize' filepath='Objects/abstract.c' line='690' column='1'/>
       <parameter type-id='type-id-1' name='fort' filepath='Objects/abstract.c' line='691' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyObject_CopyData' mangled-name='PyObject_CopyData' filepath='Objects/abstract.c' line='618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CopyData'>
-      <parameter type-id='type-id-15' name='dest' filepath='Objects/abstract.c' line='618' column='1'/>
-      <parameter type-id='type-id-15' name='src' filepath='Objects/abstract.c' line='618' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='dest' filepath='Objects/abstract.c' line='618' column='1'/>
+      <parameter type-id='type-id-16' name='src' filepath='Objects/abstract.c' line='618' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyBuffer_FromContiguous' mangled-name='PyBuffer_FromContiguous' filepath='Objects/abstract.c' line='567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_FromContiguous'>
       <parameter type-id='type-id-127' name='view' filepath='Objects/abstract.c' line='567' column='1'/>
-      <parameter type-id='type-id-20' name='buf' filepath='Objects/abstract.c' line='567' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/abstract.c' line='567' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Objects/abstract.c' line='567' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/abstract.c' line='567' column='1'/>
       <parameter type-id='type-id-1' name='fort' filepath='Objects/abstract.c' line='567' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyBuffer_SizeFromFormat' mangled-name='PyBuffer_SizeFromFormat' filepath='Objects/abstract.c' line='525' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_SizeFromFormat'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/abstract.c' line='525' column='1'/>
-      <return type-id='type-id-30'/>
+      <return type-id='type-id-31'/>
     </function-decl>
-    <qualified-type-def type-id='type-id-30' const='yes' id='type-id-193'/>
+    <qualified-type-def type-id='type-id-31' const='yes' id='type-id-193'/>
     <pointer-type-def type-id='type-id-193' size-in-bits='64' id='type-id-194'/>
     <function-decl name='_Py_add_one_to_index_C' mangled-name='_Py_add_one_to_index_C' filepath='Objects/abstract.c' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_add_one_to_index_C'>
-      <parameter type-id='type-id-8' name='nd' filepath='Objects/abstract.c' line='509' column='1'/>
+      <parameter type-id='type-id-9' name='nd' filepath='Objects/abstract.c' line='509' column='1'/>
       <parameter type-id='type-id-125' name='index' filepath='Objects/abstract.c' line='509' column='1'/>
       <parameter type-id='type-id-194' name='shape' filepath='Objects/abstract.c' line='509' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_Py_add_one_to_index_F' mangled-name='_Py_add_one_to_index_F' filepath='Objects/abstract.c' line='493' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_add_one_to_index_F'>
-      <parameter type-id='type-id-8' name='nd' filepath='Objects/abstract.c' line='509' column='1'/>
+      <parameter type-id='type-id-9' name='nd' filepath='Objects/abstract.c' line='509' column='1'/>
       <parameter type-id='type-id-125' name='index' filepath='Objects/abstract.c' line='509' column='1'/>
       <parameter type-id='type-id-194' name='shape' filepath='Objects/abstract.c' line='509' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyBuffer_GetPointer' mangled-name='PyBuffer_GetPointer' filepath='Objects/abstract.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_GetPointer'>
       <parameter type-id='type-id-127' name='view' filepath='Objects/abstract.c' line='477' column='1'/>
       <parameter type-id='type-id-125' name='indices' filepath='Objects/abstract.c' line='477' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <qualified-type-def type-id='type-id-126' const='yes' id='type-id-195'/>
-    <pointer-type-def type-id='type-id-195' size-in-bits='64' id='type-id-196'/>
-    <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='Objects/abstract.c' line='461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_IsContiguous'>
-      <parameter type-id='type-id-196' name='view' filepath='Objects/abstract.c' line='461' column='1'/>
-      <parameter type-id='type-id-1' name='order' filepath='Objects/abstract.c' line='461' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyObject_GetBuffer' mangled-name='PyObject_GetBuffer' filepath='Objects/abstract.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='378' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='378' column='1'/>
       <parameter type-id='type-id-127' name='view' filepath='Objects/abstract.c' line='378' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/abstract.c' line='378' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/abstract.c' line='378' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-20' size-in-bits='64' id='type-id-197'/>
+    <pointer-type-def type-id='type-id-21' size-in-bits='64' id='type-id-195'/>
     <function-decl name='PyObject_AsWriteBuffer' mangled-name='PyObject_AsWriteBuffer' filepath='Objects/abstract.c' line='349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsWriteBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='349' column='1'/>
-      <parameter type-id='type-id-197' name='buffer' filepath='Objects/abstract.c' line='350' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='349' column='1'/>
+      <parameter type-id='type-id-195' name='buffer' filepath='Objects/abstract.c' line='350' column='1'/>
       <parameter type-id='type-id-125' name='buffer_len' filepath='Objects/abstract.c' line='351' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_AsReadBuffer' mangled-name='PyObject_AsReadBuffer' filepath='Objects/abstract.c' line='342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsReadBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='342' column='1'/>
-      <parameter type-id='type-id-197' name='buffer' filepath='Objects/abstract.c' line='343' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='342' column='1'/>
+      <parameter type-id='type-id-195' name='buffer' filepath='Objects/abstract.c' line='343' column='1'/>
       <parameter type-id='type-id-125' name='buffer_len' filepath='Objects/abstract.c' line='344' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-198'/>
+    <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-196'/>
     <function-decl name='PyObject_AsCharBuffer' mangled-name='PyObject_AsCharBuffer' filepath='Objects/abstract.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsCharBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='335' column='1'/>
-      <parameter type-id='type-id-198' name='buffer' filepath='Objects/abstract.c' line='336' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='335' column='1'/>
+      <parameter type-id='type-id-196' name='buffer' filepath='Objects/abstract.c' line='336' column='1'/>
       <parameter type-id='type-id-125' name='buffer_len' filepath='Objects/abstract.c' line='337' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_CheckReadBuffer' mangled-name='PyObject_CheckReadBuffer' filepath='Objects/abstract.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CheckReadBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='300' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_CheckBuffer' mangled-name='PyObject_CheckBuffer' filepath='Objects/abstract.c' line='289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CheckBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_DelItemString' mangled-name='PyObject_DelItemString' filepath='Objects/abstract.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_DelItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='269' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='269' column='1'/>
       <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='269' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_DelItem' mangled-name='PyObject_DelItem' filepath='Objects/abstract.c' line='235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_DelItem'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/abstract.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='235' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/abstract.c' line='235' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_SetItem' mangled-name='PyObject_SetItem' filepath='Objects/abstract.c' line='201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetItem'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='201' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/abstract.c' line='201' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/abstract.c' line='201' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='201' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/abstract.c' line='201' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/abstract.c' line='201' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GetItem' mangled-name='PyObject_GetItem' filepath='Objects/abstract.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetItem'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='150' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/abstract.c' line='150' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='Objects/abstract.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_LengthHint'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='91' column='1'/>
-      <parameter type-id='type-id-30' name='defaultvalue' filepath='Objects/abstract.c' line='91' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='150' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/abstract.c' line='150' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_HasLen' mangled-name='_PyObject_HasLen' filepath='Objects/abstract.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_HasLen'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_Length' mangled-name='PyObject_Length' filepath='Objects/abstract.c' line='72' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Length'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyObject_Size' mangled-name='PyObject_Size' filepath='Objects/abstract.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2317' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='53' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='Objects/abstract.c' line='39' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Type'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='39' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-126' const='yes' id='type-id-197'/>
+    <pointer-type-def type-id='type-id-197' size-in-bits='64' id='type-id-198'/>
+    <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='Objects/abstract.c' line='461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_IsContiguous'>
+      <parameter type-id='type-id-198' name='view' filepath='Objects/abstract.c' line='461' column='1'/>
+      <parameter type-id='type-id-1' name='order' filepath='Objects/abstract.c' line='461' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='Objects/abstract.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_LengthHint'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='91' column='1'/>
+      <parameter type-id='type-id-31' name='defaultvalue' filepath='Objects/abstract.c' line='91' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='Objects/abstract.c' line='2793' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetIter'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2793' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='Objects/abstract.c' line='2863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyIter_Next'>
+      <parameter type-id='type-id-16' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='Objects/abstract.c' line='2281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySequence_Contains'>
+      <parameter type-id='type-id-16' name='seq' filepath='Objects/abstract.c' line='2281' column='1'/>
+      <parameter type-id='type-id-16' name='ob' filepath='Objects/abstract.c' line='2281' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='./Include/cpython/unicodeobject.h' line='1151' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_VectorcallMethod' mangled-name='PyObject_VectorcallMethod' filepath='./Include/cpython/abstract.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGen_FetchStopIterationValue' mangled-name='_PyGen_FetchStopIterationValue' filepath='./Include/genobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_LookupAttrId' mangled-name='_PyObject_LookupAttrId' filepath='./Include/cpython/object.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='./Include/internal/pycore_pyerrors.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='./Include/object.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='./Include/internal/pycore_ceval.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='./Include/object.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='./Include/cpython/object.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='./Include/internal/pycore_pyerrors.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='./Include/internal/pycore_pyerrors.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Values' mangled-name='PyDict_Values' filepath='./Include/dictobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Items' mangled-name='PyDict_Items' filepath='./Include/dictobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Keys' mangled-name='PyDict_Keys' filepath='./Include/dictobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='./Include/object.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_New' mangled-name='PyList_New' filepath='./Include/listobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='./Include/cpython/listobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_Resize' mangled-name='_PyTuple_Resize' filepath='./Include/cpython/tupleobject.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='./Include/tupleobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='./Include/listobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySlice_FromIndices' mangled-name='_PySlice_FromIndices' filepath='./Include/sliceobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='./Include/longobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Format' mangled-name='_PyLong_Format' filepath='./Include/longobject.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_WarnFormat' mangled-name='PyErr_WarnFormat' filepath='./Include/warnings.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='./Include/longobject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFloat_FromString' mangled-name='PyFloat_FromString' filepath='./Include/floatobject.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='./Include/longintrepr.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromBytes' mangled-name='_PyLong_FromBytes' filepath='./Include/longobject.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromUnicodeObject' mangled-name='PyLong_FromUnicodeObject' filepath='./Include/longobject.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsSsize_t' mangled-name='PyLong_AsSsize_t' filepath='./Include/longobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='./Include/pyerrors.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='./Include/internal/pycore_pyerrors.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Sign' mangled-name='_PyLong_Sign' filepath='./Include/longobject.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='./Include/cpython/unicodeobject.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_memset' mangled-name='memset' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='./Include/import.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallFunctionObjArgs' mangled-name='PyObject_CallFunctionObjArgs' filepath='./Include/abstract.h' line='215' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='./Include/genericaliasobject.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySeqIter_New' mangled-name='PySeqIter_New' filepath='./Include/iterobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/accu.c' comp-dir-path='/src' language='LANG_C99'>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-199' visibility='default' filepath='./Include/internal/pycore_accu.h' line='24' column='1' id='type-id-200'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='large' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_accu.h' line='25' column='1'/>
+        <var-decl name='large' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_accu.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='small' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_accu.h' line='26' column='1'/>
+        <var-decl name='small' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_accu.h' line='26' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='_PyAccu' type-id='type-id-200' filepath='./Include/internal/pycore_accu.h' line='27' column='1' id='type-id-199'/>
     <pointer-type-def type-id='type-id-199' size-in-bits='64' id='type-id-201'/>
     <function-decl name='_PyAccu_Destroy' mangled-name='_PyAccu_Destroy' filepath='Objects/accu.c' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Destroy'>
       <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='111' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyAccu_Finish' mangled-name='_PyAccu_Finish' filepath='Objects/accu.c' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Finish'>
       <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='93' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyAccu_FinishAsList' mangled-name='_PyAccu_FinishAsList' filepath='Objects/accu.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_FinishAsList'>
-      <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='76' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyAccu_Accumulate' mangled-name='_PyAccu_Accumulate' filepath='Objects/accu.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Accumulate'>
       <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='55' column='1'/>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/accu.c' line='55' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/accu.c' line='55' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyAccu_Init' mangled-name='_PyAccu_Init' filepath='Objects/accu.c' line='18' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_Init'>
       <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='18' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyAccu_FinishAsList' mangled-name='_PyAccu_FinishAsList' filepath='Objects/accu.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAccu_FinishAsList'>
+      <parameter type-id='type-id-201' name='acc' filepath='Objects/accu.c' line='76' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='./Include/unicodeobject.h' line='922' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='./Include/listobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='./Include/listobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/boolobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyBool_Type' type-id='type-id-149' mangled-name='PyBool_Type' visibility='default' filepath='./Include/boolobject.h' line='10' column='1' elf-symbol-id='PyBool_Type'/>
     <class-decl name='_longobject' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/longintrepr.h' line='85' column='1' id='type-id-202'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/longintrepr.h' line='86' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/longintrepr.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='ob_digit' type-id='type-id-203' visibility='default' filepath='./Include/longintrepr.h' line='87' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='__uint32_t' type-id='type-id-65' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='42' column='1' id='type-id-204'/>
+    <typedef-decl name='__uint32_t' type-id='type-id-66' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='42' column='1' id='type-id-204'/>
     <typedef-decl name='uint32_t' type-id='type-id-204' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='26' column='1' id='type-id-205'/>
     <typedef-decl name='digit' type-id='type-id-205' filepath='./Include/longintrepr.h' line='45' column='1' id='type-id-206'/>
 
     <array-type-def dimensions='1' type-id='type-id-206' size-in-bits='32' id='type-id-203'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <var-decl name='_Py_FalseStruct' type-id='type-id-202' mangled-name='_Py_FalseStruct' visibility='default' filepath='./Include/boolobject.h' line='18' column='1' elf-symbol-id='_Py_FalseStruct'/>
     <var-decl name='_Py_TrueStruct' type-id='type-id-202' mangled-name='_Py_TrueStruct' visibility='default' filepath='./Include/boolobject.h' line='19' column='1' elf-symbol-id='_Py_TrueStruct'/>
     <function-decl name='PyBool_FromLong' mangled-name='PyBool_FromLong' filepath='Objects/boolobject.c' line='28' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBool_FromLong'>
-      <parameter type-id='type-id-32' name='ok' filepath='Objects/boolobject.c' line='28' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-33' name='ok' filepath='Objects/boolobject.c' line='28' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyArg_NoKwnames' mangled-name='_PyArg_NoKwnames' filepath='./Include/modsupport.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='./Include/modsupport.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='./Include/modsupport.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyArg_UnpackTuple' mangled-name='PyArg_UnpackTuple' filepath='./Include/modsupport.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/bytes_methods.c' comp-dir-path='/src' language='LANG_C99'>
 
     <array-type-def dimensions='1' type-id='type-id-2' size-in-bits='infinite' id='type-id-207'>
-      <subrange length='infinite' id='type-id-6'/>
+      <subrange length='infinite' id='type-id-7'/>
 
     </array-type-def>
     <qualified-type-def type-id='type-id-207' const='yes' id='type-id-208'/>
@@ -3226,42 +4216,237 @@
     <var-decl name='_Py_count__doc__' type-id='type-id-208' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='55' column='1'/>
     <var-decl name='_Py_startswith__doc__' type-id='type-id-208' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='60' column='1'/>
     <var-decl name='_Py_endswith__doc__' type-id='type-id-208' visibility='default' filepath='./Include/internal/pycore_bytes_methods.h' line='61' column='1'/>
+    <function-decl name='__builtin_memcmp' mangled-name='memcmp' filepath='/usr/include/string.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBuffer_Release' mangled-name='PyBuffer_Release' filepath='./Include/cpython/abstract.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetBuffer' mangled-name='PyObject_GetBuffer' filepath='./Include/cpython/abstract.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseTuple_SizeT' mangled-name='_PyArg_ParseTuple_SizeT' filepath='./Include/modsupport.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='./Include/cpython/ceval.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBool_FromLong' mangled-name='PyBool_FromLong' filepath='./Include/boolobject.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_AsSsize_t' mangled-name='PyNumber_AsSsize_t' filepath='./Include/abstract.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CheckBuffer' mangled-name='PyObject_CheckBuffer' filepath='./Include/cpython/abstract.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='memrchr' mangled-name='memrchr' filepath='/usr/include/string.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/bytearrayobject.c' comp-dir-path='/src' language='LANG_C99'>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='infinite' id='type-id-209'>
-      <subrange length='infinite' id='type-id-6'/>
+      <subrange length='infinite' id='type-id-7'/>
 
     </array-type-def>
     <var-decl name='_PyByteArray_empty_string' type-id='type-id-209' mangled-name='_PyByteArray_empty_string' visibility='default' filepath='./Include/cpython/bytearrayobject.h' line='20' column='1' elf-symbol-id='_PyByteArray_empty_string'/>
     <var-decl name='PyByteArray_Type' type-id='type-id-149' mangled-name='PyByteArray_Type' visibility='default' filepath='./Include/bytearrayobject.h' line='22' column='1' elf-symbol-id='PyByteArray_Type'/>
     <var-decl name='PyByteArrayIter_Type' type-id='type-id-149' mangled-name='PyByteArrayIter_Type' visibility='default' filepath='./Include/bytearrayobject.h' line='23' column='1' elf-symbol-id='PyByteArrayIter_Type'/>
     <function-decl name='PyByteArray_Concat' mangled-name='PyByteArray_Concat' filepath='Objects/bytearrayobject.c' line='247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Concat'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/bytearrayobject.c' line='247' column='1'/>
-      <parameter type-id='type-id-15' name='b' filepath='Objects/bytearrayobject.c' line='247' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/bytearrayobject.c' line='247' column='1'/>
+      <parameter type-id='type-id-16' name='b' filepath='Objects/bytearrayobject.c' line='247' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyByteArray_Resize' mangled-name='PyByteArray_Resize' filepath='Objects/bytearrayobject.c' line='168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Resize'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/bytearrayobject.c' line='168' column='1'/>
-      <parameter type-id='type-id-30' name='requested_size' filepath='Objects/bytearrayobject.c' line='168' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/bytearrayobject.c' line='168' column='1'/>
+      <parameter type-id='type-id-31' name='requested_size' filepath='Objects/bytearrayobject.c' line='168' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyByteArray_AsString' mangled-name='PyByteArray_AsString' filepath='Objects/bytearrayobject.c' line='159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_AsString'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/bytearrayobject.c' line='159' column='1'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/bytearrayobject.c' line='159' column='1'/>
       <return type-id='type-id-72'/>
     </function-decl>
     <function-decl name='PyByteArray_Size' mangled-name='PyByteArray_Size' filepath='Objects/bytearrayobject.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/bytearrayobject.c' line='150' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyByteArray_FromStringAndSize' mangled-name='PyByteArray_FromStringAndSize' filepath='Objects/bytearrayobject.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_FromStringAndSize'>
       <parameter type-id='type-id-3' name='bytes' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyByteArray_FromObject' mangled-name='PyByteArray_FromObject' filepath='Objects/bytearrayobject.c' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyByteArray_FromObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='./Include/objimpl.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_endswith' mangled-name='_Py_bytes_endswith' filepath='./Include/internal/pycore_bytes_methods.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_startswith' mangled-name='_Py_bytes_startswith' filepath='./Include/internal/pycore_bytes_methods.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_contains' mangled-name='_Py_bytes_contains' filepath='./Include/internal/pycore_bytes_methods.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_rindex' mangled-name='_Py_bytes_rindex' filepath='./Include/internal/pycore_bytes_methods.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_rfind' mangled-name='_Py_bytes_rfind' filepath='./Include/internal/pycore_bytes_methods.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_index' mangled-name='_Py_bytes_index' filepath='./Include/internal/pycore_bytes_methods.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_count' mangled-name='_Py_bytes_count' filepath='./Include/internal/pycore_bytes_methods.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_find' mangled-name='_Py_bytes_find' filepath='./Include/internal/pycore_bytes_methods.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyNumber_Index' mangled-name='_PyNumber_Index' filepath='./Include/cpython/abstract.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_BadArgument' mangled-name='_PyArg_BadArgument' filepath='./Include/modsupport.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_UnpackKeywords' mangled-name='_PyArg_UnpackKeywords' filepath='./Include/modsupport.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_AsInt' mangled-name='_PyLong_AsInt' filepath='./Include/longobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_swapcase' mangled-name='_Py_bytes_swapcase' filepath='./Include/internal/pycore_bytes_methods.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_capitalize' mangled-name='_Py_bytes_capitalize' filepath='./Include/internal/pycore_bytes_methods.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_title' mangled-name='_Py_bytes_title' filepath='./Include/internal/pycore_bytes_methods.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_upper' mangled-name='_Py_bytes_upper' filepath='./Include/internal/pycore_bytes_methods.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_lower' mangled-name='_Py_bytes_lower' filepath='./Include/internal/pycore_bytes_methods.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_istitle' mangled-name='_Py_bytes_istitle' filepath='./Include/internal/pycore_bytes_methods.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isupper' mangled-name='_Py_bytes_isupper' filepath='./Include/internal/pycore_bytes_methods.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_islower' mangled-name='_Py_bytes_islower' filepath='./Include/internal/pycore_bytes_methods.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isdigit' mangled-name='_Py_bytes_isdigit' filepath='./Include/internal/pycore_bytes_methods.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isascii' mangled-name='_Py_bytes_isascii' filepath='./Include/internal/pycore_bytes_methods.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isalnum' mangled-name='_Py_bytes_isalnum' filepath='./Include/internal/pycore_bytes_methods.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isalpha' mangled-name='_Py_bytes_isalpha' filepath='./Include/internal/pycore_bytes_methods.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_isspace' mangled-name='_Py_bytes_isspace' filepath='./Include/internal/pycore_bytes_methods.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Fast' mangled-name='PySequence_Fast' filepath='./Include/abstract.h' line='715' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Print' mangled-name='PyErr_Print' filepath='./Include/pythonrun.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Free' mangled-name='PyObject_Free' filepath='./Include/objimpl.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_GetConfig' mangled-name='_Py_GetConfig' filepath='./Include/cpython/pystate.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_WarnEx' mangled-name='PyErr_WarnEx' filepath='./Include/warnings.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Malloc' mangled-name='PyObject_Malloc' filepath='./Include/objimpl.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsLongAndOverflow' mangled-name='PyLong_AsLongAndOverflow' filepath='./Include/longobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Check' mangled-name='PyNumber_Check' filepath='./Include/abstract.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySlice_Unpack' mangled-name='PySlice_Unpack' filepath='./Include/sliceobject.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySlice_AdjustIndices' mangled-name='PySlice_AdjustIndices' filepath='./Include/sliceobject.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Realloc' mangled-name='PyObject_Realloc' filepath='./Include/objimpl.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_New' mangled-name='_PyObject_New' filepath='./Include/objimpl.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBuffer_ToContiguous' mangled-name='PyBuffer_ToContiguous' filepath='./Include/cpython/abstract.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='./Include/unicodeobject.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_strhex_with_sep' mangled-name='_Py_strhex_with_sep' filepath='./Include/pystrhex.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='./Include/unicodeobject.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='./Include/unicodeobject.h' line='355' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='./Include/listobject.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBuffer_IsContiguous' mangled-name='PyBuffer_IsContiguous' filepath='./Include/cpython/abstract.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_bytes_maketrans' mangled-name='_Py_bytes_maketrans' filepath='./Include/internal/pycore_bytes_methods.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='./Include/unicodeobject.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetIter' mangled-name='PyObject_GetIter' filepath='./Include/abstract.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='./Include/objimpl.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBuffer_FillInfo' mangled-name='PyBuffer_FillInfo' filepath='./Include/cpython/abstract.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_FormatEx' mangled-name='_PyBytes_FormatEx' filepath='./Include/cpython/bytesobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='./Include/cpython/ceval.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_FromHex' mangled-name='_PyBytes_FromHex' filepath='./Include/cpython/bytesobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_LengthHint' mangled-name='PyObject_LengthHint' filepath='./Include/cpython/abstract.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyIter_Next' mangled-name='PyIter_Next' filepath='./Include/abstract.h' line='396' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/bytesobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -3269,22 +4454,22 @@
     <var-decl name='PyBytesIter_Type' type-id='type-id-149' mangled-name='PyBytesIter_Type' visibility='default' filepath='./Include/bytesobject.h' line='28' column='1' elf-symbol-id='PyBytesIter_Type'/>
     <class-decl name='__anonymous_struct__' size-in-bits='4416' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-210' visibility='default' filepath='./Include/cpython/bytesobject.h' line='44' column='1' id='type-id-211'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='buffer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/bytesobject.h' line='46' column='1'/>
+        <var-decl name='buffer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/bytesobject.h' line='46' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='allocated' type-id='type-id-30' visibility='default' filepath='./Include/cpython/bytesobject.h' line='49' column='1'/>
+        <var-decl name='allocated' type-id='type-id-31' visibility='default' filepath='./Include/cpython/bytesobject.h' line='49' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='min_size' type-id='type-id-30' visibility='default' filepath='./Include/cpython/bytesobject.h' line='53' column='1'/>
+        <var-decl name='min_size' type-id='type-id-31' visibility='default' filepath='./Include/cpython/bytesobject.h' line='53' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='use_bytearray' type-id='type-id-8' visibility='default' filepath='./Include/cpython/bytesobject.h' line='56' column='1'/>
+        <var-decl name='use_bytearray' type-id='type-id-9' visibility='default' filepath='./Include/cpython/bytesobject.h' line='56' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='overallocate' type-id='type-id-8' visibility='default' filepath='./Include/cpython/bytesobject.h' line='60' column='1'/>
+        <var-decl name='overallocate' type-id='type-id-9' visibility='default' filepath='./Include/cpython/bytesobject.h' line='60' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='use_small_buffer' type-id='type-id-8' visibility='default' filepath='./Include/cpython/bytesobject.h' line='63' column='1'/>
+        <var-decl name='use_small_buffer' type-id='type-id-9' visibility='default' filepath='./Include/cpython/bytesobject.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
         <var-decl name='small_buffer' type-id='type-id-212' visibility='default' filepath='./Include/cpython/bytesobject.h' line='64' column='1'/>
@@ -3292,253 +4477,298 @@
     </class-decl>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='4096' id='type-id-212'>
-      <subrange length='512' type-id='type-id-18' id='type-id-213'/>
+      <subrange length='512' type-id='type-id-19' id='type-id-213'/>
 
     </array-type-def>
     <typedef-decl name='_PyBytesWriter' type-id='type-id-211' filepath='./Include/cpython/bytesobject.h' line='65' column='1' id='type-id-210'/>
     <pointer-type-def type-id='type-id-210' size-in-bits='64' id='type-id-214'/>
     <function-decl name='_PyBytesWriter_WriteBytes' mangled-name='_PyBytesWriter_WriteBytes' filepath='Objects/bytesobject.c' line='3504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_WriteBytes'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3504' column='1'/>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/bytesobject.c' line='3504' column='1'/>
-      <parameter type-id='type-id-20' name='bytes' filepath='Objects/bytesobject.c' line='3505' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytesobject.c' line='3505' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/bytesobject.c' line='3504' column='1'/>
+      <parameter type-id='type-id-21' name='bytes' filepath='Objects/bytesobject.c' line='3505' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytesobject.c' line='3505' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='_PyBytesWriter_Finish' mangled-name='_PyBytesWriter_Finish' filepath='Objects/bytesobject.c' line='3460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Finish'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3460' column='1'/>
-      <parameter type-id='type-id-20' name='str' filepath='Objects/bytesobject.c' line='3460' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-21' name='str' filepath='Objects/bytesobject.c' line='3460' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyBytesWriter_Alloc' mangled-name='_PyBytesWriter_Alloc' filepath='Objects/bytesobject.c' line='3430' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Alloc'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3430' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytesobject.c' line='3430' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='Objects/bytesobject.c' line='3400' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Prepare'>
-      <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3400' column='1'/>
-      <parameter type-id='type-id-20' name='str' filepath='Objects/bytesobject.c' line='3400' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytesobject.c' line='3400' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytesobject.c' line='3430' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='_PyBytesWriter_Resize' mangled-name='_PyBytesWriter_Resize' filepath='Objects/bytesobject.c' line='3330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Resize'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3330' column='1'/>
-      <parameter type-id='type-id-20' name='str' filepath='Objects/bytesobject.c' line='3330' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytesobject.c' line='3330' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-21' name='str' filepath='Objects/bytesobject.c' line='3330' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytesobject.c' line='3330' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='_PyBytesWriter_Dealloc' mangled-name='_PyBytesWriter_Dealloc' filepath='Objects/bytesobject.c' line='3260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Dealloc'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3260' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyBytesWriter_Init' mangled-name='_PyBytesWriter_Init' filepath='Objects/bytesobject.c' line='3249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Init'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3249' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyBytes_Resize' mangled-name='_PyBytes_Resize' filepath='Objects/bytesobject.c' line='3010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_Resize'>
       <parameter type-id='type-id-86' name='pv' filepath='Objects/bytesobject.c' line='3010' column='1'/>
-      <parameter type-id='type-id-30' name='newsize' filepath='Objects/bytesobject.c' line='3010' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-31' name='newsize' filepath='Objects/bytesobject.c' line='3010' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyBytes_ConcatAndDel' mangled-name='PyBytes_ConcatAndDel' filepath='Objects/bytesobject.c' line='2988' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_ConcatAndDel'>
       <parameter type-id='type-id-86' name='pv' filepath='Objects/bytesobject.c' line='2988' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/bytesobject.c' line='2988' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='Objects/bytesobject.c' line='2939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Concat'>
-      <parameter type-id='type-id-86' name='pv' filepath='Objects/bytesobject.c' line='2939' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/bytesobject.c' line='2939' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='Objects/bytesobject.c' line='2818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromObject'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/bytesobject.c' line='2988' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyBytes_FromHex' mangled-name='_PyBytes_FromHex' filepath='Objects/bytesobject.c' line='2359' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FromHex'>
-      <parameter type-id='type-id-15' name='string' filepath='Objects/bytesobject.c' line='2359' column='1'/>
-      <parameter type-id='type-id-8' name='use_bytearray' filepath='Objects/bytesobject.c' line='2359' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='string' filepath='Objects/bytesobject.c' line='2359' column='1'/>
+      <parameter type-id='type-id-9' name='use_bytearray' filepath='Objects/bytesobject.c' line='2359' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyBytes_Join' mangled-name='_PyBytes_Join' filepath='Objects/bytesobject.c' line='1840' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_Join'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyBytes_Repr' mangled-name='PyBytes_Repr' filepath='Objects/bytesobject.c' line='1292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Repr'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/bytesobject.c' line='1292' column='1'/>
-      <parameter type-id='type-id-8' name='smartquotes' filepath='Objects/bytesobject.c' line='1292' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/bytesobject.c' line='1292' column='1'/>
+      <parameter type-id='type-id-9' name='smartquotes' filepath='Objects/bytesobject.c' line='1292' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <pointer-type-def type-id='type-id-72' size-in-bits='64' id='type-id-215'/>
     <function-decl name='PyBytes_AsStringAndSize' mangled-name='PyBytes_AsStringAndSize' filepath='Objects/bytesobject.c' line='1246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_AsStringAndSize'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/bytesobject.c' line='1246' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/bytesobject.c' line='1246' column='1'/>
       <parameter type-id='type-id-215' name='s' filepath='Objects/bytesobject.c' line='1247' column='1'/>
       <parameter type-id='type-id-125' name='len' filepath='Objects/bytesobject.c' line='1248' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyBytes_AsString' mangled-name='PyBytes_AsString' filepath='Objects/bytesobject.c' line='1235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_AsString'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/bytearrayobject.c' line='159' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/bytesobject.c' line='1235' column='1'/>
       <return type-id='type-id-72'/>
     </function-decl>
     <function-decl name='PyBytes_Size' mangled-name='PyBytes_Size' filepath='Objects/bytesobject.c' line='1224' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/bytesobject.c' line='1224' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyBytes_DecodeEscape' mangled-name='PyBytes_DecodeEscape' filepath='Objects/bytesobject.c' line='1198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_DecodeEscape'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/bytesobject.c' line='1198' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/bytesobject.c' line='1199' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/bytesobject.c' line='1199' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/bytesobject.c' line='1200' column='1'/>
-      <parameter type-id='type-id-30' name='_unused_unicode' filepath='Objects/bytesobject.c' line='1201' column='1'/>
+      <parameter type-id='type-id-31' name='_unused_unicode' filepath='Objects/bytesobject.c' line='1201' column='1'/>
       <parameter type-id='type-id-3' name='_unused_recode_encoding' filepath='Objects/bytesobject.c' line='1202' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyBytes_DecodeEscape' mangled-name='_PyBytes_DecodeEscape' filepath='Objects/bytesobject.c' line='1090' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_DecodeEscape'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/bytesobject.c' line='1090' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/bytesobject.c' line='1091' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/bytesobject.c' line='1091' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/bytesobject.c' line='1092' column='1'/>
-      <parameter type-id='type-id-198' name='first_invalid_escape' filepath='Objects/bytesobject.c' line='1093' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-196' name='first_invalid_escape' filepath='Objects/bytesobject.c' line='1093' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyBytes_FormatEx' mangled-name='_PyBytes_FormatEx' filepath='Objects/bytesobject.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytes_FormatEx'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='610' column='1'/>
-      <parameter type-id='type-id-30' name='format_len' filepath='Objects/bytesobject.c' line='610' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/bytesobject.c' line='611' column='1'/>
-      <parameter type-id='type-id-8' name='use_bytearray' filepath='Objects/bytesobject.c' line='611' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='format_len' filepath='Objects/bytesobject.c' line='610' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/bytesobject.c' line='611' column='1'/>
+      <parameter type-id='type-id-9' name='use_bytearray' filepath='Objects/bytesobject.c' line='611' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyBytes_FromFormat' mangled-name='PyBytes_FromFormat' filepath='Objects/bytesobject.c' line='410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromFormat'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-216'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='gp_offset' type-id='type-id-65' visibility='default'/>
+        <var-decl name='gp_offset' type-id='type-id-66' visibility='default'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='fp_offset' type-id='type-id-65' visibility='default'/>
+        <var-decl name='fp_offset' type-id='type-id-66' visibility='default'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='overflow_arg_area' type-id='type-id-20' visibility='default'/>
+        <var-decl name='overflow_arg_area' type-id='type-id-21' visibility='default'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='reg_save_area' type-id='type-id-20' visibility='default'/>
+        <var-decl name='reg_save_area' type-id='type-id-21' visibility='default'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-216' size-in-bits='64' id='type-id-217'/>
     <function-decl name='PyBytes_FromFormatV' mangled-name='PyBytes_FromFormatV' filepath='Objects/bytesobject.c' line='219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromFormatV'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='219' column='1'/>
       <parameter type-id='type-id-217' name='vargs' filepath='Objects/bytesobject.c' line='219' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyBytes_FromString' mangled-name='PyBytes_FromString' filepath='Objects/bytesobject.c' line='176' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromString'>
       <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='176' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyBytes_FromStringAndSize' mangled-name='PyBytes_FromStringAndSize' filepath='Objects/bytesobject.c' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromStringAndSize'>
       <parameter type-id='type-id-3' name='str' filepath='Objects/bytesobject.c' line='139' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytesobject.c' line='139' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytesobject.c' line='139' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='Objects/bytesobject.c' line='2939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_Concat'>
+      <parameter type-id='type-id-86' name='pv' filepath='Objects/bytesobject.c' line='2939' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/bytesobject.c' line='2939' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='Objects/bytesobject.c' line='3400' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyBytesWriter_Prepare'>
+      <parameter type-id='type-id-214' name='writer' filepath='Objects/bytesobject.c' line='3400' column='1'/>
+      <parameter type-id='type-id-21' name='str' filepath='Objects/bytesobject.c' line='3400' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/bytesobject.c' line='3400' column='1'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='Objects/bytesobject.c' line='2818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBytes_FromObject'>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/bytesobject.c' line='2818' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyByteArray_Resize' mangled-name='PyByteArray_Resize' filepath='./Include/bytearrayobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyByteArray_FromStringAndSize' mangled-name='PyByteArray_FromStringAndSize' filepath='./Include/bytearrayobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_NewReference' mangled-name='_Py_NewReference' filepath='./Include/cpython/object.h' line='5' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='./Include/pyhash.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='./Include/pyerrors.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetItem' mangled-name='PyObject_GetItem' filepath='./Include/abstract.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FormatBytesWriter' mangled-name='_PyLong_FormatBytesWriter' filepath='./Include/longobject.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_GetItem' mangled-name='PyTuple_GetItem' filepath='./Include/tupleobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='./Include/cpython/unicodeobject.h' line='1148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Long' mangled-name='PyNumber_Long' filepath='./Include/abstract.h' line='538' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='./Include/object.h' line='267' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='./Include/floatobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='./Include/pystrtod.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin___memmove_chk' mangled-name='__memmove_chk' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Calloc' mangled-name='PyObject_Calloc' filepath='./Include/objimpl.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/call.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='_PyStack_AsDict' mangled-name='_PyStack_AsDict' filepath='Objects/call.c' line='851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStack_AsDict'>
       <parameter type-id='type-id-156' name='values' filepath='Objects/call.c' line='851' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Objects/call.c' line='851' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Objects/call.c' line='851' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallFunctionObjArgs' mangled-name='PyObject_CallFunctionObjArgs' filepath='Objects/call.c' line='834' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFunctionObjArgs'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='834' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='834' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <class-decl name='_Py_Identifier' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/object.h' line='37' column='1' id='type-id-218'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='string' type-id='type-id-3' visibility='default' filepath='./Include/cpython/object.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='index' type-id='type-id-30' visibility='default' filepath='./Include/cpython/object.h' line='41' column='1'/>
+        <var-decl name='index' type-id='type-id-31' visibility='default' filepath='./Include/cpython/object.h' line='41' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-219'/>
     <function-decl name='_PyObject_CallMethodIdObjArgs' mangled-name='_PyObject_CallMethodIdObjArgs' filepath='Objects/call.c' line='803' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodIdObjArgs'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='803' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='803' column='1'/>
       <parameter type-id='type-id-219' name='name' filepath='Objects/call.c' line='804' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallMethodObjArgs' mangled-name='PyObject_CallMethodObjArgs' filepath='Objects/call.c' line='778' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallMethodObjArgs'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='778' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/call.c' line='778' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='778' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/call.c' line='778' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_VectorcallMethod' mangled-name='PyObject_VectorcallMethod' filepath='Objects/call.c' line='744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_VectorcallMethod'>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/call.c' line='744' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/call.c' line='744' column='1'/>
       <parameter type-id='type-id-156' name='args' filepath='Objects/call.c' line='744' column='1'/>
       <parameter type-id='type-id-157' name='nargsf' filepath='Objects/call.c' line='745' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Objects/call.c' line='745' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Objects/call.c' line='745' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <typedef-decl name='_Py_Identifier' type-id='type-id-218' filepath='./Include/cpython/object.h' line='42' column='1' id='type-id-220'/>
     <function-decl name='_PyObject_CallMethodId_SizeT' mangled-name='_PyObject_CallMethodId_SizeT' filepath='Objects/call.c' line='660' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodId_SizeT'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='660' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='660' column='1'/>
       <parameter type-id='type-id-219' name='name' filepath='Objects/call.c' line='660' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='661' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_CallMethod_SizeT' mangled-name='_PyObject_CallMethod_SizeT' filepath='Objects/call.c' line='636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethod_SizeT'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='636' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='637' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_CallMethodId' mangled-name='_PyObject_CallMethodId' filepath='Objects/call.c' line='612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallMethodId'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='660' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='660' column='1'/>
       <parameter type-id='type-id-219' name='name' filepath='Objects/call.c' line='660' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='661' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_CallMethod' mangled-name='PyEval_CallMethod' filepath='Objects/call.c' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallMethod'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='636' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='637' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallMethod' mangled-name='PyObject_CallMethod' filepath='Objects/call.c' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallMethod'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='636' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/call.c' line='636' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='637' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_CallFunction_SizeT' mangled-name='_PyObject_CallFunction_SizeT' filepath='Objects/call.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CallFunction_SizeT'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='533' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='533' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='533' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_CallFunction' mangled-name='PyEval_CallFunction' filepath='Objects/call.c' line='518' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallFunction'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='533' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='533' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='533' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallFunction' mangled-name='PyObject_CallFunction' filepath='Objects/call.c' line='500' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFunction'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='533' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='533' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Objects/call.c' line='533' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-221'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='prev' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
+        <var-decl name='prev' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='next' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
+        <var-decl name='next' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='interp' type-id='type-id-222' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
@@ -3547,91 +4777,91 @@
         <var-decl name='frame' type-id='type-id-223' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
+        <var-decl name='recursion_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='recursion_headroom' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
+        <var-decl name='recursion_headroom' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
+        <var-decl name='stackcheck_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
+        <var-decl name='tracing' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='cframe' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
+        <var-decl name='cframe' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='c_profilefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
+        <var-decl name='c_profilefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='c_tracefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
+        <var-decl name='c_tracefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='c_profileobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
+        <var-decl name='c_profileobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='c_traceobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
+        <var-decl name='c_traceobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='curexc_type' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
+        <var-decl name='curexc_type' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='curexc_value' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
+        <var-decl name='curexc_value' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='curexc_traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
+        <var-decl name='curexc_traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='exc_state' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
+        <var-decl name='exc_state' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='exc_info' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
+        <var-decl name='exc_info' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
+        <var-decl name='gilstate_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='async_exc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
+        <var-decl name='async_exc' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='thread_id' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
+        <var-decl name='thread_id' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
+        <var-decl name='trash_delete_nesting' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='trash_delete_later' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
+        <var-decl name='trash_delete_later' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='on_delete' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
+        <var-decl name='on_delete' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='on_delete_data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
+        <var-decl name='on_delete_data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
+        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='async_gen_firstiter' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
+        <var-decl name='async_gen_firstiter' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='async_gen_finalizer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
+        <var-decl name='async_gen_finalizer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='context' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
+        <var-decl name='context' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='context_ver' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
+        <var-decl name='context_ver' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='id' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
+        <var-decl name='id' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='root_cframe' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
+        <var-decl name='root_cframe' type-id='type-id-23' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_is' size-in-bits='908160' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='220' column='1' id='type-id-224'>
@@ -3639,7 +4869,7 @@
         <var-decl name='next' type-id='type-id-225' visibility='default' filepath='./Include/internal/pycore_interp.h' line='222' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tstate_head' type-id='type-id-10' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
+        <var-decl name='tstate_head' type-id='type-id-11' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='runtime' type-id='type-id-226' visibility='default' filepath='./Include/internal/pycore_interp.h' line='228' column='1'/>
@@ -3651,13 +4881,13 @@
         <var-decl name='id_refcount' type-id='type-id-227' visibility='default' filepath='./Include/internal/pycore_interp.h' line='231' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='requires_idref' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
+        <var-decl name='requires_idref' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='id_mutex' type-id='type-id-228' visibility='default' filepath='./Include/internal/pycore_interp.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='finalizing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
+        <var-decl name='finalizing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='ceval' type-id='type-id-229' visibility='default' filepath='./Include/internal/pycore_interp.h' line='237' column='1'/>
@@ -3666,73 +4896,73 @@
         <var-decl name='gc' type-id='type-id-230' visibility='default' filepath='./Include/internal/pycore_interp.h' line='238' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6848'>
-        <var-decl name='modules' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
+        <var-decl name='modules' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6912'>
-        <var-decl name='modules_by_index' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
+        <var-decl name='modules_by_index' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6976'>
-        <var-decl name='sysdict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
+        <var-decl name='sysdict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7040'>
-        <var-decl name='builtins' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
+        <var-decl name='builtins' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7104'>
-        <var-decl name='importlib' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
+        <var-decl name='importlib' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7168'>
-        <var-decl name='num_threads' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
+        <var-decl name='num_threads' type-id='type-id-33' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7232'>
         <var-decl name='pythread_stacksize' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_interp.h' line='256' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7296'>
-        <var-decl name='codec_search_path' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
+        <var-decl name='codec_search_path' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7360'>
-        <var-decl name='codec_search_cache' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
+        <var-decl name='codec_search_cache' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7424'>
-        <var-decl name='codec_error_registry' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
+        <var-decl name='codec_error_registry' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7488'>
-        <var-decl name='codecs_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
+        <var-decl name='codecs_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7552'>
         <var-decl name='config' type-id='type-id-231' visibility='default' filepath='./Include/internal/pycore_interp.h' line='263' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10688'>
-        <var-decl name='dlopenflags' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
+        <var-decl name='dlopenflags' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10752'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10816'>
-        <var-decl name='builtins_copy' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
+        <var-decl name='builtins_copy' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10880'>
-        <var-decl name='import_func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
+        <var-decl name='import_func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10944'>
         <var-decl name='eval_frame' type-id='type-id-232' visibility='default' filepath='./Include/internal/pycore_interp.h' line='273' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11008'>
-        <var-decl name='co_extra_user_count' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
+        <var-decl name='co_extra_user_count' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11072'>
         <var-decl name='co_extra_freefuncs' type-id='type-id-233' visibility='default' filepath='./Include/internal/pycore_interp.h' line='276' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27392'>
-        <var-decl name='before_forkers' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
+        <var-decl name='before_forkers' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27456'>
-        <var-decl name='after_forkers_parent' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
+        <var-decl name='after_forkers_parent' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27520'>
-        <var-decl name='after_forkers_child' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
+        <var-decl name='after_forkers_child' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27584'>
-        <var-decl name='tstate_next_unique_id' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
+        <var-decl name='tstate_next_unique_id' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27648'>
         <var-decl name='warnings' type-id='type-id-234' visibility='default' filepath='./Include/internal/pycore_interp.h' line='286' column='1'/>
@@ -3741,7 +4971,7 @@
         <var-decl name='atexit' type-id='type-id-235' visibility='default' filepath='./Include/internal/pycore_interp.h' line='287' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28032'>
-        <var-decl name='audit_hooks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
+        <var-decl name='audit_hooks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28096'>
         <var-decl name='small_ints' type-id='type-id-236' visibility='default' filepath='./Include/internal/pycore_interp.h' line='296' column='1'/>
@@ -3789,16 +5019,16 @@
     <pointer-type-def type-id='type-id-224' size-in-bits='64' id='type-id-225'/>
     <class-decl name='pyruntimestate' size-in-bits='5376' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='61' column='1' id='type-id-250'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='preinitializing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='63' column='1'/>
+        <var-decl name='preinitializing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='preinitialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='66' column='1'/>
+        <var-decl name='preinitialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='core_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='69' column='1'/>
+        <var-decl name='core_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='69' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='72' column='1'/>
+        <var-decl name='initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='_finalizing' type-id='type-id-251' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='79' column='1'/>
@@ -3810,13 +5040,13 @@
         <var-decl name='xidregistry' type-id='type-id-253' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='99' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='main_thread' type-id='type-id-18' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='101' column='1'/>
+        <var-decl name='main_thread' type-id='type-id-19' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
         <var-decl name='exitfuncs' type-id='type-id-254' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='104' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2688'>
-        <var-decl name='nexitfuncs' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/>
+        <var-decl name='nexitfuncs' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2752'>
         <var-decl name='ceval' type-id='type-id-255' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='107' column='1'/>
@@ -3831,7 +5061,7 @@
         <var-decl name='open_code_hook' type-id='type-id-258' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='open_code_userdata' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1'/>
+        <var-decl name='open_code_userdata' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5184'>
         <var-decl name='audit_hook_head' type-id='type-id-259' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='116' column='1'/>
@@ -3861,10 +5091,10 @@
         <var-decl name='next_id' type-id='type-id-227' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='93' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='PyThread_type_lock' type-id='type-id-20' filepath='./Include/pythread.h' line='5' column='1' id='type-id-228'/>
+    <typedef-decl name='PyThread_type_lock' type-id='type-id-21' filepath='./Include/pythread.h' line='5' column='1' id='type-id-228'/>
     <typedef-decl name='PyInterpreterState' type-id='type-id-224' filepath='./Include/pystate.h' line='22' column='1' id='type-id-263'/>
     <pointer-type-def type-id='type-id-263' size-in-bits='64' id='type-id-222'/>
-    <typedef-decl name='__int64_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='44' column='1' id='type-id-264'/>
+    <typedef-decl name='__int64_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='44' column='1' id='type-id-264'/>
     <typedef-decl name='int64_t' type-id='type-id-264' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-intn.h' line='27' column='1' id='type-id-227'/>
     <class-decl name='_xidregistry' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='96' column='1' id='type-id-253'>
       <data-member access='public' layout-offset-in-bits='0'>
@@ -3876,7 +5106,7 @@
     </class-decl>
     <class-decl name='_xidregitem' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='328' column='1' id='type-id-266'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='cls' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='329' column='1'/>
+        <var-decl name='cls' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_interp.h' line='329' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='getdata' type-id='type-id-267' visibility='default' filepath='./Include/internal/pycore_interp.h' line='330' column='1'/>
@@ -3887,10 +5117,10 @@
     </class-decl>
     <class-decl name='_xid' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='257' column='1' id='type-id-268'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='261' column='1'/>
+        <var-decl name='data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='obj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='268' column='1'/>
+        <var-decl name='obj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='268' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='interp' type-id='type-id-227' visibility='default' filepath='./Include/cpython/pystate.h' line='278' column='1'/>
@@ -3899,7 +5129,7 @@
         <var-decl name='new_object' type-id='type-id-269' visibility='default' filepath='./Include/cpython/pystate.h' line='283' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='free' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='293' column='1'/>
+        <var-decl name='free' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='293' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-268' size-in-bits='64' id='type-id-270'/>
@@ -3910,7 +5140,7 @@
     <pointer-type-def type-id='type-id-274' size-in-bits='64' id='type-id-275'/>
 
     <array-type-def dimensions='1' type-id='type-id-275' size-in-bits='2048' id='type-id-254'>
-      <subrange length='32' type-id='type-id-18' id='type-id-276'/>
+      <subrange length='32' type-id='type-id-19' id='type-id-276'/>
 
     </array-type-def>
     <class-decl name='_ceval_runtime_state' size-in-bits='1728' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='16' column='1' id='type-id-255'>
@@ -3930,7 +5160,7 @@
     <typedef-decl name='_Py_atomic_int' type-id='type-id-279' filepath='./Include/internal/pycore_atomic.h' line='51' column='1' id='type-id-277'/>
     <class-decl name='_gil_runtime_state' size-in-bits='1664' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_gil.h' line='23' column='1' id='type-id-278'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='interval' type-id='type-id-18' visibility='default' filepath='./Include/internal/pycore_gil.h' line='25' column='1'/>
+        <var-decl name='interval' type-id='type-id-19' visibility='default' filepath='./Include/internal/pycore_gil.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='last_holder' type-id='type-id-251' visibility='default' filepath='./Include/internal/pycore_gil.h' line='28' column='1'/>
@@ -3939,7 +5169,7 @@
         <var-decl name='locked' type-id='type-id-277' visibility='default' filepath='./Include/internal/pycore_gil.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='switch_number' type-id='type-id-18' visibility='default' filepath='./Include/internal/pycore_gil.h' line='33' column='1'/>
+        <var-decl name='switch_number' type-id='type-id-19' visibility='default' filepath='./Include/internal/pycore_gil.h' line='33' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
         <var-decl name='cond' type-id='type-id-281' visibility='default' filepath='./Include/internal/pycore_gil.h' line='37' column='1'/>
@@ -3976,10 +5206,10 @@
         <var-decl name='__g_size' type-id='type-id-288' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='113' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='__g1_orig_size' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='114' column='1'/>
+        <var-decl name='__g1_orig_size' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='__wrefs' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='115' column='1'/>
+        <var-decl name='__wrefs' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='115' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
         <var-decl name='__g_signals' type-id='type-id-288' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='116' column='1'/>
@@ -3996,20 +5226,20 @@
     <type-decl name='long long unsigned int' size-in-bits='64' id='type-id-289'/>
     <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='97' column='1' id='type-id-290'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='__low' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='99' column='1'/>
+        <var-decl name='__low' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='99' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='__high' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='100' column='1'/>
+        <var-decl name='__high' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='100' column='1'/>
       </data-member>
     </class-decl>
 
-    <array-type-def dimensions='1' type-id='type-id-65' size-in-bits='64' id='type-id-288'>
-      <subrange length='2' type-id='type-id-18' id='type-id-291'/>
+    <array-type-def dimensions='1' type-id='type-id-66' size-in-bits='64' id='type-id-288'>
+      <subrange length='2' type-id='type-id-19' id='type-id-291'/>
 
     </array-type-def>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='384' id='type-id-285'>
-      <subrange length='48' type-id='type-id-18' id='type-id-292'/>
+      <subrange length='48' type-id='type-id-19' id='type-id-292'/>
 
     </array-type-def>
     <type-decl name='long long int' size-in-bits='64' id='type-id-286'/>
@@ -4022,24 +5252,24 @@
         <var-decl name='__size' type-id='type-id-295' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='70' column='1'/>
       </data-member>
       <data-member access='private'>
-        <var-decl name='__align' type-id='type-id-32' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='71' column='1'/>
+        <var-decl name='__align' type-id='type-id-33' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='71' column='1'/>
       </data-member>
     </union-decl>
     <class-decl name='__pthread_mutex_s' size-in-bits='320' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='22' column='1' id='type-id-294'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='__lock' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='24' column='1'/>
+        <var-decl name='__lock' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='__count' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='25' column='1'/>
+        <var-decl name='__count' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='__owner' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='26' column='1'/>
+        <var-decl name='__owner' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='__nusers' type-id='type-id-65' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='28' column='1'/>
+        <var-decl name='__nusers' type-id='type-id-66' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='28' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='__kind' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='32' column='1'/>
+        <var-decl name='__kind' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
         <var-decl name='__spins' type-id='type-id-296' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/struct_mutex.h' line='34' column='1'/>
@@ -4064,13 +5294,13 @@
     <typedef-decl name='__pthread_list_t' type-id='type-id-298' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='53' column='1' id='type-id-297'/>
 
     <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='320' id='type-id-295'>
-      <subrange length='40' type-id='type-id-18' id='type-id-300'/>
+      <subrange length='40' type-id='type-id-19' id='type-id-300'/>
 
     </array-type-def>
     <typedef-decl name='pthread_mutex_t' type-id='type-id-293' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='72' column='1' id='type-id-282'/>
     <class-decl name='_gilstate_runtime_state' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='29' column='1' id='type-id-256'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='check_enabled' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='32' column='1'/>
+        <var-decl name='check_enabled' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='tstate_current' type-id='type-id-251' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='35' column='1'/>
@@ -4084,44 +5314,44 @@
     </class-decl>
     <class-decl name='_Py_tss_t' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/pythread.h' line='143' column='1' id='type-id-302'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_is_initialized' type-id='type-id-8' visibility='default' filepath='./Include/pythread.h' line='144' column='1'/>
+        <var-decl name='_is_initialized' type-id='type-id-9' visibility='default' filepath='./Include/pythread.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
         <var-decl name='_key' type-id='type-id-303' visibility='default' filepath='./Include/pythread.h' line='145' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='pthread_key_t' type-id='type-id-65' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='49' column='1' id='type-id-303'/>
+    <typedef-decl name='pthread_key_t' type-id='type-id-66' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='49' column='1' id='type-id-303'/>
     <typedef-decl name='Py_tss_t' type-id='type-id-302' filepath='./Include/pythread.h' line='123' column='1' id='type-id-301'/>
     <class-decl name='PyPreConfig' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='44' column='1' id='type-id-304'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_config_init' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='45' column='1'/>
+        <var-decl name='_config_init' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='45' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='parse_argv' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='49' column='1'/>
+        <var-decl name='parse_argv' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='49' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='isolated' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='56' column='1'/>
+        <var-decl name='isolated' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='56' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='use_environment' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='61' column='1'/>
+        <var-decl name='use_environment' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='61' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='configure_locale' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='65' column='1'/>
+        <var-decl name='configure_locale' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='coerce_c_locale' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='78' column='1'/>
+        <var-decl name='coerce_c_locale' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='coerce_c_locale_warn' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='86' column='1'/>
+        <var-decl name='coerce_c_locale_warn' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='utf8_mode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='111' column='1'/>
+        <var-decl name='utf8_mode' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='111' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='dev_mode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='117' column='1'/>
+        <var-decl name='dev_mode' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='117' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='allocator' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='121' column='1'/>
+        <var-decl name='allocator' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='121' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyPreConfig' type-id='type-id-304' filepath='./Include/cpython/initconfig.h' line='122' column='1' id='type-id-257'/>
@@ -4134,7 +5364,7 @@
         <var-decl name='hookCFunction' type-id='type-id-306' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='48' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='userData' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='49' column='1'/>
+        <var-decl name='userData' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='49' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-305' size-in-bits='64' id='type-id-259'/>
@@ -4146,13 +5376,13 @@
         <var-decl name='lock' type-id='type-id-228' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='53' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='next_index' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='56' column='1'/>
+        <var-decl name='next_index' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='56' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-250' size-in-bits='64' id='type-id-226'/>
     <class-decl name='_ceval_state' size-in-bits='4416' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='34' column='1' id='type-id-229'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='recursion_limit' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='35' column='1'/>
+        <var-decl name='recursion_limit' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
         <var-decl name='eval_breaker' type-id='type-id-277' visibility='default' filepath='./Include/internal/pycore_interp.h' line='38' column='1'/>
@@ -4172,16 +5402,16 @@
         <var-decl name='calls_to_do' type-id='type-id-277' visibility='default' filepath='./Include/internal/pycore_interp.h' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='async_exc' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='24' column='1'/>
+        <var-decl name='async_exc' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='calls' type-id='type-id-311' visibility='default' filepath='./Include/internal/pycore_interp.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4224'>
-        <var-decl name='first' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='30' column='1'/>
+        <var-decl name='first' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4256'>
-        <var-decl name='last' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='31' column='1'/>
+        <var-decl name='last' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='31' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='26' column='1' id='type-id-312'>
@@ -4189,27 +5419,27 @@
         <var-decl name='func' type-id='type-id-313' visibility='default' filepath='./Include/internal/pycore_interp.h' line='27' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='arg' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_interp.h' line='28' column='1'/>
+        <var-decl name='arg' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_interp.h' line='28' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-314' size-in-bits='64' id='type-id-313'/>
 
     <array-type-def dimensions='1' type-id='type-id-312' size-in-bits='4096' id='type-id-311'>
-      <subrange length='32' type-id='type-id-18' id='type-id-276'/>
+      <subrange length='32' type-id='type-id-19' id='type-id-276'/>
 
     </array-type-def>
     <class-decl name='_gc_runtime_state' size-in-bits='1920' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_gc.h' line='130' column='1' id='type-id-230'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='trash_delete_later' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_gc.h' line='133' column='1'/>
+        <var-decl name='trash_delete_later' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_gc.h' line='133' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='135' column='1'/>
+        <var-decl name='trash_delete_nesting' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='135' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='enabled' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='137' column='1'/>
+        <var-decl name='enabled' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='debug' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='138' column='1'/>
+        <var-decl name='debug' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='138' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='generations' type-id='type-id-315' visibility='default' filepath='./Include/internal/pycore_gc.h' line='140' column='1'/>
@@ -4224,19 +5454,19 @@
         <var-decl name='generation_stats' type-id='type-id-318' visibility='default' filepath='./Include/internal/pycore_gc.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='collecting' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='146' column='1'/>
+        <var-decl name='collecting' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='146' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='garbage' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_gc.h' line='148' column='1'/>
+        <var-decl name='garbage' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_gc.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='callbacks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_gc.h' line='150' column='1'/>
+        <var-decl name='callbacks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_gc.h' line='150' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='long_lived_total' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_gc.h' line='157' column='1'/>
+        <var-decl name='long_lived_total' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_gc.h' line='157' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='long_lived_pending' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_gc.h' line='161' column='1'/>
+        <var-decl name='long_lived_pending' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_gc.h' line='161' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='gc_generation' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_gc.h' line='113' column='1' id='type-id-317'>
@@ -4244,10 +5474,10 @@
         <var-decl name='head' type-id='type-id-319' visibility='default' filepath='./Include/internal/pycore_gc.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='threshold' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='115' column='1'/>
+        <var-decl name='threshold' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='115' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='count' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_gc.h' line='116' column='1'/>
+        <var-decl name='count' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_gc.h' line='116' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-319' visibility='default' filepath='./Include/internal/pycore_gc.h' line='12' column='1' id='type-id-320'>
@@ -4258,69 +5488,69 @@
         <var-decl name='_gc_prev' type-id='type-id-321' visibility='default' filepath='./Include/internal/pycore_gc.h' line='19' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='uintptr_t' type-id='type-id-18' filepath='/usr/include/stdint.h' line='90' column='1' id='type-id-321'/>
+    <typedef-decl name='uintptr_t' type-id='type-id-19' filepath='/usr/include/stdint.h' line='90' column='1' id='type-id-321'/>
     <typedef-decl name='PyGC_Head' type-id='type-id-320' filepath='./Include/internal/pycore_gc.h' line='20' column='1' id='type-id-319'/>
 
     <array-type-def dimensions='1' type-id='type-id-317' size-in-bits='576' id='type-id-315'>
-      <subrange length='3' type-id='type-id-18' id='type-id-322'/>
+      <subrange length='3' type-id='type-id-19' id='type-id-322'/>
 
     </array-type-def>
     <pointer-type-def type-id='type-id-319' size-in-bits='64' id='type-id-316'/>
     <class-decl name='gc_generation_stats' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_gc.h' line='121' column='1' id='type-id-323'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='collections' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_gc.h' line='123' column='1'/>
+        <var-decl name='collections' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_gc.h' line='123' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='collected' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_gc.h' line='125' column='1'/>
+        <var-decl name='collected' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_gc.h' line='125' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='uncollectable' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_gc.h' line='127' column='1'/>
+        <var-decl name='uncollectable' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_gc.h' line='127' column='1'/>
       </data-member>
     </class-decl>
 
     <array-type-def dimensions='1' type-id='type-id-323' size-in-bits='576' id='type-id-318'>
-      <subrange length='3' type-id='type-id-18' id='type-id-322'/>
+      <subrange length='3' type-id='type-id-19' id='type-id-322'/>
 
     </array-type-def>
     <class-decl name='PyConfig' size-in-bits='3136' is-struct='yes' visibility='default' filepath='./Include/cpython/initconfig.h' line='131' column='1' id='type-id-324'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_config_init' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='132' column='1'/>
+        <var-decl name='_config_init' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='132' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='isolated' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='134' column='1'/>
+        <var-decl name='isolated' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='134' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='use_environment' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='135' column='1'/>
+        <var-decl name='use_environment' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='135' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='dev_mode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='136' column='1'/>
+        <var-decl name='dev_mode' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='install_signal_handlers' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='137' column='1'/>
+        <var-decl name='install_signal_handlers' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='use_hash_seed' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='138' column='1'/>
+        <var-decl name='use_hash_seed' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='138' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='hash_seed' type-id='type-id-18' visibility='default' filepath='./Include/cpython/initconfig.h' line='139' column='1'/>
+        <var-decl name='hash_seed' type-id='type-id-19' visibility='default' filepath='./Include/cpython/initconfig.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='faulthandler' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='140' column='1'/>
+        <var-decl name='faulthandler' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='140' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='tracemalloc' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='141' column='1'/>
+        <var-decl name='tracemalloc' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='141' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='import_time' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='142' column='1'/>
+        <var-decl name='import_time' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='142' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='show_ref_count' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='143' column='1'/>
+        <var-decl name='show_ref_count' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='143' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='dump_refs' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='144' column='1'/>
+        <var-decl name='dump_refs' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='416'>
-        <var-decl name='malloc_stats' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='145' column='1'/>
+        <var-decl name='malloc_stats' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='145' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
         <var-decl name='filesystem_encoding' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='146' column='1'/>
@@ -4332,7 +5562,7 @@
         <var-decl name='pycache_prefix' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='parse_argv' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='149' column='1'/>
+        <var-decl name='parse_argv' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='149' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
         <var-decl name='orig_argv' type-id='type-id-326' visibility='default' filepath='./Include/cpython/initconfig.h' line='150' column='1'/>
@@ -4347,43 +5577,43 @@
         <var-decl name='warnoptions' type-id='type-id-326' visibility='default' filepath='./Include/cpython/initconfig.h' line='153' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='site_import' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='154' column='1'/>
+        <var-decl name='site_import' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='154' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1248'>
-        <var-decl name='bytes_warning' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='155' column='1'/>
+        <var-decl name='bytes_warning' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='155' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='warn_default_encoding' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='156' column='1'/>
+        <var-decl name='warn_default_encoding' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='156' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1312'>
-        <var-decl name='inspect' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='157' column='1'/>
+        <var-decl name='inspect' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='157' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='interactive' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='158' column='1'/>
+        <var-decl name='interactive' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='158' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1376'>
-        <var-decl name='optimization_level' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='159' column='1'/>
+        <var-decl name='optimization_level' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='159' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='parser_debug' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='160' column='1'/>
+        <var-decl name='parser_debug' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='160' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1440'>
-        <var-decl name='write_bytecode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='161' column='1'/>
+        <var-decl name='write_bytecode' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='161' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='verbose' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='162' column='1'/>
+        <var-decl name='verbose' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='162' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1504'>
-        <var-decl name='quiet' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='163' column='1'/>
+        <var-decl name='quiet' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='163' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='user_site_directory' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='164' column='1'/>
+        <var-decl name='user_site_directory' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='164' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1568'>
-        <var-decl name='configure_c_stdio' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='165' column='1'/>
+        <var-decl name='configure_c_stdio' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='165' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='buffered_stdio' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='166' column='1'/>
+        <var-decl name='buffered_stdio' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='166' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
         <var-decl name='stdio_encoding' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='167' column='1'/>
@@ -4395,7 +5625,7 @@
         <var-decl name='check_hash_pycs_mode' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='172' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='pathconfig_warnings' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='175' column='1'/>
+        <var-decl name='pathconfig_warnings' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='175' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
         <var-decl name='program_name' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='176' column='1'/>
@@ -4410,7 +5640,7 @@
         <var-decl name='platlibdir' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='179' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2176'>
-        <var-decl name='module_search_paths_set' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='182' column='1'/>
+        <var-decl name='module_search_paths_set' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='182' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2240'>
         <var-decl name='module_search_paths' type-id='type-id-326' visibility='default' filepath='./Include/cpython/initconfig.h' line='183' column='1'/>
@@ -4434,7 +5664,7 @@
         <var-decl name='base_exec_prefix' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='189' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2752'>
-        <var-decl name='skip_source_first_line' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='192' column='1'/>
+        <var-decl name='skip_source_first_line' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='192' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2816'>
         <var-decl name='run_command' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='193' column='1'/>
@@ -4446,20 +5676,20 @@
         <var-decl name='run_filename' type-id='type-id-325' visibility='default' filepath='./Include/cpython/initconfig.h' line='195' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3008'>
-        <var-decl name='_install_importlib' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='201' column='1'/>
+        <var-decl name='_install_importlib' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='201' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3040'>
-        <var-decl name='_init_main' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='204' column='1'/>
+        <var-decl name='_init_main' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='204' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3072'>
-        <var-decl name='_isolated_interpreter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='208' column='1'/>
+        <var-decl name='_isolated_interpreter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='208' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='wchar_t' type-id='type-id-8' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='321' column='1' id='type-id-327'/>
+    <typedef-decl name='wchar_t' type-id='type-id-9' filepath='/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h' line='321' column='1' id='type-id-327'/>
     <pointer-type-def type-id='type-id-327' size-in-bits='64' id='type-id-325'/>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-326' visibility='default' filepath='./Include/cpython/initconfig.h' line='28' column='1' id='type-id-328'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='length' type-id='type-id-30' visibility='default' filepath='./Include/cpython/initconfig.h' line='31' column='1'/>
+        <var-decl name='length' type-id='type-id-31' visibility='default' filepath='./Include/cpython/initconfig.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='items' type-id='type-id-329' visibility='default' filepath='./Include/cpython/initconfig.h' line='32' column='1'/>
@@ -4472,7 +5702,7 @@
     <pointer-type-def type-id='type-id-330' size-in-bits='64' id='type-id-331'/>
     <class-decl name='_frame' size-in-bits='2880' is-struct='yes' visibility='default' filepath='./Include/cpython/frameobject.h' line='28' column='1' id='type-id-332'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/frameobject.h' line='29' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/frameobject.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='f_back' type-id='type-id-333' visibility='default' filepath='./Include/cpython/frameobject.h' line='30' column='1'/>
@@ -4481,22 +5711,22 @@
         <var-decl name='f_code' type-id='type-id-334' visibility='default' filepath='./Include/cpython/frameobject.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='f_builtins' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='32' column='1'/>
+        <var-decl name='f_builtins' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='f_globals' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='33' column='1'/>
+        <var-decl name='f_globals' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='33' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='f_locals' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='34' column='1'/>
+        <var-decl name='f_locals' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='34' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='f_valuestack' type-id='type-id-86' visibility='default' filepath='./Include/cpython/frameobject.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='f_trace' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='36' column='1'/>
+        <var-decl name='f_trace' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='36' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='f_stackdepth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='37' column='1'/>
+        <var-decl name='f_stackdepth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='37' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='672'>
         <var-decl name='f_trace_lines' type-id='type-id-1' visibility='default' filepath='./Include/cpython/frameobject.h' line='38' column='1'/>
@@ -4505,16 +5735,16 @@
         <var-decl name='f_trace_opcodes' type-id='type-id-1' visibility='default' filepath='./Include/cpython/frameobject.h' line='39' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='f_gen' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='42' column='1'/>
+        <var-decl name='f_gen' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='42' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='f_lasti' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='44' column='1'/>
+        <var-decl name='f_lasti' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='800'>
-        <var-decl name='f_lineno' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='45' column='1'/>
+        <var-decl name='f_lineno' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='45' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='f_iblock' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='46' column='1'/>
+        <var-decl name='f_iblock' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='46' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='864'>
         <var-decl name='f_state' type-id='type-id-335' visibility='default' filepath='./Include/cpython/frameobject.h' line='47' column='1'/>
@@ -4529,67 +5759,67 @@
     <pointer-type-def type-id='type-id-332' size-in-bits='64' id='type-id-333'/>
     <class-decl name='PyCodeObject' size-in-bits='1408' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='18' column='1' id='type-id-338'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='co_argcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
+        <var-decl name='co_argcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='co_posonlyargcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='21' column='1'/>
+        <var-decl name='co_posonlyargcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='21' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='co_kwonlyargcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='22' column='1'/>
+        <var-decl name='co_kwonlyargcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='co_nlocals' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1'/>
+        <var-decl name='co_nlocals' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='co_stacksize' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
+        <var-decl name='co_stacksize' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='co_flags' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='25' column='1'/>
+        <var-decl name='co_flags' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='co_firstlineno' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='26' column='1'/>
+        <var-decl name='co_firstlineno' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='co_code' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='27' column='1'/>
+        <var-decl name='co_code' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='27' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='co_consts' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1'/>
+        <var-decl name='co_consts' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='co_names' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='29' column='1'/>
+        <var-decl name='co_names' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='co_varnames' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='30' column='1'/>
+        <var-decl name='co_varnames' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='co_freevars' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='31' column='1'/>
+        <var-decl name='co_freevars' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='co_cellvars' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='32' column='1'/>
+        <var-decl name='co_cellvars' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
         <var-decl name='co_cell2arg' type-id='type-id-125' visibility='default' filepath='./Include/cpython/code.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='co_filename' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='39' column='1'/>
+        <var-decl name='co_filename' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='39' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='co_name' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='40' column='1'/>
+        <var-decl name='co_name' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='40' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='co_linetable' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='41' column='1'/>
+        <var-decl name='co_linetable' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='41' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1024'>
-        <var-decl name='co_zombieframe' type-id='type-id-20' visibility='default' filepath='./Include/cpython/code.h' line='43' column='1'/>
+        <var-decl name='co_zombieframe' type-id='type-id-21' visibility='default' filepath='./Include/cpython/code.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1088'>
-        <var-decl name='co_weakreflist' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1'/>
+        <var-decl name='co_weakreflist' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='co_extra' type-id='type-id-20' visibility='default' filepath='./Include/cpython/code.h' line='48' column='1'/>
+        <var-decl name='co_extra' type-id='type-id-21' visibility='default' filepath='./Include/cpython/code.h' line='48' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
         <var-decl name='co_opcache_map' type-id='type-id-339' visibility='default' filepath='./Include/cpython/code.h' line='60' column='1'/>
@@ -4598,7 +5828,7 @@
         <var-decl name='co_opcache' type-id='type-id-340' visibility='default' filepath='./Include/cpython/code.h' line='61' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='co_opcache_flag' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='62' column='1'/>
+        <var-decl name='co_opcache_flag' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1376'>
         <var-decl name='co_opcache_size' type-id='type-id-341' visibility='default' filepath='./Include/cpython/code.h' line='63' column='1'/>
@@ -4614,24 +5844,24 @@
     <typedef-decl name='PyFrameState' type-id='type-id-174' filepath='./Include/cpython/frameobject.h' line='20' column='1' id='type-id-335'/>
     <class-decl name='__anonymous_struct__' size-in-bits='96' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-345' visibility='default' filepath='./Include/cpython/frameobject.h' line='22' column='1' id='type-id-346'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='b_type' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='23' column='1'/>
+        <var-decl name='b_type' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='b_handler' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='24' column='1'/>
+        <var-decl name='b_handler' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='b_level' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='25' column='1'/>
+        <var-decl name='b_level' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='25' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyTryBlock' type-id='type-id-346' filepath='./Include/cpython/frameobject.h' line='26' column='1' id='type-id-345'/>
 
     <array-type-def dimensions='1' type-id='type-id-345' size-in-bits='1920' id='type-id-336'>
-      <subrange length='20' type-id='type-id-18' id='type-id-186'/>
+      <subrange length='20' type-id='type-id-19' id='type-id-186'/>
 
     </array-type-def>
 
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='64' id='type-id-337'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+    <array-type-def dimensions='1' type-id='type-id-16' size-in-bits='64' id='type-id-337'>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='PyFrameObject' type-id='type-id-332' filepath='./Include/pyframe.h' line='12' column='1' id='type-id-347'/>
@@ -4639,22 +5869,22 @@
     <pointer-type-def type-id='type-id-348' size-in-bits='64' id='type-id-349'/>
     <typedef-decl name='_PyFrameEvalFunction' type-id='type-id-349' filepath='./Include/cpython/pystate.h' line='205' column='1' id='type-id-232'/>
 
-    <array-type-def dimensions='1' type-id='type-id-64' size-in-bits='16320' id='type-id-233'>
-      <subrange length='255' type-id='type-id-18' id='type-id-350'/>
+    <array-type-def dimensions='1' type-id='type-id-65' size-in-bits='16320' id='type-id-233'>
+      <subrange length='255' type-id='type-id-19' id='type-id-350'/>
 
     </array-type-def>
     <class-decl name='_warnings_runtime_state' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='11' column='1' id='type-id-234'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='filters' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='14' column='1'/>
+        <var-decl name='filters' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='once_registry' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='15' column='1'/>
+        <var-decl name='once_registry' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='15' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='default_action' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='16' column='1'/>
+        <var-decl name='default_action' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='16' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='filters_version' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='17' column='1'/>
+        <var-decl name='filters_version' type-id='type-id-33' visibility='default' filepath='./Include/internal/pycore_warnings.h' line='17' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='atexit_state' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='181' column='1' id='type-id-235'>
@@ -4662,21 +5892,21 @@
         <var-decl name='callbacks' type-id='type-id-351' visibility='default' filepath='./Include/internal/pycore_interp.h' line='182' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='ncallbacks' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='183' column='1'/>
+        <var-decl name='ncallbacks' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='183' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='callback_len' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='184' column='1'/>
+        <var-decl name='callback_len' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='184' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-352' visibility='default' filepath='./Include/internal/pycore_interp.h' line='175' column='1' id='type-id-353'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='176' column='1'/>
+        <var-decl name='func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='176' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='args' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='177' column='1'/>
+        <var-decl name='args' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='177' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='kwargs' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='178' column='1'/>
+        <var-decl name='kwargs' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='178' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='atexit_callback' type-id='type-id-353' filepath='./Include/internal/pycore_interp.h' line='179' column='1' id='type-id-352'/>
@@ -4686,12 +5916,12 @@
     <pointer-type-def type-id='type-id-355' size-in-bits='64' id='type-id-356'/>
 
     <array-type-def dimensions='1' type-id='type-id-356' size-in-bits='16768' id='type-id-236'>
-      <subrange length='262' type-id='type-id-18' id='type-id-357'/>
+      <subrange length='262' type-id='type-id-19' id='type-id-357'/>
 
     </array-type-def>
     <class-decl name='_Py_bytes_state' size-in-bits='16448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='56' column='1' id='type-id-237'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='empty_string' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='57' column='1'/>
+        <var-decl name='empty_string' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='57' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='characters' type-id='type-id-358' visibility='default' filepath='./Include/internal/pycore_interp.h' line='58' column='1'/>
@@ -4699,7 +5929,7 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-359' visibility='default' filepath='./Include/cpython/bytesobject.h' line='5' column='1' id='type-id-360'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/bytesobject.h' line='6' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/bytesobject.h' line='6' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='ob_shash' type-id='type-id-117' visibility='default' filepath='./Include/cpython/bytesobject.h' line='7' column='1'/>
@@ -4712,12 +5942,12 @@
     <pointer-type-def type-id='type-id-359' size-in-bits='64' id='type-id-361'/>
 
     <array-type-def dimensions='1' type-id='type-id-361' size-in-bits='16384' id='type-id-358'>
-      <subrange length='256' type-id='type-id-18' id='type-id-362'/>
+      <subrange length='256' type-id='type-id-19' id='type-id-362'/>
 
     </array-type-def>
     <class-decl name='_Py_unicode_state' size-in-bits='16896' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='66' column='1' id='type-id-238'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='empty_string' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='68' column='1'/>
+        <var-decl name='empty_string' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='68' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='latin1' type-id='type-id-363' visibility='default' filepath='./Include/internal/pycore_interp.h' line='71' column='1'/>
@@ -4726,15 +5956,15 @@
         <var-decl name='fs_codec' type-id='type-id-364' visibility='default' filepath='./Include/internal/pycore_interp.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='16704'>
-        <var-decl name='interned' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='82' column='1'/>
+        <var-decl name='interned' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='16768'>
         <var-decl name='ids' type-id='type-id-365' visibility='default' filepath='./Include/internal/pycore_interp.h' line='85' column='1'/>
       </data-member>
     </class-decl>
 
-    <array-type-def dimensions='1' type-id='type-id-15' size-in-bits='16384' id='type-id-363'>
-      <subrange length='256' type-id='type-id-18' id='type-id-362'/>
+    <array-type-def dimensions='1' type-id='type-id-16' size-in-bits='16384' id='type-id-363'>
+      <subrange length='256' type-id='type-id-19' id='type-id-362'/>
 
     </array-type-def>
     <class-decl name='_Py_unicode_fs_codec' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='49' column='1' id='type-id-364'>
@@ -4742,7 +5972,7 @@
         <var-decl name='encoding' type-id='type-id-72' visibility='default' filepath='./Include/internal/pycore_interp.h' line='50' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='utf8' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='51' column='1'/>
+        <var-decl name='utf8' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='51' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='errors' type-id='type-id-72' visibility='default' filepath='./Include/internal/pycore_interp.h' line='52' column='1'/>
@@ -4766,7 +5996,7 @@
     <typedef-decl name='_Py_error_handler' type-id='type-id-367' filepath='./Include/cpython/fileutils.h' line='15' column='1' id='type-id-366'/>
     <class-decl name='_Py_unicode_ids' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='61' column='1' id='type-id-365'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_interp.h' line='62' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='array' type-id='type-id-86' visibility='default' filepath='./Include/internal/pycore_interp.h' line='63' column='1'/>
@@ -4774,7 +6004,7 @@
     </class-decl>
     <class-decl name='_Py_float_state' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='88' column='1' id='type-id-239'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='92' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='92' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='free_list' type-id='type-id-368' visibility='default' filepath='./Include/internal/pycore_interp.h' line='93' column='1'/>
@@ -4782,7 +6012,7 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-369' visibility='default' filepath='./Include/floatobject.h' line='15' column='1' id='type-id-370'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/floatobject.h' line='16' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/floatobject.h' line='16' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='ob_fval' type-id='type-id-371' visibility='default' filepath='./Include/floatobject.h' line='17' column='1'/>
@@ -4793,16 +6023,16 @@
     <pointer-type-def type-id='type-id-369' size-in-bits='64' id='type-id-368'/>
     <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-372' visibility='default' filepath='./Include/sliceobject.h' line='22' column='1' id='type-id-373'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/sliceobject.h' line='23' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/sliceobject.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='start' type-id='type-id-15' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
+        <var-decl name='start' type-id='type-id-16' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='stop' type-id='type-id-15' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
+        <var-decl name='stop' type-id='type-id-16' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='step' type-id='type-id-15' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
+        <var-decl name='step' type-id='type-id-16' visibility='default' filepath='./Include/sliceobject.h' line='24' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PySliceObject' type-id='type-id-373' filepath='./Include/sliceobject.h' line='25' column='1' id='type-id-372'/>
@@ -4817,7 +6047,7 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-376' visibility='default' filepath='./Include/cpython/tupleobject.h' line='5' column='1' id='type-id-377'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/tupleobject.h' line='6' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/tupleobject.h' line='6' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='ob_item' type-id='type-id-337' visibility='default' filepath='./Include/cpython/tupleobject.h' line='10' column='1'/>
@@ -4827,12 +6057,12 @@
     <pointer-type-def type-id='type-id-376' size-in-bits='64' id='type-id-378'/>
 
     <array-type-def dimensions='1' type-id='type-id-378' size-in-bits='1280' id='type-id-374'>
-      <subrange length='20' type-id='type-id-18' id='type-id-186'/>
+      <subrange length='20' type-id='type-id-19' id='type-id-186'/>
 
     </array-type-def>
 
-    <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='640' id='type-id-375'>
-      <subrange length='20' type-id='type-id-18' id='type-id-186'/>
+    <array-type-def dimensions='1' type-id='type-id-9' size-in-bits='640' id='type-id-375'>
+      <subrange length='20' type-id='type-id-19' id='type-id-186'/>
 
     </array-type-def>
     <class-decl name='_Py_list_state' size-in-bits='5184' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='121' column='1' id='type-id-242'>
@@ -4840,25 +6070,25 @@
         <var-decl name='free_list' type-id='type-id-379' visibility='default' filepath='./Include/internal/pycore_interp.h' line='122' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='123' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='123' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-380' visibility='default' filepath='./Include/cpython/listobject.h' line='5' column='1' id='type-id-381'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/listobject.h' line='6' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/listobject.h' line='6' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='ob_item' type-id='type-id-86' visibility='default' filepath='./Include/cpython/listobject.h' line='8' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='allocated' type-id='type-id-30' visibility='default' filepath='./Include/cpython/listobject.h' line='21' column='1'/>
+        <var-decl name='allocated' type-id='type-id-31' visibility='default' filepath='./Include/cpython/listobject.h' line='21' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyListObject' type-id='type-id-381' filepath='./Include/cpython/listobject.h' line='22' column='1' id='type-id-380'/>
     <pointer-type-def type-id='type-id-380' size-in-bits='64' id='type-id-382'/>
 
     <array-type-def dimensions='1' type-id='type-id-382' size-in-bits='5120' id='type-id-379'>
-      <subrange length='80' type-id='type-id-18' id='type-id-383'/>
+      <subrange length='80' type-id='type-id-19' id='type-id-383'/>
 
     </array-type-def>
     <class-decl name='_Py_dict_state' size-in-bits='10368' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='130' column='1' id='type-id-243'>
@@ -4866,24 +6096,24 @@
         <var-decl name='free_list' type-id='type-id-384' visibility='default' filepath='./Include/internal/pycore_interp.h' line='132' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='133' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='133' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5184'>
         <var-decl name='keys_free_list' type-id='type-id-385' visibility='default' filepath='./Include/internal/pycore_interp.h' line='134' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10304'>
-        <var-decl name='keys_numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='135' column='1'/>
+        <var-decl name='keys_numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='135' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='384' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-386' visibility='default' filepath='./Include/cpython/dictobject.h' line='10' column='1' id='type-id-387'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/cpython/dictobject.h' line='11' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/cpython/dictobject.h' line='11' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='ma_used' type-id='type-id-30' visibility='default' filepath='./Include/cpython/dictobject.h' line='14' column='1'/>
+        <var-decl name='ma_used' type-id='type-id-31' visibility='default' filepath='./Include/cpython/dictobject.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='ma_version_tag' type-id='type-id-21' visibility='default' filepath='./Include/cpython/dictobject.h' line='18' column='1'/>
+        <var-decl name='ma_version_tag' type-id='type-id-22' visibility='default' filepath='./Include/cpython/dictobject.h' line='18' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
         <var-decl name='ma_keys' type-id='type-id-388' visibility='default' filepath='./Include/cpython/dictobject.h' line='20' column='1'/>
@@ -4899,12 +6129,12 @@
     <pointer-type-def type-id='type-id-386' size-in-bits='64' id='type-id-391'/>
 
     <array-type-def dimensions='1' type-id='type-id-391' size-in-bits='5120' id='type-id-384'>
-      <subrange length='80' type-id='type-id-18' id='type-id-383'/>
+      <subrange length='80' type-id='type-id-19' id='type-id-383'/>
 
     </array-type-def>
 
     <array-type-def dimensions='1' type-id='type-id-388' size-in-bits='5120' id='type-id-385'>
-      <subrange length='80' type-id='type-id-18' id='type-id-383'/>
+      <subrange length='80' type-id='type-id-19' id='type-id-383'/>
 
     </array-type-def>
     <class-decl name='_Py_frame_state' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='138' column='1' id='type-id-244'>
@@ -4912,7 +6142,7 @@
         <var-decl name='free_list' type-id='type-id-223' visibility='default' filepath='./Include/internal/pycore_interp.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_Py_async_gen_state' size-in-bits='10368' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='148' column='1' id='type-id-245'>
@@ -4920,27 +6150,27 @@
         <var-decl name='value_freelist' type-id='type-id-392' visibility='default' filepath='./Include/internal/pycore_interp.h' line='153' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='value_numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='154' column='1'/>
+        <var-decl name='value_numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='154' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5184'>
         <var-decl name='asend_freelist' type-id='type-id-393' visibility='default' filepath='./Include/internal/pycore_interp.h' line='156' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10304'>
-        <var-decl name='asend_numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='157' column='1'/>
+        <var-decl name='asend_numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='157' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_PyAsyncGenWrappedValue' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-394'/>
     <pointer-type-def type-id='type-id-394' size-in-bits='64' id='type-id-395'/>
 
     <array-type-def dimensions='1' type-id='type-id-395' size-in-bits='5120' id='type-id-392'>
-      <subrange length='80' type-id='type-id-18' id='type-id-383'/>
+      <subrange length='80' type-id='type-id-19' id='type-id-383'/>
 
     </array-type-def>
     <class-decl name='PyAsyncGenASend' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-396'/>
     <pointer-type-def type-id='type-id-396' size-in-bits='64' id='type-id-397'/>
 
     <array-type-def dimensions='1' type-id='type-id-397' size-in-bits='5120' id='type-id-393'>
-      <subrange length='80' type-id='type-id-18' id='type-id-383'/>
+      <subrange length='80' type-id='type-id-19' id='type-id-383'/>
 
     </array-type-def>
     <class-decl name='_Py_context_state' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='160' column='1' id='type-id-246'>
@@ -4948,7 +6178,7 @@
         <var-decl name='freelist' type-id='type-id-398' visibility='default' filepath='./Include/internal/pycore_interp.h' line='162' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='163' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='163' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_pycontextobject' size-in-bits='384' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-399'/>
@@ -4956,33 +6186,33 @@
     <pointer-type-def type-id='type-id-400' size-in-bits='64' id='type-id-398'/>
     <class-decl name='_Py_exc_state' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='166' column='1' id='type-id-247'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='errnomap' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='168' column='1'/>
+        <var-decl name='errnomap' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='168' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='memerrors_freelist' type-id='type-id-401' visibility='default' filepath='./Include/internal/pycore_interp.h' line='169' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='memerrors_numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='170' column='1'/>
+        <var-decl name='memerrors_numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='170' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='512' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-402' visibility='default' filepath='./Include/cpython/pyerrors.h' line='13' column='1' id='type-id-403'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='args' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='args' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='context' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='context' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='cause' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
+        <var-decl name='cause' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
         <var-decl name='suppress_context' type-id='type-id-1' visibility='default' filepath='./Include/cpython/pyerrors.h' line='14' column='1'/>
@@ -4992,709 +6222,709 @@
     <pointer-type-def type-id='type-id-402' size-in-bits='64' id='type-id-401'/>
     <class-decl name='ast_state' size-in-bits='15040' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='13' column='1' id='type-id-248'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='14' column='1'/>
+        <var-decl name='initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='AST_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='15' column='1'/>
+        <var-decl name='AST_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='15' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='Add_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='16' column='1'/>
+        <var-decl name='Add_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='16' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='Add_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='17' column='1'/>
+        <var-decl name='Add_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='17' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='And_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='18' column='1'/>
+        <var-decl name='And_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='18' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='And_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='19' column='1'/>
+        <var-decl name='And_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='19' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='AnnAssign_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='20' column='1'/>
+        <var-decl name='AnnAssign_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='Assert_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='21' column='1'/>
+        <var-decl name='Assert_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='21' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='Assign_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='22' column='1'/>
+        <var-decl name='Assign_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='AsyncFor_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='23' column='1'/>
+        <var-decl name='AsyncFor_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='AsyncFunctionDef_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='24' column='1'/>
+        <var-decl name='AsyncFunctionDef_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='AsyncWith_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='25' column='1'/>
+        <var-decl name='AsyncWith_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='Attribute_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='26' column='1'/>
+        <var-decl name='Attribute_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='AugAssign_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='27' column='1'/>
+        <var-decl name='AugAssign_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='27' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='Await_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='28' column='1'/>
+        <var-decl name='Await_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='28' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='BinOp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='29' column='1'/>
+        <var-decl name='BinOp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1024'>
-        <var-decl name='BitAnd_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='30' column='1'/>
+        <var-decl name='BitAnd_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1088'>
-        <var-decl name='BitAnd_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='31' column='1'/>
+        <var-decl name='BitAnd_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='BitOr_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='32' column='1'/>
+        <var-decl name='BitOr_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='BitOr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='33' column='1'/>
+        <var-decl name='BitOr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='33' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='BitXor_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='34' column='1'/>
+        <var-decl name='BitXor_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='34' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='BitXor_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='35' column='1'/>
+        <var-decl name='BitXor_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='BoolOp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='36' column='1'/>
+        <var-decl name='BoolOp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='36' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='Break_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='37' column='1'/>
+        <var-decl name='Break_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='37' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='Call_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='38' column='1'/>
+        <var-decl name='Call_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='ClassDef_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='39' column='1'/>
+        <var-decl name='ClassDef_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='39' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='Compare_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='40' column='1'/>
+        <var-decl name='Compare_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='40' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='Constant_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='41' column='1'/>
+        <var-decl name='Constant_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='41' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='Continue_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='42' column='1'/>
+        <var-decl name='Continue_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='42' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='Del_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='43' column='1'/>
+        <var-decl name='Del_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='Del_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='44' column='1'/>
+        <var-decl name='Del_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='Delete_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='45' column='1'/>
+        <var-decl name='Delete_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='45' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='DictComp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='46' column='1'/>
+        <var-decl name='DictComp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='46' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='Dict_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='47' column='1'/>
+        <var-decl name='Dict_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='47' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2176'>
-        <var-decl name='Div_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='48' column='1'/>
+        <var-decl name='Div_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='48' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2240'>
-        <var-decl name='Div_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='49' column='1'/>
+        <var-decl name='Div_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='49' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2304'>
-        <var-decl name='Eq_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='50' column='1'/>
+        <var-decl name='Eq_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='50' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2368'>
-        <var-decl name='Eq_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='51' column='1'/>
+        <var-decl name='Eq_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='51' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2432'>
-        <var-decl name='ExceptHandler_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='52' column='1'/>
+        <var-decl name='ExceptHandler_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='52' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2496'>
-        <var-decl name='Expr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='53' column='1'/>
+        <var-decl name='Expr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='53' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2560'>
-        <var-decl name='Expression_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='54' column='1'/>
+        <var-decl name='Expression_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='54' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2624'>
-        <var-decl name='FloorDiv_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='55' column='1'/>
+        <var-decl name='FloorDiv_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='55' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2688'>
-        <var-decl name='FloorDiv_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='56' column='1'/>
+        <var-decl name='FloorDiv_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='56' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2752'>
-        <var-decl name='For_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='57' column='1'/>
+        <var-decl name='For_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='57' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2816'>
-        <var-decl name='FormattedValue_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='58' column='1'/>
+        <var-decl name='FormattedValue_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='58' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2880'>
-        <var-decl name='FunctionDef_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='59' column='1'/>
+        <var-decl name='FunctionDef_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='59' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2944'>
-        <var-decl name='FunctionType_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='60' column='1'/>
+        <var-decl name='FunctionType_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='60' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3008'>
-        <var-decl name='GeneratorExp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='61' column='1'/>
+        <var-decl name='GeneratorExp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='61' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3072'>
-        <var-decl name='Global_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='62' column='1'/>
+        <var-decl name='Global_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3136'>
-        <var-decl name='GtE_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='63' column='1'/>
+        <var-decl name='GtE_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3200'>
-        <var-decl name='GtE_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='64' column='1'/>
+        <var-decl name='GtE_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='64' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3264'>
-        <var-decl name='Gt_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='65' column='1'/>
+        <var-decl name='Gt_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3328'>
-        <var-decl name='Gt_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='66' column='1'/>
+        <var-decl name='Gt_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3392'>
-        <var-decl name='IfExp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='67' column='1'/>
+        <var-decl name='IfExp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='67' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3456'>
-        <var-decl name='If_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='68' column='1'/>
+        <var-decl name='If_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='68' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3520'>
-        <var-decl name='ImportFrom_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='69' column='1'/>
+        <var-decl name='ImportFrom_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='69' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3584'>
-        <var-decl name='Import_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='70' column='1'/>
+        <var-decl name='Import_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3648'>
-        <var-decl name='In_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='71' column='1'/>
+        <var-decl name='In_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='71' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3712'>
-        <var-decl name='In_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='72' column='1'/>
+        <var-decl name='In_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3776'>
-        <var-decl name='Interactive_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='73' column='1'/>
+        <var-decl name='Interactive_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='73' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3840'>
-        <var-decl name='Invert_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='74' column='1'/>
+        <var-decl name='Invert_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='74' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3904'>
-        <var-decl name='Invert_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='75' column='1'/>
+        <var-decl name='Invert_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='75' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='3968'>
-        <var-decl name='IsNot_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='76' column='1'/>
+        <var-decl name='IsNot_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='76' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4032'>
-        <var-decl name='IsNot_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='77' column='1'/>
+        <var-decl name='IsNot_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='77' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4096'>
-        <var-decl name='Is_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='78' column='1'/>
+        <var-decl name='Is_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4160'>
-        <var-decl name='Is_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='79' column='1'/>
+        <var-decl name='Is_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='79' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4224'>
-        <var-decl name='JoinedStr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='80' column='1'/>
+        <var-decl name='JoinedStr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='80' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4288'>
-        <var-decl name='LShift_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='81' column='1'/>
+        <var-decl name='LShift_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='81' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4352'>
-        <var-decl name='LShift_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='82' column='1'/>
+        <var-decl name='LShift_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4416'>
-        <var-decl name='Lambda_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='83' column='1'/>
+        <var-decl name='Lambda_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='83' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4480'>
-        <var-decl name='ListComp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='84' column='1'/>
+        <var-decl name='ListComp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='84' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4544'>
-        <var-decl name='List_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='85' column='1'/>
+        <var-decl name='List_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4608'>
-        <var-decl name='Load_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='86' column='1'/>
+        <var-decl name='Load_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4672'>
-        <var-decl name='Load_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='87' column='1'/>
+        <var-decl name='Load_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='87' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4736'>
-        <var-decl name='LtE_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='88' column='1'/>
+        <var-decl name='LtE_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='88' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4800'>
-        <var-decl name='LtE_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='89' column='1'/>
+        <var-decl name='LtE_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='89' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4864'>
-        <var-decl name='Lt_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='90' column='1'/>
+        <var-decl name='Lt_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='90' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4928'>
-        <var-decl name='Lt_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='91' column='1'/>
+        <var-decl name='Lt_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='91' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='4992'>
-        <var-decl name='MatMult_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='92' column='1'/>
+        <var-decl name='MatMult_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='92' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5056'>
-        <var-decl name='MatMult_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='93' column='1'/>
+        <var-decl name='MatMult_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='93' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='MatchAs_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='94' column='1'/>
+        <var-decl name='MatchAs_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='94' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5184'>
-        <var-decl name='MatchClass_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='95' column='1'/>
+        <var-decl name='MatchClass_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='95' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5248'>
-        <var-decl name='MatchMapping_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='96' column='1'/>
+        <var-decl name='MatchMapping_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='96' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5312'>
-        <var-decl name='MatchOr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='97' column='1'/>
+        <var-decl name='MatchOr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='97' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5376'>
-        <var-decl name='MatchSequence_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='98' column='1'/>
+        <var-decl name='MatchSequence_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='98' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5440'>
-        <var-decl name='MatchSingleton_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='99' column='1'/>
+        <var-decl name='MatchSingleton_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='99' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5504'>
-        <var-decl name='MatchStar_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='100' column='1'/>
+        <var-decl name='MatchStar_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='100' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5568'>
-        <var-decl name='MatchValue_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='101' column='1'/>
+        <var-decl name='MatchValue_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5632'>
-        <var-decl name='Match_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='102' column='1'/>
+        <var-decl name='Match_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='102' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5696'>
-        <var-decl name='Mod_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='103' column='1'/>
+        <var-decl name='Mod_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='103' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5760'>
-        <var-decl name='Mod_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='104' column='1'/>
+        <var-decl name='Mod_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='104' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5824'>
-        <var-decl name='Module_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='105' column='1'/>
+        <var-decl name='Module_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5888'>
-        <var-decl name='Mult_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='106' column='1'/>
+        <var-decl name='Mult_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='106' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5952'>
-        <var-decl name='Mult_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='107' column='1'/>
+        <var-decl name='Mult_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6016'>
-        <var-decl name='Name_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='108' column='1'/>
+        <var-decl name='Name_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='108' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6080'>
-        <var-decl name='NamedExpr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='109' column='1'/>
+        <var-decl name='NamedExpr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='109' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6144'>
-        <var-decl name='Nonlocal_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='110' column='1'/>
+        <var-decl name='Nonlocal_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='110' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6208'>
-        <var-decl name='NotEq_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='111' column='1'/>
+        <var-decl name='NotEq_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='111' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6272'>
-        <var-decl name='NotEq_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='112' column='1'/>
+        <var-decl name='NotEq_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='112' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6336'>
-        <var-decl name='NotIn_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='113' column='1'/>
+        <var-decl name='NotIn_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='113' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6400'>
-        <var-decl name='NotIn_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='114' column='1'/>
+        <var-decl name='NotIn_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6464'>
-        <var-decl name='Not_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='115' column='1'/>
+        <var-decl name='Not_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='115' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6528'>
-        <var-decl name='Not_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='116' column='1'/>
+        <var-decl name='Not_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='116' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6592'>
-        <var-decl name='Or_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='117' column='1'/>
+        <var-decl name='Or_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='117' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6656'>
-        <var-decl name='Or_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='118' column='1'/>
+        <var-decl name='Or_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='118' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6720'>
-        <var-decl name='Pass_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='119' column='1'/>
+        <var-decl name='Pass_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='119' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6784'>
-        <var-decl name='Pow_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='120' column='1'/>
+        <var-decl name='Pow_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='120' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6848'>
-        <var-decl name='Pow_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='121' column='1'/>
+        <var-decl name='Pow_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='121' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6912'>
-        <var-decl name='RShift_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='122' column='1'/>
+        <var-decl name='RShift_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='122' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6976'>
-        <var-decl name='RShift_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='123' column='1'/>
+        <var-decl name='RShift_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='123' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7040'>
-        <var-decl name='Raise_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='124' column='1'/>
+        <var-decl name='Raise_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='124' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7104'>
-        <var-decl name='Return_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='125' column='1'/>
+        <var-decl name='Return_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='125' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7168'>
-        <var-decl name='SetComp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='126' column='1'/>
+        <var-decl name='SetComp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='126' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7232'>
-        <var-decl name='Set_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='127' column='1'/>
+        <var-decl name='Set_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='127' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7296'>
-        <var-decl name='Slice_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='128' column='1'/>
+        <var-decl name='Slice_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='128' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7360'>
-        <var-decl name='Starred_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='129' column='1'/>
+        <var-decl name='Starred_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='129' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7424'>
-        <var-decl name='Store_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='130' column='1'/>
+        <var-decl name='Store_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='130' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7488'>
-        <var-decl name='Store_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='131' column='1'/>
+        <var-decl name='Store_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='131' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7552'>
-        <var-decl name='Sub_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='132' column='1'/>
+        <var-decl name='Sub_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='132' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7616'>
-        <var-decl name='Sub_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='133' column='1'/>
+        <var-decl name='Sub_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='133' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7680'>
-        <var-decl name='Subscript_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='134' column='1'/>
+        <var-decl name='Subscript_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='134' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7744'>
-        <var-decl name='Try_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='135' column='1'/>
+        <var-decl name='Try_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='135' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7808'>
-        <var-decl name='Tuple_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='136' column='1'/>
+        <var-decl name='Tuple_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7872'>
-        <var-decl name='TypeIgnore_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='137' column='1'/>
+        <var-decl name='TypeIgnore_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7936'>
-        <var-decl name='UAdd_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='138' column='1'/>
+        <var-decl name='UAdd_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='138' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8000'>
-        <var-decl name='UAdd_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='139' column='1'/>
+        <var-decl name='UAdd_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8064'>
-        <var-decl name='USub_singleton' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='140' column='1'/>
+        <var-decl name='USub_singleton' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='140' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8128'>
-        <var-decl name='USub_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='141' column='1'/>
+        <var-decl name='USub_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='141' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8192'>
-        <var-decl name='UnaryOp_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='142' column='1'/>
+        <var-decl name='UnaryOp_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='142' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8256'>
-        <var-decl name='While_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='143' column='1'/>
+        <var-decl name='While_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='143' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8320'>
-        <var-decl name='With_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='144' column='1'/>
+        <var-decl name='With_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8384'>
-        <var-decl name='YieldFrom_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='145' column='1'/>
+        <var-decl name='YieldFrom_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='145' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8448'>
-        <var-decl name='Yield_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='146' column='1'/>
+        <var-decl name='Yield_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='146' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8512'>
-        <var-decl name='__dict__' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='147' column='1'/>
+        <var-decl name='__dict__' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='147' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8576'>
-        <var-decl name='__doc__' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='148' column='1'/>
+        <var-decl name='__doc__' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8640'>
-        <var-decl name='__match_args__' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='149' column='1'/>
+        <var-decl name='__match_args__' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='149' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8704'>
-        <var-decl name='__module__' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='150' column='1'/>
+        <var-decl name='__module__' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='150' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8768'>
-        <var-decl name='_attributes' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='151' column='1'/>
+        <var-decl name='_attributes' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='151' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8832'>
-        <var-decl name='_fields' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='152' column='1'/>
+        <var-decl name='_fields' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='152' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8896'>
-        <var-decl name='alias_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='153' column='1'/>
+        <var-decl name='alias_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='153' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='8960'>
-        <var-decl name='annotation' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='154' column='1'/>
+        <var-decl name='annotation' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='154' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9024'>
-        <var-decl name='arg' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='155' column='1'/>
+        <var-decl name='arg' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='155' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9088'>
-        <var-decl name='arg_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='156' column='1'/>
+        <var-decl name='arg_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='156' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9152'>
-        <var-decl name='args' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='157' column='1'/>
+        <var-decl name='args' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='157' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9216'>
-        <var-decl name='argtypes' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='158' column='1'/>
+        <var-decl name='argtypes' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='158' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9280'>
-        <var-decl name='arguments_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='159' column='1'/>
+        <var-decl name='arguments_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='159' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9344'>
-        <var-decl name='asname' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='160' column='1'/>
+        <var-decl name='asname' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='160' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9408'>
-        <var-decl name='ast' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='161' column='1'/>
+        <var-decl name='ast' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='161' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9472'>
-        <var-decl name='attr' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='162' column='1'/>
+        <var-decl name='attr' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='162' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9536'>
-        <var-decl name='bases' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='163' column='1'/>
+        <var-decl name='bases' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='163' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9600'>
-        <var-decl name='body' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='164' column='1'/>
+        <var-decl name='body' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='164' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9664'>
-        <var-decl name='boolop_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='165' column='1'/>
+        <var-decl name='boolop_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='165' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9728'>
-        <var-decl name='cases' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='166' column='1'/>
+        <var-decl name='cases' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='166' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9792'>
-        <var-decl name='cause' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='167' column='1'/>
+        <var-decl name='cause' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='167' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9856'>
-        <var-decl name='cls' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='168' column='1'/>
+        <var-decl name='cls' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='168' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9920'>
-        <var-decl name='cmpop_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='169' column='1'/>
+        <var-decl name='cmpop_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='169' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='9984'>
-        <var-decl name='col_offset' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='170' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='170' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10048'>
-        <var-decl name='comparators' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='171' column='1'/>
+        <var-decl name='comparators' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='171' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10112'>
-        <var-decl name='comprehension_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='172' column='1'/>
+        <var-decl name='comprehension_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='172' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10176'>
-        <var-decl name='context_expr' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='173' column='1'/>
+        <var-decl name='context_expr' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='173' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10240'>
-        <var-decl name='conversion' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='174' column='1'/>
+        <var-decl name='conversion' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='174' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10304'>
-        <var-decl name='ctx' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='175' column='1'/>
+        <var-decl name='ctx' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='175' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10368'>
-        <var-decl name='decorator_list' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='176' column='1'/>
+        <var-decl name='decorator_list' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='176' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10432'>
-        <var-decl name='defaults' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='177' column='1'/>
+        <var-decl name='defaults' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='177' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10496'>
-        <var-decl name='elt' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='178' column='1'/>
+        <var-decl name='elt' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='178' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10560'>
-        <var-decl name='elts' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='179' column='1'/>
+        <var-decl name='elts' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='179' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10624'>
-        <var-decl name='end_col_offset' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='180' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='180' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10688'>
-        <var-decl name='end_lineno' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='181' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='181' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10752'>
-        <var-decl name='exc' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='182' column='1'/>
+        <var-decl name='exc' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='182' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10816'>
-        <var-decl name='excepthandler_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='183' column='1'/>
+        <var-decl name='excepthandler_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='183' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10880'>
-        <var-decl name='expr_context_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='184' column='1'/>
+        <var-decl name='expr_context_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='184' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10944'>
-        <var-decl name='expr_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='185' column='1'/>
+        <var-decl name='expr_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='185' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11008'>
-        <var-decl name='finalbody' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='186' column='1'/>
+        <var-decl name='finalbody' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='186' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11072'>
-        <var-decl name='format_spec' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='187' column='1'/>
+        <var-decl name='format_spec' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='187' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11136'>
-        <var-decl name='func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='188' column='1'/>
+        <var-decl name='func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='188' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11200'>
-        <var-decl name='generators' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='189' column='1'/>
+        <var-decl name='generators' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='189' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11264'>
-        <var-decl name='guard' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='190' column='1'/>
+        <var-decl name='guard' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='190' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11328'>
-        <var-decl name='handlers' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='191' column='1'/>
+        <var-decl name='handlers' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='191' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11392'>
-        <var-decl name='id' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='192' column='1'/>
+        <var-decl name='id' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='192' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11456'>
-        <var-decl name='ifs' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='193' column='1'/>
+        <var-decl name='ifs' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='193' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11520'>
-        <var-decl name='is_async' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='194' column='1'/>
+        <var-decl name='is_async' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='194' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11584'>
-        <var-decl name='items' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='195' column='1'/>
+        <var-decl name='items' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='195' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11648'>
-        <var-decl name='iter' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='196' column='1'/>
+        <var-decl name='iter' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='196' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11712'>
-        <var-decl name='key' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='197' column='1'/>
+        <var-decl name='key' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='197' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11776'>
-        <var-decl name='keys' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='198' column='1'/>
+        <var-decl name='keys' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='198' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11840'>
-        <var-decl name='keyword_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='199' column='1'/>
+        <var-decl name='keyword_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='199' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11904'>
-        <var-decl name='keywords' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='200' column='1'/>
+        <var-decl name='keywords' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='200' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11968'>
-        <var-decl name='kind' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='201' column='1'/>
+        <var-decl name='kind' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='201' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12032'>
-        <var-decl name='kw_defaults' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='202' column='1'/>
+        <var-decl name='kw_defaults' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='202' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12096'>
-        <var-decl name='kwarg' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='203' column='1'/>
+        <var-decl name='kwarg' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='203' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12160'>
-        <var-decl name='kwd_attrs' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='204' column='1'/>
+        <var-decl name='kwd_attrs' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='204' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12224'>
-        <var-decl name='kwd_patterns' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='205' column='1'/>
+        <var-decl name='kwd_patterns' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='205' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12288'>
-        <var-decl name='kwonlyargs' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='206' column='1'/>
+        <var-decl name='kwonlyargs' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='206' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12352'>
-        <var-decl name='left' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='207' column='1'/>
+        <var-decl name='left' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='207' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12416'>
-        <var-decl name='level' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='208' column='1'/>
+        <var-decl name='level' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='208' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12480'>
-        <var-decl name='lineno' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='209' column='1'/>
+        <var-decl name='lineno' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='209' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12544'>
-        <var-decl name='lower' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='210' column='1'/>
+        <var-decl name='lower' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='210' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12608'>
-        <var-decl name='match_case_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='211' column='1'/>
+        <var-decl name='match_case_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='211' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12672'>
-        <var-decl name='mod_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='212' column='1'/>
+        <var-decl name='mod_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='212' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12736'>
-        <var-decl name='module' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='213' column='1'/>
+        <var-decl name='module' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='213' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12800'>
-        <var-decl name='msg' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='214' column='1'/>
+        <var-decl name='msg' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='214' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12864'>
-        <var-decl name='name' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='215' column='1'/>
+        <var-decl name='name' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='215' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12928'>
-        <var-decl name='names' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='216' column='1'/>
+        <var-decl name='names' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='216' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='12992'>
-        <var-decl name='op' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='217' column='1'/>
+        <var-decl name='op' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='217' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13056'>
-        <var-decl name='operand' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='218' column='1'/>
+        <var-decl name='operand' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='218' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13120'>
-        <var-decl name='operator_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='219' column='1'/>
+        <var-decl name='operator_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='219' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13184'>
-        <var-decl name='ops' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='220' column='1'/>
+        <var-decl name='ops' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='220' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13248'>
-        <var-decl name='optional_vars' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='221' column='1'/>
+        <var-decl name='optional_vars' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='221' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13312'>
-        <var-decl name='orelse' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='222' column='1'/>
+        <var-decl name='orelse' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='222' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13376'>
-        <var-decl name='pattern' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='223' column='1'/>
+        <var-decl name='pattern' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13440'>
-        <var-decl name='pattern_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='224' column='1'/>
+        <var-decl name='pattern_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='224' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13504'>
-        <var-decl name='patterns' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='225' column='1'/>
+        <var-decl name='patterns' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='225' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13568'>
-        <var-decl name='posonlyargs' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='226' column='1'/>
+        <var-decl name='posonlyargs' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='226' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13632'>
-        <var-decl name='rest' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='227' column='1'/>
+        <var-decl name='rest' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='227' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13696'>
-        <var-decl name='returns' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='228' column='1'/>
+        <var-decl name='returns' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='228' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13760'>
-        <var-decl name='right' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='229' column='1'/>
+        <var-decl name='right' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='229' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13824'>
-        <var-decl name='simple' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='230' column='1'/>
+        <var-decl name='simple' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='230' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13888'>
-        <var-decl name='slice' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='231' column='1'/>
+        <var-decl name='slice' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='231' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='13952'>
-        <var-decl name='step' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='232' column='1'/>
+        <var-decl name='step' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='232' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14016'>
-        <var-decl name='stmt_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='233' column='1'/>
+        <var-decl name='stmt_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14080'>
-        <var-decl name='subject' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='234' column='1'/>
+        <var-decl name='subject' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='234' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14144'>
-        <var-decl name='tag' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='235' column='1'/>
+        <var-decl name='tag' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='235' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14208'>
-        <var-decl name='target' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='236' column='1'/>
+        <var-decl name='target' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='236' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14272'>
-        <var-decl name='targets' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='237' column='1'/>
+        <var-decl name='targets' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='237' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14336'>
-        <var-decl name='test' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='238' column='1'/>
+        <var-decl name='test' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='238' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14400'>
-        <var-decl name='type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='239' column='1'/>
+        <var-decl name='type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='239' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14464'>
-        <var-decl name='type_comment' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='240' column='1'/>
+        <var-decl name='type_comment' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='240' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14528'>
-        <var-decl name='type_ignore_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='241' column='1'/>
+        <var-decl name='type_ignore_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='241' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14592'>
-        <var-decl name='type_ignores' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='242' column='1'/>
+        <var-decl name='type_ignores' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='242' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14656'>
-        <var-decl name='unaryop_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='243' column='1'/>
+        <var-decl name='unaryop_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='243' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14720'>
-        <var-decl name='upper' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='244' column='1'/>
+        <var-decl name='upper' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14784'>
-        <var-decl name='value' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='245' column='1'/>
+        <var-decl name='value' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='245' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14848'>
-        <var-decl name='values' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='246' column='1'/>
+        <var-decl name='values' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='246' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14912'>
-        <var-decl name='vararg' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='247' column='1'/>
+        <var-decl name='vararg' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='247' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='14976'>
-        <var-decl name='withitem_type' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='248' column='1'/>
+        <var-decl name='withitem_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_ast_state.h' line='248' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='type_cache' size-in-bits='786432' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='199' column='1' id='type-id-249'>
@@ -5704,205 +6934,238 @@
     </class-decl>
     <class-decl name='type_cache_entry' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='190' column='1' id='type-id-405'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='version' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_interp.h' line='191' column='1'/>
+        <var-decl name='version' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_interp.h' line='191' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='name' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='192' column='1'/>
+        <var-decl name='name' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='192' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='value' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='193' column='1'/>
+        <var-decl name='value' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='193' column='1'/>
       </data-member>
     </class-decl>
 
     <array-type-def dimensions='1' type-id='type-id-405' size-in-bits='786432' id='type-id-404'>
-      <subrange length='4096' type-id='type-id-18' id='type-id-406'/>
+      <subrange length='4096' type-id='type-id-19' id='type-id-406'/>
 
     </array-type-def>
     <function-decl name='_PyObject_Call_Prepend' mangled-name='_PyObject_Call_Prepend' filepath='Objects/call.c' line='405' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Call_Prepend'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/call.c' line='405' column='1'/>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='405' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/call.c' line='406' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='406' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='406' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='405' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/call.c' line='406' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='406' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='406' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallObject' mangled-name='PyObject_CallObject' filepath='Objects/call.c' line='387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallObject'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='387' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='387' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='387' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='387' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_CallObjectWithKeywords' mangled-name='PyEval_CallObjectWithKeywords' filepath='Objects/call.c' line='354' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_CallObjectWithKeywords'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='354' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='355' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='354' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='355' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='355' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyFunction_Vectorcall' mangled-name='_PyFunction_Vectorcall' filepath='Objects/call.c' line='332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFunction_Vectorcall'>
-      <parameter type-id='type-id-15' name='func' filepath='Objects/call.c' line='332' column='1'/>
+      <parameter type-id='type-id-16' name='func' filepath='Objects/call.c' line='332' column='1'/>
       <parameter type-id='type-id-156' name='stack' filepath='Objects/call.c' line='332' column='1'/>
       <parameter type-id='type-id-157' name='nargsf' filepath='Objects/call.c' line='333' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Objects/call.c' line='333' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Objects/call.c' line='333' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCFunction_Call' mangled-name='PyCFunction_Call' filepath='Objects/call.c' line='322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_Call'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='354' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='355' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_Call' mangled-name='PyObject_Call' filepath='Objects/call.c' line='314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Call'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='354' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='355' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='322' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='322' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='322' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_Call' mangled-name='_PyObject_Call' filepath='Objects/call.c' line='276' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Call'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/call.c' line='276' column='1'/>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='276' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='277' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='277' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='276' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='277' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='277' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyVectorcall_Call' mangled-name='PyVectorcall_Call' filepath='Objects/call.c' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyVectorcall_Call'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='229' column='1'/>
-      <parameter type-id='type-id-15' name='tuple' filepath='Objects/call.c' line='229' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='229' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='229' column='1'/>
+      <parameter type-id='type-id-16' name='tuple' filepath='Objects/call.c' line='229' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='229' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_MakeTpCall' mangled-name='_PyObject_MakeTpCall' filepath='Objects/call.c' line='171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_MakeTpCall'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/call.c' line='171' column='1'/>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='171' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='171' column='1'/>
       <parameter type-id='type-id-156' name='args' filepath='Objects/call.c' line='172' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Objects/call.c' line='172' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Objects/call.c' line='173' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Objects/call.c' line='172' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Objects/call.c' line='173' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_VectorcallDict' mangled-name='PyObject_VectorcallDict' filepath='Objects/call.c' line='162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_VectorcallDict'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='162' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='162' column='1'/>
       <parameter type-id='type-id-156' name='args' filepath='Objects/call.c' line='162' column='1'/>
       <parameter type-id='type-id-157' name='nargsf' filepath='Objects/call.c' line='163' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='163' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='163' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_FastCallDictTstate' mangled-name='_PyObject_FastCallDictTstate' filepath='Objects/call.c' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FastCallDictTstate'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/call.c' line='118' column='1'/>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='118' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='118' column='1'/>
       <parameter type-id='type-id-156' name='args' filepath='Objects/call.c' line='119' column='1'/>
       <parameter type-id='type-id-157' name='nargsf' filepath='Objects/call.c' line='119' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='120' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='120' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_CallNoArgs' mangled-name='PyObject_CallNoArgs' filepath='Objects/call.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallNoArgs'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='39' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_Py_CheckFunctionResult' mangled-name='_Py_CheckFunctionResult' filepath='Objects/call.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckFunctionResult'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/call.c' line='33' column='1'/>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='33' column='1'/>
-      <parameter type-id='type-id-15' name='result' filepath='Objects/call.c' line='34' column='1'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='33' column='1'/>
+      <parameter type-id='type-id-16' name='result' filepath='Objects/call.c' line='34' column='1'/>
       <parameter type-id='type-id-3' name='where' filepath='Objects/call.c' line='34' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyDict_Next' mangled-name='PyDict_Next' filepath='./Include/dictobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='./Include/internal/pycore_pyerrors.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='./Include/dictobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='./Include/cpython/dictobject.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='./Include/cpython/object.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='./Include/object.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_Vector' mangled-name='_PyEval_Vector' filepath='./Include/internal/pycore_ceval.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_FromArray' mangled-name='_PyTuple_FromArray' filepath='./Include/internal/pycore_tuple.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FatalErrorFormat' mangled-name='_Py_FatalErrorFormat' filepath='./Include/cpython/pyerrors.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='./Include/internal/pycore_pyerrors.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_VaBuildStack_SizeT' mangled-name='_Py_VaBuildStack_SizeT' filepath='./Include/modsupport.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_VaBuildStack' mangled-name='_Py_VaBuildStack' filepath='./Include/modsupport.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-type size-in-bits='64' id='type-id-348'>
       <parameter type-id='type-id-331'/>
       <parameter type-id='type-id-223'/>
-      <parameter type-id='type-id-8'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-271'>
       <parameter type-id='type-id-270'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-272'>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-270'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-307'>
       <parameter type-id='type-id-3'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-314'>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-274'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/capsule.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyCapsule_Type' type-id='type-id-149' mangled-name='PyCapsule_Type' visibility='default' filepath='./Include/pycapsule.h' line='21' column='1' elf-symbol-id='PyCapsule_Type'/>
     <function-decl name='PyCapsule_Import' mangled-name='PyCapsule_Import' filepath='Objects/capsule.c' line='195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_Import'>
       <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='195' column='1'/>
-      <parameter type-id='type-id-8' name='no_block' filepath='Objects/capsule.c' line='195' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-9' name='no_block' filepath='Objects/capsule.c' line='195' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyCapsule_SetContext' mangled-name='PyCapsule_SetContext' filepath='Objects/capsule.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetContext'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
+      <parameter type-id='type-id-21' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <typedef-decl name='PyCapsule_Destructor' type-id='type-id-71' filepath='./Include/pycapsule.h' line='23' column='1' id='type-id-407'/>
     <function-decl name='PyCapsule_SetDestructor' mangled-name='PyCapsule_SetDestructor' filepath='Objects/capsule.c' line='167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetDestructor'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='167' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='167' column='1'/>
       <parameter type-id='type-id-407' name='destructor' filepath='Objects/capsule.c' line='167' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCapsule_SetName' mangled-name='PyCapsule_SetName' filepath='Objects/capsule.c' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetName'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='153' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='153' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCapsule_SetPointer' mangled-name='PyCapsule_SetPointer' filepath='Objects/capsule.c' line='134' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_SetPointer'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='134' column='1'/>
+      <parameter type-id='type-id-21' name='pointer' filepath='Objects/capsule.c' line='134' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCapsule_GetContext' mangled-name='PyCapsule_GetContext' filepath='Objects/capsule.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetContext'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='122' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='122' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyCapsule_GetDestructor' mangled-name='PyCapsule_GetDestructor' filepath='Objects/capsule.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetDestructor'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='110' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='110' column='1'/>
       <return type-id='type-id-407'/>
     </function-decl>
     <function-decl name='PyCapsule_GetName' mangled-name='PyCapsule_GetName' filepath='Objects/capsule.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetName'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='98' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='98' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
     <function-decl name='PyCapsule_GetPointer' mangled-name='PyCapsule_GetPointer' filepath='Objects/capsule.c' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_GetPointer'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='80' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='80' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='80' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <function-decl name='PyCapsule_IsValid' mangled-name='PyCapsule_IsValid' filepath='Objects/capsule.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_IsValid'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyCapsule_New' mangled-name='PyCapsule_New' filepath='Objects/capsule.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_New'>
-      <parameter type-id='type-id-20' name='pointer' filepath='Objects/capsule.c' line='44' column='1'/>
+      <parameter type-id='type-id-21' name='pointer' filepath='Objects/capsule.c' line='44' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='44' column='1'/>
       <parameter type-id='type-id-407' name='destructor' filepath='Objects/capsule.c' line='44' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyCapsule_IsValid' mangled-name='PyCapsule_IsValid' filepath='Objects/capsule.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCapsule_IsValid'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/capsule.c' line='153' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/capsule.c' line='153' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/cellobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyCell_Type' type-id='type-id-149' mangled-name='PyCell_Type' visibility='default' filepath='./Include/cellobject.h' line='14' column='1' elf-symbol-id='PyCell_Type'/>
     <function-decl name='PyCell_Set' mangled-name='PyCell_Set' filepath='Objects/cellobject.c' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_Set'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <parameter type-id='type-id-16' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCell_Get' mangled-name='PyCell_Get' filepath='Objects/cellobject.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_Get'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCell_New' mangled-name='PyCell_New' filepath='Objects/cellobject.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCell_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/cellobject.c' line='7' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='./Include/object.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/classobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -5911,13 +7174,13 @@
         <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/structmember.h' line='19' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='type' type-id='type-id-8' visibility='default' filepath='./Include/structmember.h' line='20' column='1'/>
+        <var-decl name='type' type-id='type-id-9' visibility='default' filepath='./Include/structmember.h' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='offset' type-id='type-id-30' visibility='default' filepath='./Include/structmember.h' line='21' column='1'/>
+        <var-decl name='offset' type-id='type-id-31' visibility='default' filepath='./Include/structmember.h' line='21' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='flags' type-id='type-id-8' visibility='default' filepath='./Include/structmember.h' line='22' column='1'/>
+        <var-decl name='flags' type-id='type-id-9' visibility='default' filepath='./Include/structmember.h' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
         <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='./Include/structmember.h' line='23' column='1'/>
@@ -5925,246 +7188,303 @@
     </class-decl>
     <var-decl name='PyMethod_Type' type-id='type-id-149' mangled-name='PyMethod_Type' visibility='default' filepath='./Include/classobject.h' line='20' column='1' elf-symbol-id='PyMethod_Type'/>
     <var-decl name='PyInstanceMethod_Type' type-id='type-id-149' mangled-name='PyInstanceMethod_Type' visibility='default' filepath='./Include/classobject.h' line='41' column='1' elf-symbol-id='PyInstanceMethod_Type'/>
-    <function-decl name='PyInstanceMethod_Function' mangled-name='PyInstanceMethod_Function' filepath='Objects/classobject.c' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_Function'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
     <function-decl name='PyInstanceMethod_New' mangled-name='PyInstanceMethod_New' filepath='Objects/classobject.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='Objects/classobject.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_New'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='387' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='387' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/cellobject.c' line='7' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMethod_Self' mangled-name='PyMethod_Self' filepath='Objects/classobject.c' line='25' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Self'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMethod_Function' mangled-name='PyMethod_Function' filepath='Objects/classobject.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_Function'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Objects/codeobject.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PyCode_Type' type-id='type-id-149' mangled-name='PyCode_Type' visibility='default' filepath='./Include/cpython/code.h' line='111' column='1' elf-symbol-id='PyCode_Type'/>
-    <function-decl name='_PyCode_SetExtra' mangled-name='_PyCode_SetExtra' filepath='Objects/codeobject.c' line='1318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_SetExtra'>
-      <parameter type-id='type-id-15' name='code' filepath='Objects/codeobject.c' line='1318' column='1'/>
-      <parameter type-id='type-id-30' name='index' filepath='Objects/codeobject.c' line='1318' column='1'/>
-      <parameter type-id='type-id-20' name='extra' filepath='Objects/codeobject.c' line='1318' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='Objects/classobject.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMethod_New'>
+      <parameter type-id='type-id-16' name='func' filepath='Objects/classobject.c' line='99' column='1'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/classobject.c' line='99' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyCode_GetExtra' mangled-name='_PyCode_GetExtra' filepath='Objects/codeobject.c' line='1297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_GetExtra'>
-      <parameter type-id='type-id-15' name='code' filepath='Objects/codeobject.c' line='1297' column='1'/>
-      <parameter type-id='type-id-30' name='index' filepath='Objects/codeobject.c' line='1297' column='1'/>
-      <parameter type-id='type-id-197' name='extra' filepath='Objects/codeobject.c' line='1297' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyInstanceMethod_Function' mangled-name='PyInstanceMethod_Function' filepath='Objects/classobject.c' line='390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInstanceMethod_Function'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <class-decl name='_line_offsets' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='144' column='1' id='type-id-408'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ar_start' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='145' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='ar_end' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='146' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='ar_line' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='147' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='opaque' type-id='type-id-409' visibility='default' filepath='./Include/cpython/code.h' line='148' column='1'/>
-      </data-member>
-    </class-decl>
-    <class-decl name='_opaque' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='138' column='1' id='type-id-409'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='computed_line' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='139' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='lo_next' type-id='type-id-3' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='limit' type-id='type-id-3' visibility='default' filepath='./Include/cpython/code.h' line='141' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='PyCodeAddressRange' type-id='type-id-408' filepath='./Include/cpython/code.h' line='149' column='1' id='type-id-410'/>
-    <pointer-type-def type-id='type-id-410' size-in-bits='64' id='type-id-411'/>
-    <function-decl name='_PyCode_CheckLineNumber' mangled-name='_PyCode_CheckLineNumber' filepath='Objects/codeobject.c' line='1280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_CheckLineNumber'>
-      <parameter type-id='type-id-8' name='lasti' filepath='Objects/codeobject.c' line='1280' column='1'/>
-      <parameter type-id='type-id-411' name='bounds' filepath='Objects/codeobject.c' line='1280' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyObject_Call' mangled-name='PyObject_Call' filepath='./Include/abstract.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetAttr' mangled-name='PyObject_GetAttr' filepath='./Include/object.h' line='274' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_HashPointer' mangled-name='_Py_HashPointer' filepath='./Include/pyhash.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='./Include/object.h' line='283' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='./Include/object.h' line='288' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='./Include/cpython/object.h' line='300' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='./Include/object.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Objects/codeobject.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='PyCode_Type' type-id='type-id-149' mangled-name='PyCode_Type' visibility='default' filepath='./Include/cpython/code.h' line='111' column='1' elf-symbol-id='PyCode_Type'/>
+    <function-decl name='_PyCode_SetExtra' mangled-name='_PyCode_SetExtra' filepath='Objects/codeobject.c' line='1318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_SetExtra'>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/codeobject.c' line='1318' column='1'/>
+      <parameter type-id='type-id-31' name='index' filepath='Objects/codeobject.c' line='1318' column='1'/>
+      <parameter type-id='type-id-21' name='extra' filepath='Objects/codeobject.c' line='1318' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyCode_GetExtra' mangled-name='_PyCode_GetExtra' filepath='Objects/codeobject.c' line='1297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_GetExtra'>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/codeobject.c' line='1297' column='1'/>
+      <parameter type-id='type-id-31' name='index' filepath='Objects/codeobject.c' line='1297' column='1'/>
+      <parameter type-id='type-id-195' name='extra' filepath='Objects/codeobject.c' line='1297' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <class-decl name='PyCodeObject' size-in-bits='1408' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='18' column='1' id='type-id-412'>
+    <class-decl name='PyCodeObject' size-in-bits='1408' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='18' column='1' id='type-id-408'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/cpython/code.h' line='19' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='co_argcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
+        <var-decl name='co_argcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='20' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='co_posonlyargcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='21' column='1'/>
+        <var-decl name='co_posonlyargcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='21' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='co_kwonlyargcount' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='22' column='1'/>
+        <var-decl name='co_kwonlyargcount' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='co_nlocals' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1'/>
+        <var-decl name='co_nlocals' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='co_stacksize' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
+        <var-decl name='co_stacksize' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='co_flags' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='25' column='1'/>
+        <var-decl name='co_flags' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='co_firstlineno' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='26' column='1'/>
+        <var-decl name='co_firstlineno' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='co_code' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='27' column='1'/>
+        <var-decl name='co_code' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='27' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='co_consts' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1'/>
+        <var-decl name='co_consts' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='28' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='co_names' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='29' column='1'/>
+        <var-decl name='co_names' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='co_varnames' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='30' column='1'/>
+        <var-decl name='co_varnames' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='co_freevars' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='31' column='1'/>
+        <var-decl name='co_freevars' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='co_cellvars' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='32' column='1'/>
+        <var-decl name='co_cellvars' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
         <var-decl name='co_cell2arg' type-id='type-id-125' visibility='default' filepath='./Include/cpython/code.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='co_filename' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='39' column='1'/>
+        <var-decl name='co_filename' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='39' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='co_name' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='40' column='1'/>
+        <var-decl name='co_name' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='40' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='co_linetable' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='41' column='1'/>
+        <var-decl name='co_linetable' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='41' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1024'>
-        <var-decl name='co_zombieframe' type-id='type-id-20' visibility='default' filepath='./Include/cpython/code.h' line='43' column='1'/>
+        <var-decl name='co_zombieframe' type-id='type-id-21' visibility='default' filepath='./Include/cpython/code.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1088'>
-        <var-decl name='co_weakreflist' type-id='type-id-15' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1'/>
+        <var-decl name='co_weakreflist' type-id='type-id-16' visibility='default' filepath='./Include/cpython/code.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='co_extra' type-id='type-id-20' visibility='default' filepath='./Include/cpython/code.h' line='48' column='1'/>
+        <var-decl name='co_extra' type-id='type-id-21' visibility='default' filepath='./Include/cpython/code.h' line='48' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
         <var-decl name='co_opcache_map' type-id='type-id-339' visibility='default' filepath='./Include/cpython/code.h' line='60' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='co_opcache' type-id='type-id-413' visibility='default' filepath='./Include/cpython/code.h' line='61' column='1'/>
+        <var-decl name='co_opcache' type-id='type-id-409' visibility='default' filepath='./Include/cpython/code.h' line='61' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='co_opcache_flag' type-id='type-id-8' visibility='default' filepath='./Include/cpython/code.h' line='62' column='1'/>
+        <var-decl name='co_opcache_flag' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1376'>
         <var-decl name='co_opcache_size' type-id='type-id-341' visibility='default' filepath='./Include/cpython/code.h' line='63' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='_PyOpcache' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_code.h' line='19' column='1' id='type-id-414'>
+    <class-decl name='_PyOpcache' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_code.h' line='19' column='1' id='type-id-410'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='u' type-id='type-id-415' visibility='default' filepath='./Include/internal/pycore_code.h' line='23' column='1'/>
+        <var-decl name='u' type-id='type-id-411' visibility='default' filepath='./Include/internal/pycore_code.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='optimized' type-id='type-id-1' visibility='default' filepath='./Include/internal/pycore_code.h' line='24' column='1'/>
       </data-member>
     </class-decl>
-    <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_code.h' line='20' column='1' id='type-id-415'>
+    <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_code.h' line='20' column='1' id='type-id-411'>
       <data-member access='private'>
-        <var-decl name='lg' type-id='type-id-416' visibility='default' filepath='./Include/internal/pycore_code.h' line='21' column='1'/>
+        <var-decl name='lg' type-id='type-id-412' visibility='default' filepath='./Include/internal/pycore_code.h' line='21' column='1'/>
       </data-member>
       <data-member access='private'>
-        <var-decl name='la' type-id='type-id-417' visibility='default' filepath='./Include/internal/pycore_code.h' line='22' column='1'/>
+        <var-decl name='la' type-id='type-id-413' visibility='default' filepath='./Include/internal/pycore_code.h' line='22' column='1'/>
       </data-member>
     </union-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-416' visibility='default' filepath='./Include/internal/pycore_code.h' line='7' column='1' id='type-id-418'>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-412' visibility='default' filepath='./Include/internal/pycore_code.h' line='7' column='1' id='type-id-414'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ptr' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_code.h' line='8' column='1'/>
+        <var-decl name='ptr' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_code.h' line='8' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='globals_ver' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_code.h' line='9' column='1'/>
+        <var-decl name='globals_ver' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_code.h' line='9' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='builtins_ver' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_code.h' line='10' column='1'/>
+        <var-decl name='builtins_ver' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_code.h' line='10' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='_PyOpcache_LoadGlobal' type-id='type-id-418' filepath='./Include/internal/pycore_code.h' line='11' column='1' id='type-id-416'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-417' visibility='default' filepath='./Include/internal/pycore_code.h' line='13' column='1' id='type-id-419'>
+    <typedef-decl name='_PyOpcache_LoadGlobal' type-id='type-id-414' filepath='./Include/internal/pycore_code.h' line='11' column='1' id='type-id-412'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-413' visibility='default' filepath='./Include/internal/pycore_code.h' line='13' column='1' id='type-id-415'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='type' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_code.h' line='14' column='1'/>
+        <var-decl name='type' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_code.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='hint' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_code.h' line='15' column='1'/>
+        <var-decl name='hint' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_code.h' line='15' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='tp_version_tag' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_code.h' line='16' column='1'/>
+        <var-decl name='tp_version_tag' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_code.h' line='16' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='_PyOpCodeOpt_LoadAttr' type-id='type-id-419' filepath='./Include/internal/pycore_code.h' line='17' column='1' id='type-id-417'/>
-    <typedef-decl name='_PyOpcache' type-id='type-id-414' filepath='./Include/cpython/code.h' line='15' column='1' id='type-id-420'/>
-    <pointer-type-def type-id='type-id-420' size-in-bits='64' id='type-id-413'/>
-    <typedef-decl name='PyCodeObject' type-id='type-id-412' filepath='./Include/code.h' line='9' column='1' id='type-id-421'/>
-    <pointer-type-def type-id='type-id-421' size-in-bits='64' id='type-id-422'/>
+    <typedef-decl name='_PyOpCodeOpt_LoadAttr' type-id='type-id-415' filepath='./Include/internal/pycore_code.h' line='17' column='1' id='type-id-413'/>
+    <typedef-decl name='_PyOpcache' type-id='type-id-410' filepath='./Include/cpython/code.h' line='15' column='1' id='type-id-416'/>
+    <pointer-type-def type-id='type-id-416' size-in-bits='64' id='type-id-409'/>
+    <typedef-decl name='PyCodeObject' type-id='type-id-408' filepath='./Include/code.h' line='9' column='1' id='type-id-417'/>
+    <pointer-type-def type-id='type-id-417' size-in-bits='64' id='type-id-418'/>
     <function-decl name='PyCode_Addr2Line' mangled-name='PyCode_Addr2Line' filepath='Objects/codeobject.c' line='1246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Addr2Line'>
-      <parameter type-id='type-id-422' name='co' filepath='Objects/codeobject.c' line='1246' column='1'/>
-      <parameter type-id='type-id-8' name='addrq' filepath='Objects/codeobject.c' line='1246' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-418' name='co' filepath='Objects/codeobject.c' line='1246' column='1'/>
+      <parameter type-id='type-id-9' name='addrq' filepath='Objects/codeobject.c' line='1246' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyCode_ConstantKey' mangled-name='_PyCode_ConstantKey' filepath='Objects/codeobject.c' line='784' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_ConstantKey'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/codeobject.c' line='784' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/codeobject.c' line='784' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCode_NewEmpty' mangled-name='PyCode_NewEmpty' filepath='Objects/codeobject.c' line='332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_NewEmpty'>
       <parameter type-id='type-id-3' name='filename' filepath='Objects/codeobject.c' line='332' column='1'/>
       <parameter type-id='type-id-3' name='funcname' filepath='Objects/codeobject.c' line='332' column='1'/>
-      <parameter type-id='type-id-8' name='firstlineno' filepath='Objects/codeobject.c' line='332' column='1'/>
-      <return type-id='type-id-422'/>
+      <parameter type-id='type-id-9' name='firstlineno' filepath='Objects/codeobject.c' line='332' column='1'/>
+      <return type-id='type-id-418'/>
     </function-decl>
     <function-decl name='PyCode_New' mangled-name='PyCode_New' filepath='Objects/codeobject.c' line='275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_New'>
-      <parameter type-id='type-id-8' name='argcount' filepath='Objects/codeobject.c' line='275' column='1'/>
-      <parameter type-id='type-id-8' name='kwonlyargcount' filepath='Objects/codeobject.c' line='275' column='1'/>
-      <parameter type-id='type-id-8' name='nlocals' filepath='Objects/codeobject.c' line='276' column='1'/>
-      <parameter type-id='type-id-8' name='stacksize' filepath='Objects/codeobject.c' line='276' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/codeobject.c' line='276' column='1'/>
-      <parameter type-id='type-id-15' name='code' filepath='Objects/codeobject.c' line='277' column='1'/>
-      <parameter type-id='type-id-15' name='consts' filepath='Objects/codeobject.c' line='277' column='1'/>
-      <parameter type-id='type-id-15' name='names' filepath='Objects/codeobject.c' line='277' column='1'/>
-      <parameter type-id='type-id-15' name='varnames' filepath='Objects/codeobject.c' line='278' column='1'/>
-      <parameter type-id='type-id-15' name='freevars' filepath='Objects/codeobject.c' line='278' column='1'/>
-      <parameter type-id='type-id-15' name='cellvars' filepath='Objects/codeobject.c' line='278' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Objects/codeobject.c' line='279' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/codeobject.c' line='279' column='1'/>
-      <parameter type-id='type-id-8' name='firstlineno' filepath='Objects/codeobject.c' line='279' column='1'/>
-      <parameter type-id='type-id-15' name='linetable' filepath='Objects/codeobject.c' line='280' column='1'/>
-      <return type-id='type-id-422'/>
+      <parameter type-id='type-id-9' name='argcount' filepath='Objects/codeobject.c' line='275' column='1'/>
+      <parameter type-id='type-id-9' name='kwonlyargcount' filepath='Objects/codeobject.c' line='275' column='1'/>
+      <parameter type-id='type-id-9' name='nlocals' filepath='Objects/codeobject.c' line='276' column='1'/>
+      <parameter type-id='type-id-9' name='stacksize' filepath='Objects/codeobject.c' line='276' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/codeobject.c' line='276' column='1'/>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/codeobject.c' line='277' column='1'/>
+      <parameter type-id='type-id-16' name='consts' filepath='Objects/codeobject.c' line='277' column='1'/>
+      <parameter type-id='type-id-16' name='names' filepath='Objects/codeobject.c' line='277' column='1'/>
+      <parameter type-id='type-id-16' name='varnames' filepath='Objects/codeobject.c' line='278' column='1'/>
+      <parameter type-id='type-id-16' name='freevars' filepath='Objects/codeobject.c' line='278' column='1'/>
+      <parameter type-id='type-id-16' name='cellvars' filepath='Objects/codeobject.c' line='278' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Objects/codeobject.c' line='279' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/codeobject.c' line='279' column='1'/>
+      <parameter type-id='type-id-9' name='firstlineno' filepath='Objects/codeobject.c' line='279' column='1'/>
+      <parameter type-id='type-id-16' name='linetable' filepath='Objects/codeobject.c' line='280' column='1'/>
+      <return type-id='type-id-418'/>
     </function-decl>
     <function-decl name='PyCode_NewWithPosOnlyArgs' mangled-name='PyCode_NewWithPosOnlyArgs' filepath='Objects/codeobject.c' line='117' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_NewWithPosOnlyArgs'>
-      <parameter type-id='type-id-8' name='argcount' filepath='Objects/codeobject.c' line='117' column='1'/>
-      <parameter type-id='type-id-8' name='posonlyargcount' filepath='Objects/codeobject.c' line='117' column='1'/>
-      <parameter type-id='type-id-8' name='kwonlyargcount' filepath='Objects/codeobject.c' line='117' column='1'/>
-      <parameter type-id='type-id-8' name='nlocals' filepath='Objects/codeobject.c' line='118' column='1'/>
-      <parameter type-id='type-id-8' name='stacksize' filepath='Objects/codeobject.c' line='118' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/codeobject.c' line='118' column='1'/>
-      <parameter type-id='type-id-15' name='code' filepath='Objects/codeobject.c' line='119' column='1'/>
-      <parameter type-id='type-id-15' name='consts' filepath='Objects/codeobject.c' line='119' column='1'/>
-      <parameter type-id='type-id-15' name='names' filepath='Objects/codeobject.c' line='119' column='1'/>
-      <parameter type-id='type-id-15' name='varnames' filepath='Objects/codeobject.c' line='120' column='1'/>
-      <parameter type-id='type-id-15' name='freevars' filepath='Objects/codeobject.c' line='120' column='1'/>
-      <parameter type-id='type-id-15' name='cellvars' filepath='Objects/codeobject.c' line='120' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Objects/codeobject.c' line='121' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/codeobject.c' line='121' column='1'/>
-      <parameter type-id='type-id-8' name='firstlineno' filepath='Objects/codeobject.c' line='121' column='1'/>
-      <parameter type-id='type-id-15' name='linetable' filepath='Objects/codeobject.c' line='122' column='1'/>
-      <return type-id='type-id-422'/>
+      <parameter type-id='type-id-9' name='argcount' filepath='Objects/codeobject.c' line='117' column='1'/>
+      <parameter type-id='type-id-9' name='posonlyargcount' filepath='Objects/codeobject.c' line='117' column='1'/>
+      <parameter type-id='type-id-9' name='kwonlyargcount' filepath='Objects/codeobject.c' line='117' column='1'/>
+      <parameter type-id='type-id-9' name='nlocals' filepath='Objects/codeobject.c' line='118' column='1'/>
+      <parameter type-id='type-id-9' name='stacksize' filepath='Objects/codeobject.c' line='118' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/codeobject.c' line='118' column='1'/>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/codeobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-16' name='consts' filepath='Objects/codeobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-16' name='names' filepath='Objects/codeobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-16' name='varnames' filepath='Objects/codeobject.c' line='120' column='1'/>
+      <parameter type-id='type-id-16' name='freevars' filepath='Objects/codeobject.c' line='120' column='1'/>
+      <parameter type-id='type-id-16' name='cellvars' filepath='Objects/codeobject.c' line='120' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Objects/codeobject.c' line='121' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/codeobject.c' line='121' column='1'/>
+      <parameter type-id='type-id-9' name='firstlineno' filepath='Objects/codeobject.c' line='121' column='1'/>
+      <parameter type-id='type-id-16' name='linetable' filepath='Objects/codeobject.c' line='122' column='1'/>
+      <return type-id='type-id-418'/>
+    </function-decl>
+    <class-decl name='_line_offsets' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='144' column='1' id='type-id-419'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='ar_start' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='145' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='32'>
+        <var-decl name='ar_end' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='146' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='ar_line' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='147' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='opaque' type-id='type-id-420' visibility='default' filepath='./Include/cpython/code.h' line='148' column='1'/>
+      </data-member>
+    </class-decl>
+    <class-decl name='_opaque' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/code.h' line='138' column='1' id='type-id-420'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='computed_line' type-id='type-id-9' visibility='default' filepath='./Include/cpython/code.h' line='139' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='lo_next' type-id='type-id-3' visibility='default' filepath='./Include/cpython/code.h' line='140' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='limit' type-id='type-id-3' visibility='default' filepath='./Include/cpython/code.h' line='141' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='PyCodeAddressRange' type-id='type-id-419' filepath='./Include/cpython/code.h' line='149' column='1' id='type-id-421'/>
+    <pointer-type-def type-id='type-id-421' size-in-bits='64' id='type-id-422'/>
+    <function-decl name='_PyCode_CheckLineNumber' mangled-name='_PyCode_CheckLineNumber' filepath='Objects/codeobject.c' line='1280' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCode_CheckLineNumber'>
+      <parameter type-id='type-id-9' name='lasti' filepath='Objects/codeobject.c' line='1280' column='1'/>
+      <parameter type-id='type-id-422' name='bounds' filepath='Objects/codeobject.c' line='1280' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='./Include/object.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='./Include/complexobject.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySet_NextEntry' mangled-name='_PySet_NextEntry' filepath='./Include/setobject.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrozenSet_New' mangled-name='PyFrozenSet_New' filepath='./Include/setobject.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromVoidPtr' mangled-name='PyLong_FromVoidPtr' filepath='./Include/longobject.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='./Include/cpython/unicodeobject.h' line='477' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_Resize' mangled-name='_PyBytes_Resize' filepath='./Include/cpython/bytesobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='./Include/unicodeobject.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_FromString' mangled-name='PyBytes_FromString' filepath='./Include/bytesobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_Size' mangled-name='PyBytes_Size' filepath='./Include/bytesobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='./Include/unicodeobject.h' line='985' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Tuple' mangled-name='PySequence_Tuple' filepath='./Include/abstract.h' line='702' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/complexobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -6179,25 +7499,25 @@
     </class-decl>
     <typedef-decl name='Py_complex' type-id='type-id-424' filepath='./Include/complexobject.h' line='13' column='1' id='type-id-423'/>
     <function-decl name='PyComplex_AsCComplex' mangled-name='PyComplex_AsCComplex' filepath='Objects/complexobject.c' line='313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_AsCComplex'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/complexobject.c' line='313' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/complexobject.c' line='313' column='1'/>
       <return type-id='type-id-423'/>
     </function-decl>
     <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='Objects/complexobject.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_ImagAsDouble'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/complexobject.c' line='268' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/complexobject.c' line='268' column='1'/>
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='Objects/complexobject.c' line='257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_RealAsDouble'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/complexobject.c' line='268' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/complexobject.c' line='257' column='1'/>
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='PyComplex_FromDoubles' mangled-name='PyComplex_FromDoubles' filepath='Objects/complexobject.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromDoubles'>
       <parameter type-id='type-id-371' name='real' filepath='Objects/complexobject.c' line='248' column='1'/>
       <parameter type-id='type-id-371' name='imag' filepath='Objects/complexobject.c' line='248' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyComplex_FromCComplex' mangled-name='PyComplex_FromCComplex' filepath='Objects/complexobject.c' line='226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyComplex_FromCComplex'>
       <parameter type-id='type-id-423' name='cval' filepath='Objects/complexobject.c' line='226' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_Py_c_abs' mangled-name='_Py_c_abs' filepath='Objects/complexobject.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_c_abs'>
       <parameter type-id='type-id-423' name='z' filepath='Objects/complexobject.c' line='183' column='1'/>
@@ -6232,6 +7552,48 @@
       <parameter type-id='type-id-423' name='b' filepath='Objects/complexobject.c' line='53' column='1'/>
       <return type-id='type-id-423'/>
     </function-decl>
+    <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='./Include/pyhash.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='hypot' mangled-name='hypot' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pow' mangled-name='pow' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='atan2' mangled-name='atan2' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin_sincos' mangled-name='sincos' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='exp' mangled-name='exp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='log' mangled-name='log' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='./Include/cpython/unicodeobject.h' line='986' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='./Include/pystrtod.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Float' mangled-name='PyNumber_Float' filepath='./Include/abstract.h' line='544' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='./Include/cpython/unicodeobject.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='./Include/complexobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='./Include/cpython/unicodeobject.h' line='711' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='./Include/cpython/unicodeobject.h' line='715' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/descrobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyMethodDescr_Type' type-id='type-id-149' mangled-name='PyMethodDescr_Type' visibility='default' filepath='./Include/descrobject.h' line='79' column='1' elf-symbol-id='PyMethodDescr_Type'/>
@@ -6242,28 +7604,28 @@
     <var-decl name='_PyMethodWrapper_Type' type-id='type-id-149' mangled-name='_PyMethodWrapper_Type' visibility='default' filepath='./Include/descrobject.h' line='83' column='1' elf-symbol-id='_PyMethodWrapper_Type'/>
     <var-decl name='PyDictProxy_Type' type-id='type-id-149' mangled-name='PyDictProxy_Type' visibility='default' filepath='./Include/descrobject.h' line='81' column='1' elf-symbol-id='PyDictProxy_Type'/>
     <var-decl name='PyProperty_Type' type-id='type-id-149' mangled-name='PyProperty_Type' visibility='default' filepath='./Include/descrobject.h' line='103' column='1' elf-symbol-id='PyProperty_Type'/>
-    <function-decl name='PyWrapper_New' mangled-name='PyWrapper_New' filepath='Objects/descrobject.c' line='1438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWrapper_New'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1069' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1069' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyWrapper_New' mangled-name='PyWrapper_New' filepath='Objects/descrobject.c' line='1436' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWrapper_New'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='1069' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='1069' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='Objects/descrobject.c' line='1235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDictProxy_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='Objects/descrobject.c' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDictProxy_New'>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/descrobject.c' line='1233' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyDescr_IsData' mangled-name='PyDescr_IsData' filepath='Objects/descrobject.c' line='999' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_IsData'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyDescr_IsData' mangled-name='PyDescr_IsData' filepath='Objects/descrobject.c' line='997' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_IsData'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <class-decl name='wrapperbase' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/descrobject.h' line='26' column='1' id='type-id-425'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/descrobject.h' line='27' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='offset' type-id='type-id-8' visibility='default' filepath='./Include/descrobject.h' line='28' column='1'/>
+        <var-decl name='offset' type-id='type-id-9' visibility='default' filepath='./Include/descrobject.h' line='28' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='function' type-id='type-id-20' visibility='default' filepath='./Include/descrobject.h' line='29' column='1'/>
+        <var-decl name='function' type-id='type-id-21' visibility='default' filepath='./Include/descrobject.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='wrapper' type-id='type-id-426' visibility='default' filepath='./Include/descrobject.h' line='30' column='1'/>
@@ -6272,312 +7634,407 @@
         <var-decl name='doc' type-id='type-id-3' visibility='default' filepath='./Include/descrobject.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='flags' type-id='type-id-8' visibility='default' filepath='./Include/descrobject.h' line='32' column='1'/>
+        <var-decl name='flags' type-id='type-id-9' visibility='default' filepath='./Include/descrobject.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='name_strobj' type-id='type-id-15' visibility='default' filepath='./Include/descrobject.h' line='33' column='1'/>
+        <var-decl name='name_strobj' type-id='type-id-16' visibility='default' filepath='./Include/descrobject.h' line='33' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-427' size-in-bits='64' id='type-id-428'/>
     <typedef-decl name='wrapperfunc' type-id='type-id-428' filepath='./Include/descrobject.h' line='20' column='1' id='type-id-426'/>
     <pointer-type-def type-id='type-id-425' size-in-bits='64' id='type-id-429'/>
-    <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='Objects/descrobject.c' line='985' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewWrapper'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/descrobject.c' line='985' column='1'/>
-      <parameter type-id='type-id-429' name='base' filepath='Objects/descrobject.c' line='985' column='1'/>
-      <parameter type-id='type-id-20' name='wrapped' filepath='Objects/descrobject.c' line='985' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='Objects/descrobject.c' line='983' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewWrapper'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/descrobject.c' line='983' column='1'/>
+      <parameter type-id='type-id-429' name='base' filepath='Objects/descrobject.c' line='983' column='1'/>
+      <parameter type-id='type-id-21' name='wrapped' filepath='Objects/descrobject.c' line='983' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <typedef-decl name='PyGetSetDef' type-id='type-id-142' filepath='./Include/descrobject.h' line='17' column='1' id='type-id-430'/>
     <pointer-type-def type-id='type-id-430' size-in-bits='64' id='type-id-431'/>
-    <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='Objects/descrobject.c' line='973' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewGetSet'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/descrobject.c' line='973' column='1'/>
-      <parameter type-id='type-id-431' name='getset' filepath='Objects/descrobject.c' line='973' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='Objects/descrobject.c' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewGetSet'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/descrobject.c' line='971' column='1'/>
+      <parameter type-id='type-id-431' name='getset' filepath='Objects/descrobject.c' line='971' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <typedef-decl name='PyMemberDef' type-id='type-id-141' filepath='./Include/structmember.h' line='24' column='1' id='type-id-432'/>
     <pointer-type-def type-id='type-id-432' size-in-bits='64' id='type-id-433'/>
-    <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='Objects/descrobject.c' line='961' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMember'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/descrobject.c' line='961' column='1'/>
-      <parameter type-id='type-id-433' name='member' filepath='Objects/descrobject.c' line='961' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='Objects/descrobject.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMember'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/descrobject.c' line='959' column='1'/>
+      <parameter type-id='type-id-433' name='member' filepath='Objects/descrobject.c' line='959' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <typedef-decl name='PyMethodDef' type-id='type-id-139' filepath='./Include/methodobject.h' line='42' column='1' id='type-id-434'/>
     <pointer-type-def type-id='type-id-434' size-in-bits='64' id='type-id-435'/>
-    <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='Objects/descrobject.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewClassMethod'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/descrobject.c' line='949' column='1'/>
-      <parameter type-id='type-id-435' name='method' filepath='Objects/descrobject.c' line='949' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='Objects/descrobject.c' line='947' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewClassMethod'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/descrobject.c' line='947' column='1'/>
+      <parameter type-id='type-id-435' name='method' filepath='Objects/descrobject.c' line='947' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='Objects/descrobject.c' line='901' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMethod'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/descrobject.c' line='901' column='1'/>
+      <parameter type-id='type-id-435' name='method' filepath='Objects/descrobject.c' line='901' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyObject_SetAttrId' mangled-name='_PyObject_SetAttrId' filepath='./Include/cpython/object.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMapping_Check' mangled-name='PyMapping_Check' filepath='./Include/abstract.h' line='785' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Type' mangled-name='PyObject_Type' filepath='./Include/abstract.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='./Include/cpython/object.h' line='305' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_GetDocFromInternalDoc' mangled-name='_PyType_GetDocFromInternalDoc' filepath='./Include/cpython/object.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTrash_cond' mangled-name='_PyTrash_cond' filepath='./Include/cpython/object.h' line='523' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTrash_end' mangled-name='_PyTrash_end' filepath='./Include/cpython/object.h' line='521' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTrash_begin' mangled-name='_PyTrash_begin' filepath='./Include/cpython/object.h' line='520' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='./Include/objimpl.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='./Include/modsupport.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Contains' mangled-name='PySequence_Contains' filepath='./Include/abstract.h' line='744' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Contains' mangled-name='PyDict_Contains' filepath='./Include/dictobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Or' mangled-name='PyNumber_Or' filepath='./Include/abstract.h' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Size' mangled-name='PyObject_Size' filepath='./Include/abstract.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_RealIsSubclass' mangled-name='_PyObject_RealIsSubclass' filepath='./Include/cpython/abstract.h' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_GetSlice' mangled-name='PyTuple_GetSlice' filepath='./Include/tupleobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='Objects/descrobject.c' line='903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDescr_NewMethod'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/descrobject.c' line='903' column='1'/>
-      <parameter type-id='type-id-435' name='method' filepath='Objects/descrobject.c' line='903' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyObject_FunctionStr' mangled-name='_PyObject_FunctionStr' filepath='./Include/cpython/object.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyStack_AsDict' mangled-name='_PyStack_AsDict' filepath='./Include/cpython/abstract.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='./Include/structmember.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCMethod_New' mangled-name='PyCMethod_New' filepath='./Include/methodobject.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_IsAbstract' mangled-name='_PyObject_IsAbstract' filepath='./Include/cpython/object.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMember_GetOne' mangled-name='PyMember_GetOne' filepath='./Include/structmember.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_VectorcallDict' mangled-name='PyObject_VectorcallDict' filepath='./Include/cpython/abstract.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-type size-in-bits='64' id='type-id-427'>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-15'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-16'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/enumobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyEnum_Type' type-id='type-id-149' mangled-name='PyEnum_Type' visibility='default' filepath='./Include/enumobject.h' line='10' column='1' elf-symbol-id='PyEnum_Type'/>
     <var-decl name='PyReversed_Type' type-id='type-id-149' mangled-name='PyReversed_Type' visibility='default' filepath='./Include/enumobject.h' line='11' column='1' elf-symbol-id='PyReversed_Type'/>
+    <function-decl name='PySequence_Size' mangled-name='PySequence_Size' filepath='./Include/abstract.h' line='646' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_GetItem' mangled-name='PySequence_GetItem' filepath='./Include/abstract.h' line='668' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Add' mangled-name='PyNumber_Add' filepath='./Include/abstract.h' line='422' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Index' mangled-name='PyNumber_Index' filepath='./Include/abstract.h' line='524' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Check' mangled-name='PySequence_Check' filepath='./Include/abstract.h' line='643' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/exceptions.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PyExc_EnvironmentError' type-id='type-id-15' mangled-name='PyExc_EnvironmentError' visibility='default' filepath='./Include/pyerrors.h' line='132' column='1' elf-symbol-id='PyExc_EnvironmentError'/>
-    <var-decl name='PyExc_IOError' type-id='type-id-15' mangled-name='PyExc_IOError' visibility='default' filepath='./Include/pyerrors.h' line='133' column='1' elf-symbol-id='PyExc_IOError'/>
-    <var-decl name='PyExc_BaseException' type-id='type-id-15' mangled-name='PyExc_BaseException' visibility='default' filepath='./Include/pyerrors.h' line='66' column='1' elf-symbol-id='PyExc_BaseException'/>
-    <var-decl name='PyExc_Exception' type-id='type-id-15' mangled-name='PyExc_Exception' visibility='default' filepath='./Include/pyerrors.h' line='67' column='1' elf-symbol-id='PyExc_Exception'/>
-    <var-decl name='PyExc_TypeError' type-id='type-id-15' mangled-name='PyExc_TypeError' visibility='default' filepath='./Include/pyerrors.h' line='103' column='1' elf-symbol-id='PyExc_TypeError'/>
-    <var-decl name='PyExc_StopAsyncIteration' type-id='type-id-15' mangled-name='PyExc_StopAsyncIteration' visibility='default' filepath='./Include/pyerrors.h' line='69' column='1' elf-symbol-id='PyExc_StopAsyncIteration'/>
-    <var-decl name='PyExc_StopIteration' type-id='type-id-15' mangled-name='PyExc_StopIteration' visibility='default' filepath='./Include/pyerrors.h' line='71' column='1' elf-symbol-id='PyExc_StopIteration'/>
-    <var-decl name='PyExc_GeneratorExit' type-id='type-id-15' mangled-name='PyExc_GeneratorExit' visibility='default' filepath='./Include/pyerrors.h' line='72' column='1' elf-symbol-id='PyExc_GeneratorExit'/>
-    <var-decl name='PyExc_SystemExit' type-id='type-id-15' mangled-name='PyExc_SystemExit' visibility='default' filepath='./Include/pyerrors.h' line='102' column='1' elf-symbol-id='PyExc_SystemExit'/>
-    <var-decl name='PyExc_KeyboardInterrupt' type-id='type-id-15' mangled-name='PyExc_KeyboardInterrupt' visibility='default' filepath='./Include/pyerrors.h' line='88' column='1' elf-symbol-id='PyExc_KeyboardInterrupt'/>
-    <var-decl name='PyExc_ImportError' type-id='type-id-15' mangled-name='PyExc_ImportError' visibility='default' filepath='./Include/pyerrors.h' line='82' column='1' elf-symbol-id='PyExc_ImportError'/>
-    <var-decl name='PyExc_ModuleNotFoundError' type-id='type-id-15' mangled-name='PyExc_ModuleNotFoundError' visibility='default' filepath='./Include/pyerrors.h' line='84' column='1' elf-symbol-id='PyExc_ModuleNotFoundError'/>
-    <var-decl name='PyExc_OSError' type-id='type-id-15' mangled-name='PyExc_OSError' visibility='default' filepath='./Include/pyerrors.h' line='81' column='1' elf-symbol-id='PyExc_OSError'/>
-    <var-decl name='PyExc_BlockingIOError' type-id='type-id-15' mangled-name='PyExc_BlockingIOError' visibility='default' filepath='./Include/pyerrors.h' line='113' column='1' elf-symbol-id='PyExc_BlockingIOError'/>
-    <var-decl name='PyExc_ConnectionError' type-id='type-id-15' mangled-name='PyExc_ConnectionError' visibility='default' filepath='./Include/pyerrors.h' line='116' column='1' elf-symbol-id='PyExc_ConnectionError'/>
-    <var-decl name='PyExc_ChildProcessError' type-id='type-id-15' mangled-name='PyExc_ChildProcessError' visibility='default' filepath='./Include/pyerrors.h' line='115' column='1' elf-symbol-id='PyExc_ChildProcessError'/>
-    <var-decl name='PyExc_BrokenPipeError' type-id='type-id-15' mangled-name='PyExc_BrokenPipeError' visibility='default' filepath='./Include/pyerrors.h' line='114' column='1' elf-symbol-id='PyExc_BrokenPipeError'/>
-    <var-decl name='PyExc_ConnectionAbortedError' type-id='type-id-15' mangled-name='PyExc_ConnectionAbortedError' visibility='default' filepath='./Include/pyerrors.h' line='117' column='1' elf-symbol-id='PyExc_ConnectionAbortedError'/>
-    <var-decl name='PyExc_ConnectionRefusedError' type-id='type-id-15' mangled-name='PyExc_ConnectionRefusedError' visibility='default' filepath='./Include/pyerrors.h' line='118' column='1' elf-symbol-id='PyExc_ConnectionRefusedError'/>
-    <var-decl name='PyExc_ConnectionResetError' type-id='type-id-15' mangled-name='PyExc_ConnectionResetError' visibility='default' filepath='./Include/pyerrors.h' line='119' column='1' elf-symbol-id='PyExc_ConnectionResetError'/>
-    <var-decl name='PyExc_FileExistsError' type-id='type-id-15' mangled-name='PyExc_FileExistsError' visibility='default' filepath='./Include/pyerrors.h' line='120' column='1' elf-symbol-id='PyExc_FileExistsError'/>
-    <var-decl name='PyExc_FileNotFoundError' type-id='type-id-15' mangled-name='PyExc_FileNotFoundError' visibility='default' filepath='./Include/pyerrors.h' line='121' column='1' elf-symbol-id='PyExc_FileNotFoundError'/>
-    <var-decl name='PyExc_IsADirectoryError' type-id='type-id-15' mangled-name='PyExc_IsADirectoryError' visibility='default' filepath='./Include/pyerrors.h' line='123' column='1' elf-symbol-id='PyExc_IsADirectoryError'/>
-    <var-decl name='PyExc_NotADirectoryError' type-id='type-id-15' mangled-name='PyExc_NotADirectoryError' visibility='default' filepath='./Include/pyerrors.h' line='124' column='1' elf-symbol-id='PyExc_NotADirectoryError'/>
-    <var-decl name='PyExc_InterruptedError' type-id='type-id-15' mangled-name='PyExc_InterruptedError' visibility='default' filepath='./Include/pyerrors.h' line='122' column='1' elf-symbol-id='PyExc_InterruptedError'/>
-    <var-decl name='PyExc_PermissionError' type-id='type-id-15' mangled-name='PyExc_PermissionError' visibility='default' filepath='./Include/pyerrors.h' line='125' column='1' elf-symbol-id='PyExc_PermissionError'/>
-    <var-decl name='PyExc_ProcessLookupError' type-id='type-id-15' mangled-name='PyExc_ProcessLookupError' visibility='default' filepath='./Include/pyerrors.h' line='126' column='1' elf-symbol-id='PyExc_ProcessLookupError'/>
-    <var-decl name='PyExc_TimeoutError' type-id='type-id-15' mangled-name='PyExc_TimeoutError' visibility='default' filepath='./Include/pyerrors.h' line='127' column='1' elf-symbol-id='PyExc_TimeoutError'/>
-    <var-decl name='PyExc_EOFError' type-id='type-id-15' mangled-name='PyExc_EOFError' visibility='default' filepath='./Include/pyerrors.h' line='79' column='1' elf-symbol-id='PyExc_EOFError'/>
-    <var-decl name='PyExc_RuntimeError' type-id='type-id-15' mangled-name='PyExc_RuntimeError' visibility='default' filepath='./Include/pyerrors.h' line='92' column='1' elf-symbol-id='PyExc_RuntimeError'/>
-    <var-decl name='PyExc_RecursionError' type-id='type-id-15' mangled-name='PyExc_RecursionError' visibility='default' filepath='./Include/pyerrors.h' line='94' column='1' elf-symbol-id='PyExc_RecursionError'/>
-    <var-decl name='PyExc_NotImplementedError' type-id='type-id-15' mangled-name='PyExc_NotImplementedError' visibility='default' filepath='./Include/pyerrors.h' line='96' column='1' elf-symbol-id='PyExc_NotImplementedError'/>
-    <var-decl name='PyExc_NameError' type-id='type-id-15' mangled-name='PyExc_NameError' visibility='default' filepath='./Include/pyerrors.h' line='90' column='1' elf-symbol-id='PyExc_NameError'/>
-    <var-decl name='PyExc_UnboundLocalError' type-id='type-id-15' mangled-name='PyExc_UnboundLocalError' visibility='default' filepath='./Include/pyerrors.h' line='104' column='1' elf-symbol-id='PyExc_UnboundLocalError'/>
-    <var-decl name='PyExc_AttributeError' type-id='type-id-15' mangled-name='PyExc_AttributeError' visibility='default' filepath='./Include/pyerrors.h' line='77' column='1' elf-symbol-id='PyExc_AttributeError'/>
-    <var-decl name='PyExc_SyntaxError' type-id='type-id-15' mangled-name='PyExc_SyntaxError' visibility='default' filepath='./Include/pyerrors.h' line='97' column='1' elf-symbol-id='PyExc_SyntaxError'/>
-    <var-decl name='PyExc_IndentationError' type-id='type-id-15' mangled-name='PyExc_IndentationError' visibility='default' filepath='./Include/pyerrors.h' line='98' column='1' elf-symbol-id='PyExc_IndentationError'/>
-    <var-decl name='PyExc_TabError' type-id='type-id-15' mangled-name='PyExc_TabError' visibility='default' filepath='./Include/pyerrors.h' line='99' column='1' elf-symbol-id='PyExc_TabError'/>
-    <var-decl name='PyExc_LookupError' type-id='type-id-15' mangled-name='PyExc_LookupError' visibility='default' filepath='./Include/pyerrors.h' line='74' column='1' elf-symbol-id='PyExc_LookupError'/>
-    <var-decl name='PyExc_IndexError' type-id='type-id-15' mangled-name='PyExc_IndexError' visibility='default' filepath='./Include/pyerrors.h' line='86' column='1' elf-symbol-id='PyExc_IndexError'/>
-    <var-decl name='PyExc_KeyError' type-id='type-id-15' mangled-name='PyExc_KeyError' visibility='default' filepath='./Include/pyerrors.h' line='87' column='1' elf-symbol-id='PyExc_KeyError'/>
-    <var-decl name='PyExc_ValueError' type-id='type-id-15' mangled-name='PyExc_ValueError' visibility='default' filepath='./Include/pyerrors.h' line='109' column='1' elf-symbol-id='PyExc_ValueError'/>
-    <var-decl name='PyExc_UnicodeError' type-id='type-id-15' mangled-name='PyExc_UnicodeError' visibility='default' filepath='./Include/pyerrors.h' line='105' column='1' elf-symbol-id='PyExc_UnicodeError'/>
-    <var-decl name='PyExc_UnicodeEncodeError' type-id='type-id-15' mangled-name='PyExc_UnicodeEncodeError' visibility='default' filepath='./Include/pyerrors.h' line='106' column='1' elf-symbol-id='PyExc_UnicodeEncodeError'/>
-    <var-decl name='PyExc_UnicodeDecodeError' type-id='type-id-15' mangled-name='PyExc_UnicodeDecodeError' visibility='default' filepath='./Include/pyerrors.h' line='107' column='1' elf-symbol-id='PyExc_UnicodeDecodeError'/>
-    <var-decl name='PyExc_UnicodeTranslateError' type-id='type-id-15' mangled-name='PyExc_UnicodeTranslateError' visibility='default' filepath='./Include/pyerrors.h' line='108' column='1' elf-symbol-id='PyExc_UnicodeTranslateError'/>
-    <var-decl name='PyExc_AssertionError' type-id='type-id-15' mangled-name='PyExc_AssertionError' visibility='default' filepath='./Include/pyerrors.h' line='76' column='1' elf-symbol-id='PyExc_AssertionError'/>
-    <var-decl name='PyExc_ArithmeticError' type-id='type-id-15' mangled-name='PyExc_ArithmeticError' visibility='default' filepath='./Include/pyerrors.h' line='73' column='1' elf-symbol-id='PyExc_ArithmeticError'/>
-    <var-decl name='PyExc_FloatingPointError' type-id='type-id-15' mangled-name='PyExc_FloatingPointError' visibility='default' filepath='./Include/pyerrors.h' line='80' column='1' elf-symbol-id='PyExc_FloatingPointError'/>
-    <var-decl name='PyExc_OverflowError' type-id='type-id-15' mangled-name='PyExc_OverflowError' visibility='default' filepath='./Include/pyerrors.h' line='91' column='1' elf-symbol-id='PyExc_OverflowError'/>
-    <var-decl name='PyExc_ZeroDivisionError' type-id='type-id-15' mangled-name='PyExc_ZeroDivisionError' visibility='default' filepath='./Include/pyerrors.h' line='110' column='1' elf-symbol-id='PyExc_ZeroDivisionError'/>
-    <var-decl name='PyExc_SystemError' type-id='type-id-15' mangled-name='PyExc_SystemError' visibility='default' filepath='./Include/pyerrors.h' line='101' column='1' elf-symbol-id='PyExc_SystemError'/>
-    <var-decl name='PyExc_ReferenceError' type-id='type-id-15' mangled-name='PyExc_ReferenceError' visibility='default' filepath='./Include/pyerrors.h' line='100' column='1' elf-symbol-id='PyExc_ReferenceError'/>
-    <var-decl name='PyExc_MemoryError' type-id='type-id-15' mangled-name='PyExc_MemoryError' visibility='default' filepath='./Include/pyerrors.h' line='89' column='1' elf-symbol-id='PyExc_MemoryError'/>
-    <var-decl name='PyExc_BufferError' type-id='type-id-15' mangled-name='PyExc_BufferError' visibility='default' filepath='./Include/pyerrors.h' line='78' column='1' elf-symbol-id='PyExc_BufferError'/>
-    <var-decl name='PyExc_Warning' type-id='type-id-15' mangled-name='PyExc_Warning' visibility='default' filepath='./Include/pyerrors.h' line='139' column='1' elf-symbol-id='PyExc_Warning'/>
-    <var-decl name='PyExc_UserWarning' type-id='type-id-15' mangled-name='PyExc_UserWarning' visibility='default' filepath='./Include/pyerrors.h' line='140' column='1' elf-symbol-id='PyExc_UserWarning'/>
-    <var-decl name='PyExc_DeprecationWarning' type-id='type-id-15' mangled-name='PyExc_DeprecationWarning' visibility='default' filepath='./Include/pyerrors.h' line='141' column='1' elf-symbol-id='PyExc_DeprecationWarning'/>
-    <var-decl name='PyExc_PendingDeprecationWarning' type-id='type-id-15' mangled-name='PyExc_PendingDeprecationWarning' visibility='default' filepath='./Include/pyerrors.h' line='142' column='1' elf-symbol-id='PyExc_PendingDeprecationWarning'/>
-    <var-decl name='PyExc_SyntaxWarning' type-id='type-id-15' mangled-name='PyExc_SyntaxWarning' visibility='default' filepath='./Include/pyerrors.h' line='143' column='1' elf-symbol-id='PyExc_SyntaxWarning'/>
-    <var-decl name='PyExc_RuntimeWarning' type-id='type-id-15' mangled-name='PyExc_RuntimeWarning' visibility='default' filepath='./Include/pyerrors.h' line='144' column='1' elf-symbol-id='PyExc_RuntimeWarning'/>
-    <var-decl name='PyExc_FutureWarning' type-id='type-id-15' mangled-name='PyExc_FutureWarning' visibility='default' filepath='./Include/pyerrors.h' line='145' column='1' elf-symbol-id='PyExc_FutureWarning'/>
-    <var-decl name='PyExc_ImportWarning' type-id='type-id-15' mangled-name='PyExc_ImportWarning' visibility='default' filepath='./Include/pyerrors.h' line='146' column='1' elf-symbol-id='PyExc_ImportWarning'/>
-    <var-decl name='PyExc_UnicodeWarning' type-id='type-id-15' mangled-name='PyExc_UnicodeWarning' visibility='default' filepath='./Include/pyerrors.h' line='147' column='1' elf-symbol-id='PyExc_UnicodeWarning'/>
-    <var-decl name='PyExc_BytesWarning' type-id='type-id-15' mangled-name='PyExc_BytesWarning' visibility='default' filepath='./Include/pyerrors.h' line='148' column='1' elf-symbol-id='PyExc_BytesWarning'/>
-    <var-decl name='PyExc_EncodingWarning' type-id='type-id-15' mangled-name='PyExc_EncodingWarning' visibility='default' filepath='./Include/pyerrors.h' line='149' column='1' elf-symbol-id='PyExc_EncodingWarning'/>
-    <var-decl name='PyExc_ResourceWarning' type-id='type-id-15' mangled-name='PyExc_ResourceWarning' visibility='default' filepath='./Include/pyerrors.h' line='150' column='1' elf-symbol-id='PyExc_ResourceWarning'/>
+    <var-decl name='PyExc_EnvironmentError' type-id='type-id-16' mangled-name='PyExc_EnvironmentError' visibility='default' filepath='./Include/pyerrors.h' line='132' column='1' elf-symbol-id='PyExc_EnvironmentError'/>
+    <var-decl name='PyExc_IOError' type-id='type-id-16' mangled-name='PyExc_IOError' visibility='default' filepath='./Include/pyerrors.h' line='133' column='1' elf-symbol-id='PyExc_IOError'/>
+    <var-decl name='PyExc_BaseException' type-id='type-id-16' mangled-name='PyExc_BaseException' visibility='default' filepath='./Include/pyerrors.h' line='66' column='1' elf-symbol-id='PyExc_BaseException'/>
+    <var-decl name='PyExc_Exception' type-id='type-id-16' mangled-name='PyExc_Exception' visibility='default' filepath='./Include/pyerrors.h' line='67' column='1' elf-symbol-id='PyExc_Exception'/>
+    <var-decl name='PyExc_TypeError' type-id='type-id-16' mangled-name='PyExc_TypeError' visibility='default' filepath='./Include/pyerrors.h' line='103' column='1' elf-symbol-id='PyExc_TypeError'/>
+    <var-decl name='PyExc_StopAsyncIteration' type-id='type-id-16' mangled-name='PyExc_StopAsyncIteration' visibility='default' filepath='./Include/pyerrors.h' line='69' column='1' elf-symbol-id='PyExc_StopAsyncIteration'/>
+    <var-decl name='PyExc_StopIteration' type-id='type-id-16' mangled-name='PyExc_StopIteration' visibility='default' filepath='./Include/pyerrors.h' line='71' column='1' elf-symbol-id='PyExc_StopIteration'/>
+    <var-decl name='PyExc_GeneratorExit' type-id='type-id-16' mangled-name='PyExc_GeneratorExit' visibility='default' filepath='./Include/pyerrors.h' line='72' column='1' elf-symbol-id='PyExc_GeneratorExit'/>
+    <var-decl name='PyExc_SystemExit' type-id='type-id-16' mangled-name='PyExc_SystemExit' visibility='default' filepath='./Include/pyerrors.h' line='102' column='1' elf-symbol-id='PyExc_SystemExit'/>
+    <var-decl name='PyExc_KeyboardInterrupt' type-id='type-id-16' mangled-name='PyExc_KeyboardInterrupt' visibility='default' filepath='./Include/pyerrors.h' line='88' column='1' elf-symbol-id='PyExc_KeyboardInterrupt'/>
+    <var-decl name='PyExc_ImportError' type-id='type-id-16' mangled-name='PyExc_ImportError' visibility='default' filepath='./Include/pyerrors.h' line='82' column='1' elf-symbol-id='PyExc_ImportError'/>
+    <var-decl name='PyExc_ModuleNotFoundError' type-id='type-id-16' mangled-name='PyExc_ModuleNotFoundError' visibility='default' filepath='./Include/pyerrors.h' line='84' column='1' elf-symbol-id='PyExc_ModuleNotFoundError'/>
+    <var-decl name='PyExc_OSError' type-id='type-id-16' mangled-name='PyExc_OSError' visibility='default' filepath='./Include/pyerrors.h' line='81' column='1' elf-symbol-id='PyExc_OSError'/>
+    <var-decl name='PyExc_BlockingIOError' type-id='type-id-16' mangled-name='PyExc_BlockingIOError' visibility='default' filepath='./Include/pyerrors.h' line='113' column='1' elf-symbol-id='PyExc_BlockingIOError'/>
+    <var-decl name='PyExc_ConnectionError' type-id='type-id-16' mangled-name='PyExc_ConnectionError' visibility='default' filepath='./Include/pyerrors.h' line='116' column='1' elf-symbol-id='PyExc_ConnectionError'/>
+    <var-decl name='PyExc_ChildProcessError' type-id='type-id-16' mangled-name='PyExc_ChildProcessError' visibility='default' filepath='./Include/pyerrors.h' line='115' column='1' elf-symbol-id='PyExc_ChildProcessError'/>
+    <var-decl name='PyExc_BrokenPipeError' type-id='type-id-16' mangled-name='PyExc_BrokenPipeError' visibility='default' filepath='./Include/pyerrors.h' line='114' column='1' elf-symbol-id='PyExc_BrokenPipeError'/>
+    <var-decl name='PyExc_ConnectionAbortedError' type-id='type-id-16' mangled-name='PyExc_ConnectionAbortedError' visibility='default' filepath='./Include/pyerrors.h' line='117' column='1' elf-symbol-id='PyExc_ConnectionAbortedError'/>
+    <var-decl name='PyExc_ConnectionRefusedError' type-id='type-id-16' mangled-name='PyExc_ConnectionRefusedError' visibility='default' filepath='./Include/pyerrors.h' line='118' column='1' elf-symbol-id='PyExc_ConnectionRefusedError'/>
+    <var-decl name='PyExc_ConnectionResetError' type-id='type-id-16' mangled-name='PyExc_ConnectionResetError' visibility='default' filepath='./Include/pyerrors.h' line='119' column='1' elf-symbol-id='PyExc_ConnectionResetError'/>
+    <var-decl name='PyExc_FileExistsError' type-id='type-id-16' mangled-name='PyExc_FileExistsError' visibility='default' filepath='./Include/pyerrors.h' line='120' column='1' elf-symbol-id='PyExc_FileExistsError'/>
+    <var-decl name='PyExc_FileNotFoundError' type-id='type-id-16' mangled-name='PyExc_FileNotFoundError' visibility='default' filepath='./Include/pyerrors.h' line='121' column='1' elf-symbol-id='PyExc_FileNotFoundError'/>
+    <var-decl name='PyExc_IsADirectoryError' type-id='type-id-16' mangled-name='PyExc_IsADirectoryError' visibility='default' filepath='./Include/pyerrors.h' line='123' column='1' elf-symbol-id='PyExc_IsADirectoryError'/>
+    <var-decl name='PyExc_NotADirectoryError' type-id='type-id-16' mangled-name='PyExc_NotADirectoryError' visibility='default' filepath='./Include/pyerrors.h' line='124' column='1' elf-symbol-id='PyExc_NotADirectoryError'/>
+    <var-decl name='PyExc_InterruptedError' type-id='type-id-16' mangled-name='PyExc_InterruptedError' visibility='default' filepath='./Include/pyerrors.h' line='122' column='1' elf-symbol-id='PyExc_InterruptedError'/>
+    <var-decl name='PyExc_PermissionError' type-id='type-id-16' mangled-name='PyExc_PermissionError' visibility='default' filepath='./Include/pyerrors.h' line='125' column='1' elf-symbol-id='PyExc_PermissionError'/>
+    <var-decl name='PyExc_ProcessLookupError' type-id='type-id-16' mangled-name='PyExc_ProcessLookupError' visibility='default' filepath='./Include/pyerrors.h' line='126' column='1' elf-symbol-id='PyExc_ProcessLookupError'/>
+    <var-decl name='PyExc_TimeoutError' type-id='type-id-16' mangled-name='PyExc_TimeoutError' visibility='default' filepath='./Include/pyerrors.h' line='127' column='1' elf-symbol-id='PyExc_TimeoutError'/>
+    <var-decl name='PyExc_EOFError' type-id='type-id-16' mangled-name='PyExc_EOFError' visibility='default' filepath='./Include/pyerrors.h' line='79' column='1' elf-symbol-id='PyExc_EOFError'/>
+    <var-decl name='PyExc_RuntimeError' type-id='type-id-16' mangled-name='PyExc_RuntimeError' visibility='default' filepath='./Include/pyerrors.h' line='92' column='1' elf-symbol-id='PyExc_RuntimeError'/>
+    <var-decl name='PyExc_RecursionError' type-id='type-id-16' mangled-name='PyExc_RecursionError' visibility='default' filepath='./Include/pyerrors.h' line='94' column='1' elf-symbol-id='PyExc_RecursionError'/>
+    <var-decl name='PyExc_NotImplementedError' type-id='type-id-16' mangled-name='PyExc_NotImplementedError' visibility='default' filepath='./Include/pyerrors.h' line='96' column='1' elf-symbol-id='PyExc_NotImplementedError'/>
+    <var-decl name='PyExc_NameError' type-id='type-id-16' mangled-name='PyExc_NameError' visibility='default' filepath='./Include/pyerrors.h' line='90' column='1' elf-symbol-id='PyExc_NameError'/>
+    <var-decl name='PyExc_UnboundLocalError' type-id='type-id-16' mangled-name='PyExc_UnboundLocalError' visibility='default' filepath='./Include/pyerrors.h' line='104' column='1' elf-symbol-id='PyExc_UnboundLocalError'/>
+    <var-decl name='PyExc_AttributeError' type-id='type-id-16' mangled-name='PyExc_AttributeError' visibility='default' filepath='./Include/pyerrors.h' line='77' column='1' elf-symbol-id='PyExc_AttributeError'/>
+    <var-decl name='PyExc_SyntaxError' type-id='type-id-16' mangled-name='PyExc_SyntaxError' visibility='default' filepath='./Include/pyerrors.h' line='97' column='1' elf-symbol-id='PyExc_SyntaxError'/>
+    <var-decl name='PyExc_IndentationError' type-id='type-id-16' mangled-name='PyExc_IndentationError' visibility='default' filepath='./Include/pyerrors.h' line='98' column='1' elf-symbol-id='PyExc_IndentationError'/>
+    <var-decl name='PyExc_TabError' type-id='type-id-16' mangled-name='PyExc_TabError' visibility='default' filepath='./Include/pyerrors.h' line='99' column='1' elf-symbol-id='PyExc_TabError'/>
+    <var-decl name='PyExc_LookupError' type-id='type-id-16' mangled-name='PyExc_LookupError' visibility='default' filepath='./Include/pyerrors.h' line='74' column='1' elf-symbol-id='PyExc_LookupError'/>
+    <var-decl name='PyExc_IndexError' type-id='type-id-16' mangled-name='PyExc_IndexError' visibility='default' filepath='./Include/pyerrors.h' line='86' column='1' elf-symbol-id='PyExc_IndexError'/>
+    <var-decl name='PyExc_KeyError' type-id='type-id-16' mangled-name='PyExc_KeyError' visibility='default' filepath='./Include/pyerrors.h' line='87' column='1' elf-symbol-id='PyExc_KeyError'/>
+    <var-decl name='PyExc_ValueError' type-id='type-id-16' mangled-name='PyExc_ValueError' visibility='default' filepath='./Include/pyerrors.h' line='109' column='1' elf-symbol-id='PyExc_ValueError'/>
+    <var-decl name='PyExc_UnicodeError' type-id='type-id-16' mangled-name='PyExc_UnicodeError' visibility='default' filepath='./Include/pyerrors.h' line='105' column='1' elf-symbol-id='PyExc_UnicodeError'/>
+    <var-decl name='PyExc_UnicodeEncodeError' type-id='type-id-16' mangled-name='PyExc_UnicodeEncodeError' visibility='default' filepath='./Include/pyerrors.h' line='106' column='1' elf-symbol-id='PyExc_UnicodeEncodeError'/>
+    <var-decl name='PyExc_UnicodeDecodeError' type-id='type-id-16' mangled-name='PyExc_UnicodeDecodeError' visibility='default' filepath='./Include/pyerrors.h' line='107' column='1' elf-symbol-id='PyExc_UnicodeDecodeError'/>
+    <var-decl name='PyExc_UnicodeTranslateError' type-id='type-id-16' mangled-name='PyExc_UnicodeTranslateError' visibility='default' filepath='./Include/pyerrors.h' line='108' column='1' elf-symbol-id='PyExc_UnicodeTranslateError'/>
+    <var-decl name='PyExc_AssertionError' type-id='type-id-16' mangled-name='PyExc_AssertionError' visibility='default' filepath='./Include/pyerrors.h' line='76' column='1' elf-symbol-id='PyExc_AssertionError'/>
+    <var-decl name='PyExc_ArithmeticError' type-id='type-id-16' mangled-name='PyExc_ArithmeticError' visibility='default' filepath='./Include/pyerrors.h' line='73' column='1' elf-symbol-id='PyExc_ArithmeticError'/>
+    <var-decl name='PyExc_FloatingPointError' type-id='type-id-16' mangled-name='PyExc_FloatingPointError' visibility='default' filepath='./Include/pyerrors.h' line='80' column='1' elf-symbol-id='PyExc_FloatingPointError'/>
+    <var-decl name='PyExc_OverflowError' type-id='type-id-16' mangled-name='PyExc_OverflowError' visibility='default' filepath='./Include/pyerrors.h' line='91' column='1' elf-symbol-id='PyExc_OverflowError'/>
+    <var-decl name='PyExc_ZeroDivisionError' type-id='type-id-16' mangled-name='PyExc_ZeroDivisionError' visibility='default' filepath='./Include/pyerrors.h' line='110' column='1' elf-symbol-id='PyExc_ZeroDivisionError'/>
+    <var-decl name='PyExc_SystemError' type-id='type-id-16' mangled-name='PyExc_SystemError' visibility='default' filepath='./Include/pyerrors.h' line='101' column='1' elf-symbol-id='PyExc_SystemError'/>
+    <var-decl name='PyExc_ReferenceError' type-id='type-id-16' mangled-name='PyExc_ReferenceError' visibility='default' filepath='./Include/pyerrors.h' line='100' column='1' elf-symbol-id='PyExc_ReferenceError'/>
+    <var-decl name='PyExc_MemoryError' type-id='type-id-16' mangled-name='PyExc_MemoryError' visibility='default' filepath='./Include/pyerrors.h' line='89' column='1' elf-symbol-id='PyExc_MemoryError'/>
+    <var-decl name='PyExc_BufferError' type-id='type-id-16' mangled-name='PyExc_BufferError' visibility='default' filepath='./Include/pyerrors.h' line='78' column='1' elf-symbol-id='PyExc_BufferError'/>
+    <var-decl name='PyExc_Warning' type-id='type-id-16' mangled-name='PyExc_Warning' visibility='default' filepath='./Include/pyerrors.h' line='139' column='1' elf-symbol-id='PyExc_Warning'/>
+    <var-decl name='PyExc_UserWarning' type-id='type-id-16' mangled-name='PyExc_UserWarning' visibility='default' filepath='./Include/pyerrors.h' line='140' column='1' elf-symbol-id='PyExc_UserWarning'/>
+    <var-decl name='PyExc_DeprecationWarning' type-id='type-id-16' mangled-name='PyExc_DeprecationWarning' visibility='default' filepath='./Include/pyerrors.h' line='141' column='1' elf-symbol-id='PyExc_DeprecationWarning'/>
+    <var-decl name='PyExc_PendingDeprecationWarning' type-id='type-id-16' mangled-name='PyExc_PendingDeprecationWarning' visibility='default' filepath='./Include/pyerrors.h' line='142' column='1' elf-symbol-id='PyExc_PendingDeprecationWarning'/>
+    <var-decl name='PyExc_SyntaxWarning' type-id='type-id-16' mangled-name='PyExc_SyntaxWarning' visibility='default' filepath='./Include/pyerrors.h' line='143' column='1' elf-symbol-id='PyExc_SyntaxWarning'/>
+    <var-decl name='PyExc_RuntimeWarning' type-id='type-id-16' mangled-name='PyExc_RuntimeWarning' visibility='default' filepath='./Include/pyerrors.h' line='144' column='1' elf-symbol-id='PyExc_RuntimeWarning'/>
+    <var-decl name='PyExc_FutureWarning' type-id='type-id-16' mangled-name='PyExc_FutureWarning' visibility='default' filepath='./Include/pyerrors.h' line='145' column='1' elf-symbol-id='PyExc_FutureWarning'/>
+    <var-decl name='PyExc_ImportWarning' type-id='type-id-16' mangled-name='PyExc_ImportWarning' visibility='default' filepath='./Include/pyerrors.h' line='146' column='1' elf-symbol-id='PyExc_ImportWarning'/>
+    <var-decl name='PyExc_UnicodeWarning' type-id='type-id-16' mangled-name='PyExc_UnicodeWarning' visibility='default' filepath='./Include/pyerrors.h' line='147' column='1' elf-symbol-id='PyExc_UnicodeWarning'/>
+    <var-decl name='PyExc_BytesWarning' type-id='type-id-16' mangled-name='PyExc_BytesWarning' visibility='default' filepath='./Include/pyerrors.h' line='148' column='1' elf-symbol-id='PyExc_BytesWarning'/>
+    <var-decl name='PyExc_EncodingWarning' type-id='type-id-16' mangled-name='PyExc_EncodingWarning' visibility='default' filepath='./Include/pyerrors.h' line='149' column='1' elf-symbol-id='PyExc_EncodingWarning'/>
+    <var-decl name='PyExc_ResourceWarning' type-id='type-id-16' mangled-name='PyExc_ResourceWarning' visibility='default' filepath='./Include/pyerrors.h' line='150' column='1' elf-symbol-id='PyExc_ResourceWarning'/>
     <function-decl name='_PyErr_TrySetFromCause' mangled-name='_PyErr_TrySetFromCause' filepath='Objects/exceptions.c' line='2939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_TrySetFromCause'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/exceptions.c' line='2939' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicodeTranslateError_Create' mangled-name='_PyUnicodeTranslateError_Create' filepath='Objects/exceptions.c' line='2341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeTranslateError_Create'>
-      <parameter type-id='type-id-15' name='object' filepath='Objects/exceptions.c' line='2342' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/exceptions.c' line='2343' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='2343' column='1'/>
+      <parameter type-id='type-id-16' name='object' filepath='Objects/exceptions.c' line='2342' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='2343' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/exceptions.c' line='2343' column='1'/>
       <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='2343' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <typedef-decl name='Py_UNICODE' type-id='type-id-327' filepath='./Include/cpython/unicodeobject.h' line='10' column='1' id='type-id-436'/>
     <qualified-type-def type-id='type-id-436' const='yes' id='type-id-437'/>
     <pointer-type-def type-id='type-id-437' size-in-bits='64' id='type-id-438'/>
     <function-decl name='PyUnicodeTranslateError_Create' mangled-name='PyUnicodeTranslateError_Create' filepath='Objects/exceptions.c' line='2332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_Create'>
       <parameter type-id='type-id-438' name='object' filepath='Objects/exceptions.c' line='2333' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/exceptions.c' line='2333' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/exceptions.c' line='2334' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='2334' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/exceptions.c' line='2333' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='2334' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/exceptions.c' line='2334' column='1'/>
       <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='2334' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicodeDecodeError_Create' mangled-name='PyUnicodeDecodeError_Create' filepath='Objects/exceptions.c' line='2234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_Create'>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/exceptions.c' line='2235' column='1'/>
       <parameter type-id='type-id-3' name='object' filepath='Objects/exceptions.c' line='2235' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/exceptions.c' line='2235' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/exceptions.c' line='2236' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='2236' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/exceptions.c' line='2235' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='2236' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/exceptions.c' line='2236' column='1'/>
       <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='2236' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicodeEncodeError_Create' mangled-name='PyUnicodeEncodeError_Create' filepath='Objects/exceptions.c' line='2118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_Create'>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/exceptions.c' line='2119' column='1'/>
       <parameter type-id='type-id-438' name='object' filepath='Objects/exceptions.c' line='2119' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/exceptions.c' line='2119' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/exceptions.c' line='2120' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='2120' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/exceptions.c' line='2119' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='2120' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/exceptions.c' line='2120' column='1'/>
       <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='2120' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeTranslateError_SetReason' mangled-name='PyUnicodeTranslateError_SetReason' filepath='Objects/exceptions.c' line='1972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetReason'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeDecodeError_SetReason' mangled-name='PyUnicodeDecodeError_SetReason' filepath='Objects/exceptions.c' line='1964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetReason'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='Objects/exceptions.c' line='1956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetReason'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1972' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeTranslateError_GetReason' mangled-name='PyUnicodeTranslateError_GetReason' filepath='Objects/exceptions.c' line='1949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetReason'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeDecodeError_GetReason' mangled-name='PyUnicodeDecodeError_GetReason' filepath='Objects/exceptions.c' line='1942' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetReason'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_GetReason' mangled-name='PyUnicodeEncodeError_GetReason' filepath='Objects/exceptions.c' line='1935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetReason'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeTranslateError_SetEnd' mangled-name='PyUnicodeTranslateError_SetEnd' filepath='Objects/exceptions.c' line='1928' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeDecodeError_SetEnd' mangled-name='PyUnicodeDecodeError_SetEnd' filepath='Objects/exceptions.c' line='1920' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='Objects/exceptions.c' line='1912' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicodeTranslateError_GetEnd' mangled-name='PyUnicodeTranslateError_GetEnd' filepath='Objects/exceptions.c' line='1905' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1905' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1905' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1905' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeDecodeError_GetEnd' mangled-name='PyUnicodeDecodeError_GetEnd' filepath='Objects/exceptions.c' line='1887' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeEncodeError_GetEnd' mangled-name='PyUnicodeEncodeError_GetEnd' filepath='Objects/exceptions.c' line='1868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEnd'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeTranslateError_SetStart' mangled-name='PyUnicodeTranslateError_SetStart' filepath='Objects/exceptions.c' line='1860' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_SetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeDecodeError_SetStart' mangled-name='PyUnicodeDecodeError_SetStart' filepath='Objects/exceptions.c' line='1852' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_SetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='Objects/exceptions.c' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/exceptions.c' line='1928' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeTranslateError_GetStart' mangled-name='PyUnicodeTranslateError_GetStart' filepath='Objects/exceptions.c' line='1837' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1905' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1905' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1905' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeDecodeError_GetStart' mangled-name='PyUnicodeDecodeError_GetStart' filepath='Objects/exceptions.c' line='1819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeEncodeError_GetStart' mangled-name='PyUnicodeEncodeError_GetStart' filepath='Objects/exceptions.c' line='1800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetStart'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
       <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicodeTranslateError_GetObject' mangled-name='PyUnicodeTranslateError_GetObject' filepath='Objects/exceptions.c' line='1794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeTranslateError_GetObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicodeDecodeError_GetObject' mangled-name='PyUnicodeDecodeError_GetObject' filepath='Objects/exceptions.c' line='1788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='Objects/exceptions.c' line='1782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeDecodeError_GetEncoding' mangled-name='PyUnicodeDecodeError_GetEncoding' filepath='Objects/exceptions.c' line='1776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeDecodeError_GetEncoding'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='Objects/exceptions.c' line='1770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEncoding'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyExceptionClass_Name' mangled-name='PyExceptionClass_Name' filepath='Objects/exceptions.c' line='368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyExceptionClass_Name'>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/exceptions.c' line='368' column='1'/>
+      <parameter type-id='type-id-16' name='ob' filepath='Objects/exceptions.c' line='368' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
     <function-decl name='PyException_SetContext' mangled-name='PyException_SetContext' filepath='Objects/exceptions.c' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetContext'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/exceptions.c' line='362' column='1'/>
-      <parameter type-id='type-id-15' name='context' filepath='Objects/exceptions.c' line='362' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='362' column='1'/>
+      <parameter type-id='type-id-16' name='context' filepath='Objects/exceptions.c' line='362' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyException_GetContext' mangled-name='PyException_GetContext' filepath='Objects/exceptions.c' line='353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetContext'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='353' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyException_SetCause' mangled-name='PyException_SetCause' filepath='Objects/exceptions.c' line='345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetCause'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/exceptions.c' line='345' column='1'/>
-      <parameter type-id='type-id-15' name='cause' filepath='Objects/exceptions.c' line='345' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='345' column='1'/>
+      <parameter type-id='type-id-16' name='cause' filepath='Objects/exceptions.c' line='345' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyException_GetCause' mangled-name='PyException_GetCause' filepath='Objects/exceptions.c' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetCause'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='353' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyException_SetTraceback' mangled-name='PyException_SetTraceback' filepath='Objects/exceptions.c' line='330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_SetTraceback'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyException_GetTraceback' mangled-name='PyException_GetTraceback' filepath='Objects/exceptions.c' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyException_GetTraceback'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='353' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='Objects/exceptions.c' line='1770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetEncoding'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='Objects/exceptions.c' line='1782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetObject'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='Objects/exceptions.c' line='1844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetStart'>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1844' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='1844' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='Objects/exceptions.c' line='1912' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetEnd'>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1844' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/exceptions.c' line='1844' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetReason' mangled-name='PyUnicodeEncodeError_GetReason' filepath='Objects/exceptions.c' line='1935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_GetReason'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='Objects/exceptions.c' line='1956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicodeEncodeError_SetReason'>
+      <parameter type-id='type-id-16' name='exc' filepath='Objects/exceptions.c' line='1956' column='1'/>
+      <parameter type-id='type-id-3' name='reason' filepath='Objects/exceptions.c' line='1956' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='./Include/pyerrors.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GetDictPtr' mangled-name='_PyObject_GetDictPtr' filepath='./Include/cpython/object.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyModule_GetDict' mangled-name='PyModule_GetDict' filepath='./Include/moduleobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_SetItemString' mangled-name='PyDict_SetItemString' filepath='./Include/dictobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_New' mangled-name='PyDict_New' filepath='./Include/dictobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_CallFunction_SizeT' mangled-name='_PyObject_CallFunction_SizeT' filepath='./Include/abstract.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='./Include/unicodeobject.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='./Include/object.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseTupleAndKeywords_SizeT' mangled-name='_PyArg_ParseTupleAndKeywords_SizeT' filepath='./Include/modsupport.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='./Include/dictobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Copy' mangled-name='PyDict_Copy' filepath='./Include/dictobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_SetItemId' mangled-name='_PyDict_SetItemId' filepath='./Include/cpython/dictobject.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='./Include/object.h' line='275' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/genericaliasobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='Py_GenericAliasType' type-id='type-id-149' mangled-name='Py_GenericAliasType' visibility='default' filepath='./Include/genericaliasobject.h' line='9' column='1' elf-symbol-id='Py_GenericAliasType'/>
-    <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='Objects/genericaliasobject.c' line='658' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GenericAlias'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='387' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='387' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='Py_GenericAlias' mangled-name='Py_GenericAlias' filepath='Objects/genericaliasobject.c' line='660' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GenericAlias'>
+      <parameter type-id='type-id-16' name='origin' filepath='Objects/genericaliasobject.c' line='660' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/genericaliasobject.c' line='660' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='./Include/object.h' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='./Include/cpython/unicodeobject.h' line='1009' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='./Include/object.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='./Include/cpython/unicodeobject.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='./Include/cpython/unicodeobject.h' line='678' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='./Include/object.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/genobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -6590,100 +8047,145 @@
     <var-decl name='_PyAsyncGenAThrow_Type' type-id='type-id-149' mangled-name='_PyAsyncGenAThrow_Type' visibility='default' filepath='./Include/genobject.h' line='83' column='1' elf-symbol-id='_PyAsyncGenAThrow_Type'/>
     <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='Objects/genobject.c' line='1457' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyAsyncGen_New'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/genobject.c' line='1457' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/genobject.c' line='1457' column='1'/>
-      <parameter type-id='type-id-15' name='qualname' filepath='Objects/genobject.c' line='1457' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/genobject.c' line='1457' column='1'/>
+      <parameter type-id='type-id-16' name='qualname' filepath='Objects/genobject.c' line='1457' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCoro_New' mangled-name='PyCoro_New' filepath='Objects/genobject.c' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCoro_New'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/genobject.c' line='1185' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/genobject.c' line='1185' column='1'/>
-      <parameter type-id='type-id-15' name='qualname' filepath='Objects/genobject.c' line='1185' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/genobject.c' line='1185' column='1'/>
+      <parameter type-id='type-id-16' name='qualname' filepath='Objects/genobject.c' line='1185' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyGen_New' mangled-name='PyGen_New' filepath='Objects/genobject.c' line='856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGen_New'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/genobject.c' line='856' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyGen_NewWithQualName' mangled-name='PyGen_NewWithQualName' filepath='Objects/genobject.c' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGen_NewWithQualName'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/genobject.c' line='850' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/genobject.c' line='850' column='1'/>
-      <parameter type-id='type-id-15' name='qualname' filepath='Objects/genobject.c' line='850' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/genobject.c' line='850' column='1'/>
+      <parameter type-id='type-id-16' name='qualname' filepath='Objects/genobject.c' line='850' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyGen_FetchStopIterationValue' mangled-name='_PyGen_FetchStopIterationValue' filepath='Objects/genobject.c' line='614' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_FetchStopIterationValue'>
       <parameter type-id='type-id-86' name='pvalue' filepath='Objects/genobject.c' line='614' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyGen_Finalize' mangled-name='_PyGen_Finalize' filepath='Objects/genobject.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_Finalize'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/genobject.c' line='44' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyGen_SetStopIterationValue' mangled-name='_PyGen_SetStopIterationValue' filepath='Objects/genobject.c' line='575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_SetStopIterationValue'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/genobject.c' line='575' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyGen_Finalize' mangled-name='_PyGen_Finalize' filepath='Objects/genobject.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGen_Finalize'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/genobject.c' line='44' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='./Include/cpython/pyerrors.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_GetLineNumber' mangled-name='PyFrame_GetLineNumber' filepath='./Include/pyframe.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='./Include/ceval.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyIter_Check' mangled-name='PyIter_Check' filepath='./Include/abstract.h' line='382' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyException_GetTraceback' mangled-name='PyException_GetTraceback' filepath='./Include/pyerrors.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='./Include/pyerrors.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_WarnUnawaitedCoroutine' mangled-name='_PyErr_WarnUnawaitedCoroutine' filepath='./Include/warnings.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='./Include/internal/pycore_pyerrors.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallFinalizerFromDealloc' mangled-name='PyObject_CallFinalizerFromDealloc' filepath='./Include/cpython/object.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/fileobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyStdPrinter_Type' type-id='type-id-149' mangled-name='PyStdPrinter_Type' visibility='default' filepath='./Include/cpython/fileobject.h' line='10' column='1' elf-symbol-id='PyStdPrinter_Type'/>
     <function-decl name='PyFile_OpenCode' mangled-name='PyFile_OpenCode' filepath='Objects/fileobject.c' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCode'>
       <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='Objects/fileobject.c' line='536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCodeObject'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFile_SetOpenCodeHook' mangled-name='PyFile_SetOpenCodeHook' filepath='Objects/fileobject.c' line='516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_SetOpenCodeHook'>
       <parameter type-id='type-id-258' name='hook' filepath='Objects/fileobject.c' line='516' column='1'/>
-      <parameter type-id='type-id-20' name='userData' filepath='Objects/fileobject.c' line='516' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-21' name='userData' filepath='Objects/fileobject.c' line='516' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFile_NewStdPrinter' mangled-name='PyFile_NewStdPrinter' filepath='Objects/fileobject.c' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_NewStdPrinter'>
-      <parameter type-id='type-id-8' name='fd' filepath='Objects/fileobject.c' line='329' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='fd' filepath='Objects/fileobject.c' line='329' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='Py_UniversalNewlineFgets' mangled-name='Py_UniversalNewlineFgets' filepath='Objects/fileobject.c' line='252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_UniversalNewlineFgets'>
       <parameter type-id='type-id-72' name='buf' filepath='Objects/fileobject.c' line='252' column='1'/>
-      <parameter type-id='type-id-8' name='n' filepath='Objects/fileobject.c' line='252' column='1'/>
+      <parameter type-id='type-id-9' name='n' filepath='Objects/fileobject.c' line='252' column='1'/>
       <parameter type-id='type-id-188' name='stream' filepath='Objects/fileobject.c' line='252' column='1'/>
-      <parameter type-id='type-id-15' name='fobj' filepath='Objects/fileobject.c' line='252' column='1'/>
+      <parameter type-id='type-id-16' name='fobj' filepath='Objects/fileobject.c' line='252' column='1'/>
       <return type-id='type-id-72'/>
     </function-decl>
     <function-decl name='_PyLong_FileDescriptor_Converter' mangled-name='_PyLong_FileDescriptor_Converter' filepath='Objects/fileobject.c' line='227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FileDescriptor_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/fileobject.c' line='227' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/fileobject.c' line='227' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_AsFileDescriptor' mangled-name='PyObject_AsFileDescriptor' filepath='Objects/fileobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_AsFileDescriptor'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/fileobject.c' line='180' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/fileobject.c' line='180' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFile_WriteString' mangled-name='PyFile_WriteString' filepath='Objects/fileobject.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_WriteString'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/fileobject.c' line='150' column='1'/>
-      <parameter type-id='type-id-15' name='f' filepath='Objects/fileobject.c' line='150' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='f' filepath='Objects/fileobject.c' line='150' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFile_WriteObject' mangled-name='PyFile_WriteObject' filepath='Objects/fileobject.c' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_WriteObject'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/fileobject.c' line='119' column='1'/>
-      <parameter type-id='type-id-15' name='f' filepath='Objects/fileobject.c' line='119' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/fileobject.c' line='119' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/fileobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-16' name='f' filepath='Objects/fileobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/fileobject.c' line='119' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFile_GetLine' mangled-name='PyFile_GetLine' filepath='Objects/fileobject.c' line='54' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_GetLine'>
-      <parameter type-id='type-id-15' name='f' filepath='Objects/fileobject.c' line='54' column='1'/>
-      <parameter type-id='type-id-8' name='n' filepath='Objects/fileobject.c' line='54' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='f' filepath='Objects/fileobject.c' line='54' column='1'/>
+      <parameter type-id='type-id-9' name='n' filepath='Objects/fileobject.c' line='54' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFile_FromFd' mangled-name='PyFile_FromFd' filepath='Objects/fileobject.c' line='33' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_FromFd'>
-      <parameter type-id='type-id-8' name='fd' filepath='Objects/fileobject.c' line='33' column='1'/>
+      <parameter type-id='type-id-9' name='fd' filepath='Objects/fileobject.c' line='33' column='1'/>
       <parameter type-id='type-id-3' name='name' filepath='Objects/fileobject.c' line='33' column='1'/>
       <parameter type-id='type-id-3' name='mode' filepath='Objects/fileobject.c' line='33' column='1'/>
-      <parameter type-id='type-id-8' name='buffering' filepath='Objects/fileobject.c' line='33' column='1'/>
+      <parameter type-id='type-id-9' name='buffering' filepath='Objects/fileobject.c' line='33' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/fileobject.c' line='33' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/fileobject.c' line='34' column='1'/>
       <parameter type-id='type-id-3' name='newline' filepath='Objects/fileobject.c' line='34' column='1'/>
-      <parameter type-id='type-id-8' name='closefd' filepath='Objects/fileobject.c' line='34' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='closefd' filepath='Objects/fileobject.c' line='34' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='Objects/fileobject.c' line='536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFile_OpenCodeObject'>
+      <parameter type-id='type-id-16' name='path' filepath='Objects/fileobject.c' line='536' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='Py_IsInitialized' mangled-name='Py_IsInitialized' filepath='./Include/pylifecycle.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__uflow' mangled-name='__uflow' filepath='/usr/include/stdio.h' line='858' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='flockfile' mangled-name='flockfile' filepath='/usr/include/stdio.h' line='840' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='funlockfile' mangled-name='funlockfile' filepath='/usr/include/stdio.h' line='847' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_write' mangled-name='_Py_write' filepath='./Include/cpython/fileutils.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='./Include/cpython/unicodeobject.h' line='776' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/floatobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -6692,55 +8194,51 @@
     <pointer-type-def type-id='type-id-439' size-in-bits='64' id='type-id-440'/>
     <function-decl name='_PyFloat_Unpack8' mangled-name='_PyFloat_Unpack8' filepath='Objects/floatobject.c' line='2568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack8'>
       <parameter type-id='type-id-440' name='p' filepath='Objects/floatobject.c' line='2568' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2568' column='1'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2568' column='1'/>
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='_PyFloat_Unpack4' mangled-name='_PyFloat_Unpack4' filepath='Objects/floatobject.c' line='2490' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack4'>
       <parameter type-id='type-id-440' name='p' filepath='Objects/floatobject.c' line='2568' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2568' column='1'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2568' column='1'/>
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='_PyFloat_Unpack2' mangled-name='_PyFloat_Unpack2' filepath='Objects/floatobject.c' line='2420' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Unpack2'>
       <parameter type-id='type-id-440' name='p' filepath='Objects/floatobject.c' line='2420' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2420' column='1'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2420' column='1'/>
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='_PyFloat_Pack8' mangled-name='_PyFloat_Pack8' filepath='Objects/floatobject.c' line='2291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack8'>
       <parameter type-id='type-id-371' name='x' filepath='Objects/floatobject.c' line='2291' column='1'/>
       <parameter type-id='type-id-339' name='p' filepath='Objects/floatobject.c' line='2291' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2291' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2291' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyFloat_Pack4' mangled-name='_PyFloat_Pack4' filepath='Objects/floatobject.c' line='2184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack4'>
-      <parameter type-id='type-id-371' name='x' filepath='Objects/floatobject.c' line='2291' column='1'/>
-      <parameter type-id='type-id-339' name='p' filepath='Objects/floatobject.c' line='2291' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2291' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-371' name='x' filepath='Objects/floatobject.c' line='2184' column='1'/>
+      <parameter type-id='type-id-339' name='p' filepath='Objects/floatobject.c' line='2184' column='1'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2184' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyFloat_Pack2' mangled-name='_PyFloat_Pack2' filepath='Objects/floatobject.c' line='2080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_Pack2'>
       <parameter type-id='type-id-371' name='x' filepath='Objects/floatobject.c' line='2080' column='1'/>
       <parameter type-id='type-id-339' name='p' filepath='Objects/floatobject.c' line='2080' column='1'/>
-      <parameter type-id='type-id-8' name='le' filepath='Objects/floatobject.c' line='2080' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='le' filepath='Objects/floatobject.c' line='2080' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyFloat_DebugMallocStats' mangled-name='_PyFloat_DebugMallocStats' filepath='Objects/floatobject.c' line='2059' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_DebugMallocStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/floatobject.c' line='2059' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='Objects/floatobject.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_AsDouble'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/floatobject.c' line='253' column='1'/>
-      <return type-id='type-id-371'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyFloat_FromString' mangled-name='PyFloat_FromString' filepath='Objects/floatobject.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_FromString'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/floatobject.c' line='181' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/floatobject.c' line='181' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFloat_FromDouble' mangled-name='PyFloat_FromDouble' filepath='Objects/floatobject.c' line='124' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_FromDouble'>
       <parameter type-id='type-id-371' name='fval' filepath='Objects/floatobject.c' line='124' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFloat_GetInfo' mangled-name='PyFloat_GetInfo' filepath='Objects/floatobject.c' line='87' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetInfo'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFloat_GetMin' mangled-name='PyFloat_GetMin' filepath='Objects/floatobject.c' line='43' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetMin'>
       <return type-id='type-id-371'/>
@@ -6748,6 +8246,82 @@
     <function-decl name='PyFloat_GetMax' mangled-name='PyFloat_GetMax' filepath='Objects/floatobject.c' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_GetMax'>
       <return type-id='type-id-371'/>
     </function-decl>
+    <function-decl name='PyFloat_AsDouble' mangled-name='PyFloat_AsDouble' filepath='Objects/floatobject.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFloat_AsDouble'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/floatobject.c' line='253' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='ldexp' mangled-name='ldexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_infinity' mangled-name='_Py_dg_infinity' filepath='./Include/internal/pycore_dtoa.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_stdnan' mangled-name='_Py_dg_stdnan' filepath='./Include/internal/pycore_dtoa.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='frexp' mangled-name='frexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDebugAllocatorStats' mangled-name='_PyDebugAllocatorStats' filepath='./Include/cpython/object.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='./Include/structseq.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_parse_inf_or_nan' mangled-name='_Py_parse_inf_or_nan' filepath='./Include/pystrtod.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strtol' mangled-name='strtol' filepath='/usr/include/stdlib.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fmod' mangled-name='fmod' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='./Include/pyerrors.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Lshift' mangled-name='_PyLong_Lshift' filepath='./Include/longobject.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='modf' mangled-name='modf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromDouble' mangled-name='PyLong_FromDouble' filepath='./Include/longobject.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Negative' mangled-name='PyNumber_Negative' filepath='./Include/abstract.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_NumBits' mangled-name='_PyLong_NumBits' filepath='./Include/longobject.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyStructSequence_New' mangled-name='PyStructSequence_New' filepath='./Include/structseq.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='./Include/cpython/unicodeobject.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_get_387controlword' mangled-name='_Py_get_387controlword' filepath='./Include/pymath.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_set_387controlword' mangled-name='_Py_set_387controlword' filepath='./Include/pymath.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_dtoa' mangled-name='_Py_dg_dtoa' filepath='./Include/internal/pycore_dtoa.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_strtod' mangled-name='_Py_dg_strtod' filepath='./Include/internal/pycore_dtoa.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_freedtoa' mangled-name='_Py_dg_freedtoa' filepath='./Include/internal/pycore_dtoa.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='round' mangled-name='round' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='./Include/floatobject.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/frameobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyFrame_Type' type-id='type-id-149' mangled-name='PyFrame_Type' visibility='default' filepath='./Include/cpython/frameobject.h' line='66' column='1' elf-symbol-id='PyFrame_Type'/>
@@ -6761,20 +8335,20 @@
     </function-decl>
     <function-decl name='_PyFrame_DebugMallocStats' mangled-name='_PyFrame_DebugMallocStats' filepath='Objects/frameobject.c' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFrame_DebugMallocStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/floatobject.c' line='2059' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyFrame_LocalsToFast' mangled-name='PyFrame_LocalsToFast' filepath='Objects/frameobject.c' line='1085' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_LocalsToFast'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/frameobject.c' line='1085' column='1'/>
-      <parameter type-id='type-id-8' name='clear' filepath='Objects/frameobject.c' line='1085' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-9' name='clear' filepath='Objects/frameobject.c' line='1085' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyFrame_FastToLocals' mangled-name='PyFrame_FastToLocals' filepath='Objects/frameobject.c' line='1073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_FastToLocals'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/frameobject.c' line='1073' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyFrame_FastToLocalsWithError' mangled-name='PyFrame_FastToLocalsWithError' filepath='Objects/frameobject.c' line='1013' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_FastToLocalsWithError'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/frameobject.c' line='1013' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <pointer-type-def type-id='type-id-345' size-in-bits='64' id='type-id-441'/>
     <function-decl name='PyFrame_BlockPop' mangled-name='PyFrame_BlockPop' filepath='Objects/frameobject.c' line='904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_BlockPop'>
@@ -6783,21 +8357,54 @@
     </function-decl>
     <function-decl name='PyFrame_BlockSetup' mangled-name='PyFrame_BlockSetup' filepath='Objects/frameobject.c' line='891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_BlockSetup'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/frameobject.c' line='891' column='1'/>
-      <parameter type-id='type-id-8' name='type' filepath='Objects/frameobject.c' line='891' column='1'/>
-      <parameter type-id='type-id-8' name='handler' filepath='Objects/frameobject.c' line='891' column='1'/>
-      <parameter type-id='type-id-8' name='level' filepath='Objects/frameobject.c' line='891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-9' name='type' filepath='Objects/frameobject.c' line='891' column='1'/>
+      <parameter type-id='type-id-9' name='handler' filepath='Objects/frameobject.c' line='891' column='1'/>
+      <parameter type-id='type-id-9' name='level' filepath='Objects/frameobject.c' line='891' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyFrame_New' mangled-name='PyFrame_New' filepath='Objects/frameobject.c' line='863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_New'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/frameobject.c' line='863' column='1'/>
       <parameter type-id='type-id-334' name='code' filepath='Objects/frameobject.c' line='863' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Objects/frameobject.c' line='864' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Objects/frameobject.c' line='864' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Objects/frameobject.c' line='864' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Objects/frameobject.c' line='864' column='1'/>
       <return type-id='type-id-223'/>
     </function-decl>
     <function-decl name='PyFrame_GetLineNumber' mangled-name='PyFrame_GetLineNumber' filepath='Objects/frameobject.c' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrame_GetLineNumber'>
       <parameter type-id='type-id-223' name='f' filepath='Objects/frameobject.c' line='42' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyCell_Set' mangled-name='PyCell_Set' filepath='./Include/cellobject.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_DelItem' mangled-name='PyObject_DelItem' filepath='./Include/abstract.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_SetItem' mangled-name='PyObject_SetItem' filepath='./Include/abstract.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetBuiltins' mangled-name='_PyEval_GetBuiltins' filepath='./Include/internal/pycore_ceval.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_GetItemIdWithError' mangled-name='_PyDict_GetItemIdWithError' filepath='./Include/cpython/dictobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='./Include/objimpl.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_NewVar' mangled-name='_PyObject_GC_NewVar' filepath='./Include/objimpl.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCode_InitAddressRange' mangled-name='_PyCode_InitAddressRange' filepath='./Include/cpython/code.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLineTable_NextAddressRange' mangled-name='PyLineTable_NextAddressRange' filepath='./Include/cpython/code.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGen_Finalize' mangled-name='_PyGen_Finalize' filepath='./Include/genobject.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCode_Addr2Line' mangled-name='PyCode_Addr2Line' filepath='./Include/cpython/code.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/funcobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -6805,71 +8412,80 @@
     <var-decl name='PyClassMethod_Type' type-id='type-id-149' mangled-name='PyClassMethod_Type' visibility='default' filepath='./Include/funcobject.h' line='100' column='1' elf-symbol-id='PyClassMethod_Type'/>
     <var-decl name='PyStaticMethod_Type' type-id='type-id-149' mangled-name='PyStaticMethod_Type' visibility='default' filepath='./Include/funcobject.h' line='101' column='1' elf-symbol-id='PyStaticMethod_Type'/>
     <function-decl name='PyStaticMethod_New' mangled-name='PyStaticMethod_New' filepath='Objects/funcobject.c' line='1145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStaticMethod_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyClassMethod_New' mangled-name='PyClassMethod_New' filepath='Objects/funcobject.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyClassMethod_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_SetAnnotations' mangled-name='PyFunction_SetAnnotations' filepath='Objects/funcobject.c' line='235' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetAnnotations'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <parameter type-id='type-id-16' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFunction_GetAnnotations' mangled-name='PyFunction_GetAnnotations' filepath='Objects/funcobject.c' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetAnnotations'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_SetClosure' mangled-name='PyFunction_SetClosure' filepath='Objects/funcobject.c' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetClosure'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <parameter type-id='type-id-16' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFunction_GetClosure' mangled-name='PyFunction_GetClosure' filepath='Objects/funcobject.c' line='193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetClosure'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_SetKwDefaults' mangled-name='PyFunction_SetKwDefaults' filepath='Objects/funcobject.c' line='172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetKwDefaults'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <parameter type-id='type-id-16' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFunction_GetKwDefaults' mangled-name='PyFunction_GetKwDefaults' filepath='Objects/funcobject.c' line='162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetKwDefaults'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_SetDefaults' mangled-name='PyFunction_SetDefaults' filepath='Objects/funcobject.c' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_SetDefaults'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <parameter type-id='type-id-16' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyFunction_GetDefaults' mangled-name='PyFunction_GetDefaults' filepath='Objects/funcobject.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetDefaults'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_GetModule' mangled-name='PyFunction_GetModule' filepath='Objects/funcobject.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetModule'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_GetGlobals' mangled-name='PyFunction_GetGlobals' filepath='Objects/funcobject.c' line='112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetGlobals'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_GetCode' mangled-name='PyFunction_GetCode' filepath='Objects/funcobject.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_GetCode'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_New' mangled-name='PyFunction_New' filepath='Objects/funcobject.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_New'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyFunction_NewWithQualName' mangled-name='PyFunction_NewWithQualName' filepath='Objects/funcobject.c' line='11' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFunction_NewWithQualName'>
-      <parameter type-id='type-id-15' name='code' filepath='Objects/funcobject.c' line='11' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Objects/funcobject.c' line='11' column='1'/>
-      <parameter type-id='type-id-15' name='qualname' filepath='Objects/funcobject.c' line='11' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/funcobject.c' line='11' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Objects/funcobject.c' line='11' column='1'/>
+      <parameter type-id='type-id-16' name='qualname' filepath='Objects/funcobject.c' line='11' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyMethod_New' mangled-name='PyMethod_New' filepath='./Include/classobject.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_Size' mangled-name='PyTuple_Size' filepath='./Include/tupleobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_BuiltinsFromGlobals' mangled-name='_PyEval_BuiltinsFromGlobals' filepath='./Include/internal/pycore_ceval.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/interpreteridobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -6879,7 +8495,7 @@
         <var-decl name='next' type-id='type-id-225' visibility='default' filepath='./Include/internal/pycore_interp.h' line='222' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tstate_head' type-id='type-id-10' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
+        <var-decl name='tstate_head' type-id='type-id-11' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='runtime' type-id='type-id-443' visibility='default' filepath='./Include/internal/pycore_interp.h' line='228' column='1'/>
@@ -6891,13 +8507,13 @@
         <var-decl name='id_refcount' type-id='type-id-227' visibility='default' filepath='./Include/internal/pycore_interp.h' line='231' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='requires_idref' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
+        <var-decl name='requires_idref' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='id_mutex' type-id='type-id-228' visibility='default' filepath='./Include/internal/pycore_interp.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='finalizing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
+        <var-decl name='finalizing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='ceval' type-id='type-id-229' visibility='default' filepath='./Include/internal/pycore_interp.h' line='237' column='1'/>
@@ -6906,73 +8522,73 @@
         <var-decl name='gc' type-id='type-id-230' visibility='default' filepath='./Include/internal/pycore_interp.h' line='238' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6848'>
-        <var-decl name='modules' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
+        <var-decl name='modules' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6912'>
-        <var-decl name='modules_by_index' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
+        <var-decl name='modules_by_index' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6976'>
-        <var-decl name='sysdict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
+        <var-decl name='sysdict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7040'>
-        <var-decl name='builtins' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
+        <var-decl name='builtins' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7104'>
-        <var-decl name='importlib' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
+        <var-decl name='importlib' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7168'>
-        <var-decl name='num_threads' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
+        <var-decl name='num_threads' type-id='type-id-33' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7232'>
         <var-decl name='pythread_stacksize' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_interp.h' line='256' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7296'>
-        <var-decl name='codec_search_path' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
+        <var-decl name='codec_search_path' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7360'>
-        <var-decl name='codec_search_cache' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
+        <var-decl name='codec_search_cache' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7424'>
-        <var-decl name='codec_error_registry' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
+        <var-decl name='codec_error_registry' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7488'>
-        <var-decl name='codecs_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
+        <var-decl name='codecs_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7552'>
         <var-decl name='config' type-id='type-id-231' visibility='default' filepath='./Include/internal/pycore_interp.h' line='263' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10688'>
-        <var-decl name='dlopenflags' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
+        <var-decl name='dlopenflags' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10752'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10816'>
-        <var-decl name='builtins_copy' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
+        <var-decl name='builtins_copy' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10880'>
-        <var-decl name='import_func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
+        <var-decl name='import_func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10944'>
         <var-decl name='eval_frame' type-id='type-id-232' visibility='default' filepath='./Include/internal/pycore_interp.h' line='273' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11008'>
-        <var-decl name='co_extra_user_count' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
+        <var-decl name='co_extra_user_count' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11072'>
         <var-decl name='co_extra_freefuncs' type-id='type-id-233' visibility='default' filepath='./Include/internal/pycore_interp.h' line='276' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27392'>
-        <var-decl name='before_forkers' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
+        <var-decl name='before_forkers' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27456'>
-        <var-decl name='after_forkers_parent' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
+        <var-decl name='after_forkers_parent' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27520'>
-        <var-decl name='after_forkers_child' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
+        <var-decl name='after_forkers_child' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27584'>
-        <var-decl name='tstate_next_unique_id' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
+        <var-decl name='tstate_next_unique_id' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27648'>
         <var-decl name='warnings' type-id='type-id-234' visibility='default' filepath='./Include/internal/pycore_interp.h' line='286' column='1'/>
@@ -6981,7 +8597,7 @@
         <var-decl name='atexit' type-id='type-id-235' visibility='default' filepath='./Include/internal/pycore_interp.h' line='287' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28032'>
-        <var-decl name='audit_hooks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
+        <var-decl name='audit_hooks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28096'>
         <var-decl name='small_ints' type-id='type-id-236' visibility='default' filepath='./Include/internal/pycore_interp.h' line='296' column='1'/>
@@ -7030,23 +8646,50 @@
     <pointer-type-def type-id='type-id-445' size-in-bits='64' id='type-id-443'/>
     <class-decl name='_Py_frame_state' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='138' column='1' id='type-id-444'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='free_list' type-id='type-id-12' visibility='default' filepath='./Include/internal/pycore_interp.h' line='139' column='1'/>
+        <var-decl name='free_list' type-id='type-id-13' visibility='default' filepath='./Include/internal/pycore_interp.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
       </data-member>
     </class-decl>
     <function-decl name='_PyInterpreterID_LookUp' mangled-name='_PyInterpreterID_LookUp' filepath='Objects/interpreteridobject.c' line='287' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterID_LookUp'>
-      <parameter type-id='type-id-15' name='requested_id' filepath='Objects/interpreteridobject.c' line='287' column='1'/>
+      <parameter type-id='type-id-16' name='requested_id' filepath='Objects/interpreteridobject.c' line='287' column='1'/>
       <return type-id='type-id-222'/>
     </function-decl>
     <function-decl name='_PyInterpreterState_GetIDObject' mangled-name='_PyInterpreterState_GetIDObject' filepath='Objects/interpreteridobject.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetIDObject'>
       <parameter type-id='type-id-222' name='interp' filepath='Objects/interpreteridobject.c' line='274' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyInterpreterID_New' mangled-name='_PyInterpreterID_New' filepath='Objects/interpreteridobject.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterID_New'>
       <parameter type-id='type-id-227' name='id' filepath='Objects/interpreteridobject.c' line='268' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_AsLongLong' mangled-name='PyLong_AsLongLong' filepath='./Include/longobject.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='./Include/internal/pycore_interp.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDIncref' mangled-name='_PyInterpreterState_IDIncref' filepath='./Include/internal/pycore_interp.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='./Include/internal/pycore_interp.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='./Include/internal/pycore_interp.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='./Include/pystate.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='./Include/longobject.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyArg_ParseTupleAndKeywords' mangled-name='PyArg_ParseTupleAndKeywords' filepath='./Include/modsupport.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsLongLongAndOverflow' mangled-name='PyLong_AsLongLongAndOverflow' filepath='./Include/longobject.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/iterobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -7054,13 +8697,25 @@
     <var-decl name='PyCallIter_Type' type-id='type-id-149' mangled-name='PyCallIter_Type' visibility='default' filepath='./Include/iterobject.h' line='9' column='1' elf-symbol-id='PyCallIter_Type'/>
     <var-decl name='_PyAnextAwaitable_Type' type-id='type-id-149' visibility='default' filepath='./Include/iterobject.h' line='11' column='1'/>
     <function-decl name='PyCallIter_New' mangled-name='PyCallIter_New' filepath='Objects/iterobject.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallIter_New'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='387' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='387' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/iterobject.c' line='181' column='1'/>
+      <parameter type-id='type-id-16' name='sentinel' filepath='Objects/iterobject.c' line='181' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySeqIter_New' mangled-name='PySeqIter_New' filepath='Objects/iterobject.c' line='15' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySeqIter_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='seq' filepath='Objects/iterobject.c' line='15' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyCoro_GetAwaitableIter' mangled-name='_PyCoro_GetAwaitableIter' filepath='./Include/genobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGen_SetStopIterationValue' mangled-name='_PyGen_SetStopIterationValue' filepath='./Include/genobject.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallMethod' mangled-name='PyObject_CallMethod' filepath='./Include/abstract.h' line='194' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_HasLen' mangled-name='_PyObject_HasLen' filepath='./Include/cpython/abstract.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/listobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -7068,104 +8723,115 @@
     <var-decl name='PyListIter_Type' type-id='type-id-149' mangled-name='PyListIter_Type' visibility='default' filepath='./Include/listobject.h' line='21' column='1' elf-symbol-id='PyListIter_Type'/>
     <var-decl name='PyListRevIter_Type' type-id='type-id-149' mangled-name='PyListRevIter_Type' visibility='default' filepath='./Include/listobject.h' line='22' column='1' elf-symbol-id='PyListRevIter_Type'/>
     <function-decl name='PyList_AsTuple' mangled-name='PyList_AsTuple' filepath='Objects/listobject.c' line='2504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_AsTuple'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/listobject.c' line='2504' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyList_Reverse' mangled-name='PyList_Reverse' filepath='Objects/listobject.c' line='2490' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Reverse'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/listobject.c' line='2490' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='Objects/listobject.c' line='2461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Sort'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/listobject.c' line='2461' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyList_Extend' mangled-name='_PyList_Extend' filepath='Objects/listobject.c' line='978' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_Extend'>
       <parameter type-id='type-id-382' name='self' filepath='Objects/listobject.c' line='978' column='1'/>
-      <parameter type-id='type-id-15' name='iterable' filepath='Objects/listobject.c' line='978' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='iterable' filepath='Objects/listobject.c' line='978' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyList_SetSlice' mangled-name='PyList_SetSlice' filepath='Objects/listobject.c' line='723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetSlice'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/listobject.c' line='723' column='1'/>
-      <parameter type-id='type-id-30' name='ilow' filepath='Objects/listobject.c' line='723' column='1'/>
-      <parameter type-id='type-id-30' name='ihigh' filepath='Objects/listobject.c' line='723' column='1'/>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/listobject.c' line='723' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/listobject.c' line='723' column='1'/>
+      <parameter type-id='type-id-31' name='ilow' filepath='Objects/listobject.c' line='723' column='1'/>
+      <parameter type-id='type-id-31' name='ihigh' filepath='Objects/listobject.c' line='723' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/listobject.c' line='723' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='Objects/listobject.c' line='482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetSlice'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/listobject.c' line='482' column='1'/>
-      <parameter type-id='type-id-30' name='ilow' filepath='Objects/listobject.c' line='482' column='1'/>
-      <parameter type-id='type-id-30' name='ihigh' filepath='Objects/listobject.c' line='482' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/listobject.c' line='482' column='1'/>
+      <parameter type-id='type-id-31' name='ilow' filepath='Objects/listobject.c' line='482' column='1'/>
+      <parameter type-id='type-id-31' name='ihigh' filepath='Objects/listobject.c' line='482' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyList_Append' mangled-name='PyList_Append' filepath='Objects/listobject.c' line='320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Append'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/listobject.c' line='320' column='1'/>
+      <parameter type-id='type-id-16' name='newitem' filepath='Objects/listobject.c' line='320' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='Objects/listobject.c' line='295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Insert'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/listobject.c' line='295' column='1'/>
-      <parameter type-id='type-id-30' name='where' filepath='Objects/listobject.c' line='295' column='1'/>
-      <parameter type-id='type-id-15' name='newitem' filepath='Objects/listobject.c' line='295' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/listobject.c' line='295' column='1'/>
+      <parameter type-id='type-id-31' name='where' filepath='Objects/listobject.c' line='295' column='1'/>
+      <parameter type-id='type-id-16' name='newitem' filepath='Objects/listobject.c' line='295' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='Objects/listobject.c' line='245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_SetItem'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/listobject.c' line='245' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/listobject.c' line='245' column='1'/>
+      <parameter type-id='type-id-16' name='newitem' filepath='Objects/listobject.c' line='246' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='Objects/listobject.c' line='225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_GetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/listobject.c' line='225' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/listobject.c' line='225' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/listobject.c' line='225' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/listobject.c' line='225' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='Objects/listobject.c' line='199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/bytesobject.c' line='1224' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyList_New' mangled-name='PyList_New' filepath='Objects/listobject.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyList_New'>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/listobject.c' line='140' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/listobject.c' line='140' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyList_DebugMallocStats' mangled-name='_PyList_DebugMallocStats' filepath='Objects/listobject.c' line='131' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyList_DebugMallocStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/floatobject.c' line='2059' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_Track' mangled-name='PyObject_GC_Track' filepath='./Include/objimpl.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='./Include/cpython/ceval.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='./Include/cpython/unicodeobject.h' line='671' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='./Include/object.h' line='300' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='./Include/object.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/longobject.c' comp-dir-path='/src' language='LANG_C99'>
 
     <array-type-def dimensions='1' type-id='type-id-341' size-in-bits='2048' id='type-id-446'>
-      <subrange length='256' type-id='type-id-18' id='type-id-362'/>
+      <subrange length='256' type-id='type-id-19' id='type-id-362'/>
 
     </array-type-def>
     <var-decl name='_PyLong_DigitValue' type-id='type-id-446' mangled-name='_PyLong_DigitValue' visibility='default' filepath='./Include/longobject.h' line='79' column='1' elf-symbol-id='_PyLong_DigitValue'/>
     <var-decl name='PyLong_Type' type-id='type-id-149' mangled-name='PyLong_Type' visibility='default' filepath='./Include/longobject.h' line='12' column='1' elf-symbol-id='PyLong_Type'/>
     <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='Objects/longobject.c' line='5688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_GetInfo'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_DivmodNear' mangled-name='_PyLong_DivmodNear' filepath='Objects/longobject.c' line='5064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_DivmodNear'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/longobject.c' line='5064' column='1'/>
-      <parameter type-id='type-id-15' name='b' filepath='Objects/longobject.c' line='5064' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/longobject.c' line='5064' column='1'/>
+      <parameter type-id='type-id-16' name='b' filepath='Objects/longobject.c' line='5064' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_GCD' mangled-name='_PyLong_GCD' filepath='Objects/longobject.c' line='4702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_GCD'>
-      <parameter type-id='type-id-15' name='aarg' filepath='Objects/longobject.c' line='4702' column='1'/>
-      <parameter type-id='type-id-15' name='barg' filepath='Objects/longobject.c' line='4702' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='aarg' filepath='Objects/longobject.c' line='4702' column='1'/>
+      <parameter type-id='type-id-16' name='barg' filepath='Objects/longobject.c' line='4702' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_Lshift' mangled-name='_PyLong_Lshift' filepath='Objects/longobject.c' line='4510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Lshift'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/longobject.c' line='4510' column='1'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/longobject.c' line='4510' column='1'/>
       <parameter type-id='type-id-157' name='shiftby' filepath='Objects/longobject.c' line='4510' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_Rshift' mangled-name='_PyLong_Rshift' filepath='Objects/longobject.c' line='4439' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Rshift'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/longobject.c' line='4510' column='1'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/longobject.c' line='4510' column='1'/>
       <parameter type-id='type-id-157' name='shiftby' filepath='Objects/longobject.c' line='4510' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='Objects/longobject.c' line='2850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsDouble'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/longobject.c' line='2850' column='1'/>
-      <return type-id='type-id-371'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_Frexp' mangled-name='_PyLong_Frexp' filepath='Objects/longobject.c' line='2738' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Frexp'>
       <parameter type-id='type-id-356' name='a' filepath='Objects/longobject.c' line='2738' column='1'/>
@@ -7173,36 +8839,36 @@
       <return type-id='type-id-371'/>
     </function-decl>
     <function-decl name='PyLong_FromUnicodeObject' mangled-name='PyLong_FromUnicodeObject' filepath='Objects/longobject.c' line='2497' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnicodeObject'>
-      <parameter type-id='type-id-15' name='u' filepath='Objects/longobject.c' line='2497' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='2497' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='u' filepath='Objects/longobject.c' line='2497' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='2497' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_FromBytes' mangled-name='_PyLong_FromBytes' filepath='Objects/longobject.c' line='2477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromBytes'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/longobject.c' line='2477' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/longobject.c' line='2477' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='2477' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/longobject.c' line='2477' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='2477' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyLong_FromString' mangled-name='PyLong_FromString' filepath='Objects/longobject.c' line='2116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromString'>
       <parameter type-id='type-id-3' name='str' filepath='Objects/longobject.c' line='2116' column='1'/>
       <parameter type-id='type-id-215' name='pend' filepath='Objects/longobject.c' line='2116' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='2116' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='2116' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_FormatBytesWriter' mangled-name='_PyLong_FormatBytesWriter' filepath='Objects/longobject.c' line='1965' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatBytesWriter'>
       <parameter type-id='type-id-214' name='writer' filepath='Objects/longobject.c' line='1965' column='1'/>
       <parameter type-id='type-id-72' name='str' filepath='Objects/longobject.c' line='1965' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/longobject.c' line='1966' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='1967' column='1'/>
-      <parameter type-id='type-id-8' name='alternate' filepath='Objects/longobject.c' line='1967' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1966' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='1967' column='1'/>
+      <parameter type-id='type-id-9' name='alternate' filepath='Objects/longobject.c' line='1967' column='1'/>
       <return type-id='type-id-72'/>
     </function-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='448' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-447' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='603' column='1' id='type-id-448'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='buffer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='604' column='1'/>
+        <var-decl name='buffer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='604' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='605' column='1'/>
+        <var-decl name='data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='605' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='kind' type-id='type-id-449' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='606' column='1'/>
@@ -7211,13 +8877,13 @@
         <var-decl name='maxchar' type-id='type-id-450' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='607' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='608' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='608' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='pos' type-id='type-id-30' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='609' column='1'/>
+        <var-decl name='pos' type-id='type-id-31' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='609' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='min_length' type-id='type-id-30' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='612' column='1'/>
+        <var-decl name='min_length' type-id='type-id-31' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='612' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='min_char' type-id='type-id-450' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='615' column='1'/>
@@ -7241,155 +8907,174 @@
     <pointer-type-def type-id='type-id-447' size-in-bits='64' id='type-id-451'/>
     <function-decl name='_PyLong_FormatWriter' mangled-name='_PyLong_FormatWriter' filepath='Objects/longobject.c' line='1952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatWriter'>
       <parameter type-id='type-id-451' name='writer' filepath='Objects/longobject.c' line='1952' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/longobject.c' line='1953' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/longobject.c' line='1954' column='1'/>
-      <parameter type-id='type-id-8' name='alternate' filepath='Objects/longobject.c' line='1954' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1953' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='1954' column='1'/>
+      <parameter type-id='type-id-9' name='alternate' filepath='Objects/longobject.c' line='1954' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_Format' mangled-name='_PyLong_Format' filepath='Objects/longobject.c' line='1938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Format'>
-      <parameter type-id='type-id-15' name='n' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1938' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/longobject.c' line='1938' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_Size_t_Converter' mangled-name='_PyLong_Size_t_Converter' filepath='Objects/longobject.c' line='1424' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Size_t_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_UnsignedLongLong_Converter' mangled-name='_PyLong_UnsignedLongLong_Converter' filepath='Objects/longobject.c' line='1407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedLongLong_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_UnsignedLong_Converter' mangled-name='_PyLong_UnsignedLong_Converter' filepath='Objects/longobject.c' line='1390' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedLong_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/longobject.c' line='1424' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_UnsignedInt_Converter' mangled-name='_PyLong_UnsignedInt_Converter' filepath='Objects/longobject.c' line='1368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedInt_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1368' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/longobject.c' line='1368' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_UnsignedShort_Converter' mangled-name='_PyLong_UnsignedShort_Converter' filepath='Objects/longobject.c' line='1346' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_UnsignedShort_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='1368' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/longobject.c' line='1368' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-8' size-in-bits='64' id='type-id-452'/>
+    <pointer-type-def type-id='type-id-9' size-in-bits='64' id='type-id-452'/>
     <function-decl name='PyLong_AsLongLongAndOverflow' mangled-name='PyLong_AsLongLongAndOverflow' filepath='Objects/longobject.c' line='1270' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLongAndOverflow'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='1270' column='1'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='1270' column='1'/>
       <parameter type-id='type-id-452' name='overflow' filepath='Objects/longobject.c' line='1270' column='1'/>
       <return type-id='type-id-286'/>
     </function-decl>
     <function-decl name='PyLong_AsUnsignedLongLongMask' mangled-name='PyLong_AsUnsignedLongLongMask' filepath='Objects/longobject.c' line='1236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLongMask'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/longobject.c' line='1236' column='1'/>
-      <return type-id='type-id-289'/>
-    </function-decl>
-    <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='Objects/longobject.c' line='1171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLong'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='1171' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/longobject.c' line='1236' column='1'/>
       <return type-id='type-id-289'/>
     </function-decl>
     <function-decl name='PyLong_AsLongLong' mangled-name='PyLong_AsLongLong' filepath='Objects/longobject.c' line='1119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongLong'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='1119' column='1'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='1119' column='1'/>
       <return type-id='type-id-286'/>
     </function-decl>
-    <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='Objects/longobject.c' line='1075' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSsize_t'>
-      <parameter type-id='type-id-30' name='ival' filepath='Objects/longobject.c' line='1075' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='Objects/longobject.c' line='1028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLongLong'>
-      <parameter type-id='type-id-286' name='ival' filepath='Objects/longobject.c' line='1028' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='Objects/longobject.c' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsVoidPtr'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='122' column='1'/>
-      <return type-id='type-id-20'/>
+    <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='Objects/longobject.c' line='991' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsVoidPtr'>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='991' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyLong_FromVoidPtr' mangled-name='PyLong_FromVoidPtr' filepath='Objects/longobject.c' line='974' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromVoidPtr'>
-      <parameter type-id='type-id-20' name='p' filepath='Objects/longobject.c' line='974' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-21' name='p' filepath='Objects/longobject.c' line='974' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_AsByteArray' mangled-name='_PyLong_AsByteArray' filepath='Objects/longobject.c' line='839' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsByteArray'>
       <parameter type-id='type-id-356' name='v' filepath='Objects/longobject.c' line='839' column='1'/>
       <parameter type-id='type-id-339' name='bytes' filepath='Objects/longobject.c' line='840' column='1'/>
       <parameter type-id='type-id-157' name='n' filepath='Objects/longobject.c' line='840' column='1'/>
-      <parameter type-id='type-id-8' name='little_endian' filepath='Objects/longobject.c' line='841' column='1'/>
-      <parameter type-id='type-id-8' name='is_signed' filepath='Objects/longobject.c' line='841' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='little_endian' filepath='Objects/longobject.c' line='841' column='1'/>
+      <parameter type-id='type-id-9' name='is_signed' filepath='Objects/longobject.c' line='841' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyLong_FromByteArray' mangled-name='_PyLong_FromByteArray' filepath='Objects/longobject.c' line='728' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromByteArray'>
       <parameter type-id='type-id-440' name='bytes' filepath='Objects/longobject.c' line='728' column='1'/>
       <parameter type-id='type-id-157' name='n' filepath='Objects/longobject.c' line='728' column='1'/>
-      <parameter type-id='type-id-8' name='little_endian' filepath='Objects/longobject.c' line='729' column='1'/>
-      <parameter type-id='type-id-8' name='is_signed' filepath='Objects/longobject.c' line='729' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='little_endian' filepath='Objects/longobject.c' line='729' column='1'/>
+      <parameter type-id='type-id-9' name='is_signed' filepath='Objects/longobject.c' line='729' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_NumBits' mangled-name='_PyLong_NumBits' filepath='Objects/longobject.c' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_NumBits'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='698' column='1'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='698' column='1'/>
       <return type-id='type-id-157'/>
     </function-decl>
     <function-decl name='_PyLong_Sign' mangled-name='_PyLong_Sign' filepath='Objects/longobject.c' line='680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Sign'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyLong_AsUnsignedLongMask' mangled-name='PyLong_AsUnsignedLongMask' filepath='Objects/longobject.c' line='656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongMask'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/longobject.c' line='656' column='1'/>
-      <return type-id='type-id-18'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/longobject.c' line='656' column='1'/>
+      <return type-id='type-id-19'/>
     </function-decl>
     <function-decl name='PyLong_AsSize_t' mangled-name='PyLong_AsSize_t' filepath='Objects/longobject.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsSize_t'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='583' column='1'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='583' column='1'/>
       <return type-id='type-id-157'/>
     </function-decl>
     <function-decl name='PyLong_AsUnsignedLong' mangled-name='PyLong_AsUnsignedLong' filepath='Objects/longobject.c' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLong'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='539' column='1'/>
-      <return type-id='type-id-18'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='539' column='1'/>
+      <return type-id='type-id-19'/>
     </function-decl>
     <function-decl name='PyLong_AsSsize_t' mangled-name='PyLong_AsSsize_t' filepath='Objects/longobject.c' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsSsize_t'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='484' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='484' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='_PyLong_AsInt' mangled-name='_PyLong_AsInt' filepath='Objects/longobject.c' line='466' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsInt'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='Objects/longobject.c' line='449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLong'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/longobject.c' line='449' column='1'/>
-      <return type-id='type-id-32'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='466' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyLong_AsLongAndOverflow' mangled-name='PyLong_AsLongAndOverflow' filepath='Objects/longobject.c' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLongAndOverflow'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='370' column='1'/>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='370' column='1'/>
       <parameter type-id='type-id-452' name='overflow' filepath='Objects/longobject.c' line='370' column='1'/>
-      <return type-id='type-id-32'/>
+      <return type-id='type-id-33'/>
     </function-decl>
     <function-decl name='PyLong_FromDouble' mangled-name='PyLong_FromDouble' filepath='Objects/longobject.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromDouble'>
       <parameter type-id='type-id-371' name='dval' filepath='Objects/longobject.c' line='293' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyLong_FromSize_t' mangled-name='PyLong_FromSize_t' filepath='Objects/longobject.c' line='285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSize_t'>
       <parameter type-id='type-id-157' name='ival' filepath='Objects/longobject.c' line='285' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyLong_FromUnsignedLongLong' mangled-name='PyLong_FromUnsignedLongLong' filepath='Objects/longobject.c' line='277' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLongLong'>
       <parameter type-id='type-id-289' name='ival' filepath='Objects/longobject.c' line='277' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='Objects/longobject.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLong'>
-      <parameter type-id='type-id-18' name='ival' filepath='Objects/longobject.c' line='269' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='Objects/longobject.c' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLong'>
-      <parameter type-id='type-id-32' name='ival' filepath='Objects/longobject.c' line='173' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_Copy' mangled-name='_PyLong_Copy' filepath='Objects/longobject.c' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_Copy'>
       <parameter type-id='type-id-356' name='src' filepath='Objects/longobject.c' line='145' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyLong_New' mangled-name='_PyLong_New' filepath='Objects/longobject.c' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_New'>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/longobject.c' line='121' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/longobject.c' line='121' column='1'/>
       <return type-id='type-id-356'/>
     </function-decl>
+    <function-decl name='PyLong_FromLong' mangled-name='PyLong_FromLong' filepath='Objects/longobject.c' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLong'>
+      <parameter type-id='type-id-33' name='ival' filepath='Objects/longobject.c' line='173' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='Objects/longobject.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromUnsignedLong'>
+      <parameter type-id='type-id-19' name='ival' filepath='Objects/longobject.c' line='269' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='Objects/longobject.c' line='449' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsLong'>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/longobject.c' line='449' column='1'/>
+      <return type-id='type-id-33'/>
+    </function-decl>
+    <function-decl name='PyLong_FromLongLong' mangled-name='PyLong_FromLongLong' filepath='Objects/longobject.c' line='1028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromLongLong'>
+      <parameter type-id='type-id-286' name='ival' filepath='Objects/longobject.c' line='1028' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_FromSsize_t' mangled-name='PyLong_FromSsize_t' filepath='Objects/longobject.c' line='1075' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_FromSsize_t'>
+      <parameter type-id='type-id-31' name='ival' filepath='Objects/longobject.c' line='1075' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='Objects/longobject.c' line='1171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsUnsignedLongLong'>
+      <parameter type-id='type-id-16' name='vv' filepath='Objects/longobject.c' line='1171' column='1'/>
+      <return type-id='type-id-289'/>
+    </function-decl>
+    <function-decl name='PyLong_AsDouble' mangled-name='PyLong_AsDouble' filepath='Objects/longobject.c' line='2850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyLong_AsDouble'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/longobject.c' line='2850' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='./Include/cpython/unicodeobject.h' line='648' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Prepare' mangled-name='_PyBytesWriter_Prepare' filepath='./Include/cpython/bytesobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='./Include/cpython/unicodeobject.h' line='1001' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='./Include/object.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='./Include/longobject.h' line='193' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/dictobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyDict_Type' type-id='type-id-149' mangled-name='PyDict_Type' visibility='default' filepath='./Include/dictobject.h' line='15' column='1' elf-symbol-id='PyDict_Type'/>
@@ -7403,79 +9088,74 @@
     <var-decl name='PyDictItems_Type' type-id='type-id-149' mangled-name='PyDictItems_Type' visibility='default' filepath='./Include/dictobject.h' line='68' column='1' elf-symbol-id='PyDictItems_Type'/>
     <var-decl name='PyDictValues_Type' type-id='type-id-149' mangled-name='PyDictValues_Type' visibility='default' filepath='./Include/dictobject.h' line='67' column='1' elf-symbol-id='PyDictValues_Type'/>
     <function-decl name='PyObject_GenericGetDict' mangled-name='PyObject_GenericGetDict' filepath='Objects/dictobject.c' line='4990' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetDict'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/dictobject.c' line='4990' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/dictobject.c' line='4990' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/dictobject.c' line='4990' column='1'/>
+      <parameter type-id='type-id-21' name='context' filepath='Objects/dictobject.c' line='4990' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDictView_Intersect' mangled-name='_PyDictView_Intersect' filepath='Objects/dictobject.c' line='4441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_Intersect'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/dictobject.c' line='4441' column='1'/>
-      <parameter type-id='type-id-15' name='other' filepath='Objects/dictobject.c' line='4441' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='Objects/dictobject.c' line='4214' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_New'>
-      <parameter type-id='type-id-15' name='dict' filepath='Objects/dictobject.c' line='4214' column='1'/>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/dictobject.c' line='4214' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/dictobject.c' line='4441' column='1'/>
+      <parameter type-id='type-id-16' name='other' filepath='Objects/dictobject.c' line='4441' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='Objects/dictobject.c' line='3629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='269' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='269' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3629' column='1'/>
+      <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3629' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <pointer-type-def type-id='type-id-220' size-in-bits='64' id='type-id-453'/>
     <function-decl name='_PyDict_DelItemId' mangled-name='_PyDict_DelItemId' filepath='Objects/dictobject.c' line='3620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemId'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/dictobject.c' line='3620' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3620' column='1'/>
       <parameter type-id='type-id-453' name='key' filepath='Objects/dictobject.c' line='3620' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_SetItemString' mangled-name='PyDict_SetItemString' filepath='Objects/dictobject.c' line='3606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3606' column='1'/>
+      <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3606' column='1'/>
+      <parameter type-id='type-id-16' name='item' filepath='Objects/dictobject.c' line='3606' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_SetItemId' mangled-name='_PyDict_SetItemId' filepath='Objects/dictobject.c' line='3596' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItemId'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/dictobject.c' line='3596' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3596' column='1'/>
       <parameter type-id='type-id-219' name='key' filepath='Objects/dictobject.c' line='3596' column='1'/>
-      <parameter type-id='type-id-15' name='item' filepath='Objects/dictobject.c' line='3596' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='item' filepath='Objects/dictobject.c' line='3596' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_GetItemString' mangled-name='PyDict_GetItemString' filepath='Objects/dictobject.c' line='3582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3582' column='1'/>
+      <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3582' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_ContainsId' mangled-name='_PyDict_ContainsId' filepath='Objects/dictobject.c' line='3425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_ContainsId'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='3425' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='3425' column='1'/>
       <parameter type-id='type-id-219' name='key' filepath='Objects/dictobject.c' line='3425' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_Contains_KnownHash' mangled-name='_PyDict_Contains_KnownHash' filepath='Objects/dictobject.c' line='3412' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Contains_KnownHash'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='3412' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='3412' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='3412' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='3412' column='1'/>
       <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='3412' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_Contains' mangled-name='PyDict_Contains' filepath='Objects/dictobject.c' line='3391' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Contains'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='3391' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='3391' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='3391' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='3391' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <class-decl name='_dictkeysobject' size-in-bits='320' is-struct='yes' visibility='default' filepath='Objects/dict-common.h' line='22' column='1' id='type-id-389'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='dk_refcnt' type-id='type-id-30' visibility='default' filepath='Objects/dict-common.h' line='23' column='1'/>
+        <var-decl name='dk_refcnt' type-id='type-id-31' visibility='default' filepath='Objects/dict-common.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='dk_size' type-id='type-id-30' visibility='default' filepath='Objects/dict-common.h' line='26' column='1'/>
+        <var-decl name='dk_size' type-id='type-id-31' visibility='default' filepath='Objects/dict-common.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='dk_lookup' type-id='type-id-454' visibility='default' filepath='Objects/dict-common.h' line='41' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='dk_usable' type-id='type-id-30' visibility='default' filepath='Objects/dict-common.h' line='44' column='1'/>
+        <var-decl name='dk_usable' type-id='type-id-31' visibility='default' filepath='Objects/dict-common.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='dk_nentries' type-id='type-id-30' visibility='default' filepath='Objects/dict-common.h' line='47' column='1'/>
+        <var-decl name='dk_nentries' type-id='type-id-31' visibility='default' filepath='Objects/dict-common.h' line='47' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
         <var-decl name='dk_indices' type-id='type-id-209' visibility='default' filepath='Objects/dict-common.h' line='62' column='1'/>
@@ -7485,169 +9165,216 @@
     <typedef-decl name='dict_lookup_func' type-id='type-id-456' filepath='Objects/dict-common.h' line='14' column='1' id='type-id-454'/>
     <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='Objects/dictobject.c' line='3272' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SizeOf'>
       <parameter type-id='type-id-391' name='mp' filepath='Objects/dictobject.c' line='3272' column='1'/>
-      <return type-id='type-id-30'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='Objects/dictobject.c' line='3021' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetDefault'>
-      <parameter type-id='type-id-15' name='d' filepath='Objects/dictobject.c' line='3021' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='3021' column='1'/>
-      <parameter type-id='type-id-15' name='defaultobj' filepath='Objects/dictobject.c' line='3021' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='d' filepath='Objects/dictobject.c' line='3021' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='3021' column='1'/>
+      <parameter type-id='type-id-16' name='defaultobj' filepath='Objects/dictobject.c' line='3021' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_Items' mangled-name='PyDict_Items' filepath='Objects/dictobject.c' line='2872' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Items'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='mp' filepath='Objects/dictobject.c' line='2872' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_Values' mangled-name='PyDict_Values' filepath='Objects/dictobject.c' line='2862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Values'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='mp' filepath='Objects/dictobject.c' line='2872' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_Keys' mangled-name='PyDict_Keys' filepath='Objects/dictobject.c' line='2852' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Keys'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='mp' filepath='Objects/dictobject.c' line='2872' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_Size' mangled-name='PyDict_Size' filepath='Objects/dictobject.c' line='2842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/bytesobject.c' line='1224' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyDict_Copy' mangled-name='PyDict_Copy' filepath='Objects/dictobject.c' line='2749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Copy'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/dictobject.c' line='2749' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/dictobject.c' line='2749' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='Objects/dictobject.c' line='2737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MergeEx'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <parameter type-id='type-id-15' name='b' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <parameter type-id='type-id-8' name='override' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <parameter type-id='type-id-16' name='b' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <parameter type-id='type-id-9' name='override' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='Objects/dictobject.c' line='2730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Merge'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <parameter type-id='type-id-15' name='b' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <parameter type-id='type-id-8' name='override' filepath='Objects/dictobject.c' line='2737' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='a' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <parameter type-id='type-id-16' name='b' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <parameter type-id='type-id-9' name='override' filepath='Objects/dictobject.c' line='2737' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_Update' mangled-name='PyDict_Update' filepath='Objects/dictobject.c' line='2724' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Update'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/abstract.c' line='2296' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2296' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_MergeFromSeq2' mangled-name='PyDict_MergeFromSeq2' filepath='Objects/dictobject.c' line='2462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_MergeFromSeq2'>
-      <parameter type-id='type-id-15' name='d' filepath='Objects/dictobject.c' line='2462' column='1'/>
-      <parameter type-id='type-id-15' name='seq2' filepath='Objects/dictobject.c' line='2462' column='1'/>
-      <parameter type-id='type-id-8' name='override' filepath='Objects/dictobject.c' line='2462' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'>
-      <parameter type-id='type-id-15' name='callable' filepath='Objects/call.c' line='354' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/call.c' line='355' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Objects/call.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='d' filepath='Objects/dictobject.c' line='2462' column='1'/>
+      <parameter type-id='type-id-16' name='seq2' filepath='Objects/dictobject.c' line='2462' column='1'/>
+      <parameter type-id='type-id-9' name='override' filepath='Objects/dictobject.c' line='2462' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_Next' mangled-name='PyDict_Next' filepath='Objects/dictobject.c' line='1880' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Next'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1880' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1880' column='1'/>
       <parameter type-id='type-id-125' name='ppos' filepath='Objects/dictobject.c' line='1880' column='1'/>
       <parameter type-id='type-id-86' name='pkey' filepath='Objects/dictobject.c' line='1880' column='1'/>
       <parameter type-id='type-id-86' name='pvalue' filepath='Objects/dictobject.c' line='1880' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <pointer-type-def type-id='type-id-117' size-in-bits='64' id='type-id-457'/>
-    <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='Objects/dictobject.c' line='1818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Next'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1818' column='1'/>
-      <parameter type-id='type-id-125' name='ppos' filepath='Objects/dictobject.c' line='1818' column='1'/>
-      <parameter type-id='type-id-86' name='pkey' filepath='Objects/dictobject.c' line='1818' column='1'/>
-      <parameter type-id='type-id-86' name='pvalue' filepath='Objects/dictobject.c' line='1819' column='1'/>
-      <parameter type-id='type-id-457' name='phash' filepath='Objects/dictobject.c' line='1819' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='1777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/genobject.c' line='44' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='Objects/dictobject.c' line='1727' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItemIf'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1727' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1727' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1727' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1727' column='1'/>
       <parameter type-id='type-id-97' name='predicate' filepath='Objects/dictobject.c' line='1728' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='Objects/dictobject.c' line='1689' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DelItem_KnownHash'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='3412' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='3412' column='1'/>
-      <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='3412' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1689' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1689' column='1'/>
+      <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='1689' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='Objects/dictobject.c' line='1674' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_DelItem'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1674' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1674' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='Objects/dictobject.c' line='1627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_SetItem_KnownHash'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1627' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1627' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/dictobject.c' line='1627' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1627' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1627' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/dictobject.c' line='1627' column='1'/>
       <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='1628' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='Objects/dictobject.c' line='1600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1600' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1600' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/dictobject.c' line='1600' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='Objects/dictobject.c' line='1545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemStringWithError'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='1545' column='1'/>
+      <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='1545' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_GetItemIdWithError' mangled-name='_PyDict_GetItemIdWithError' filepath='Objects/dictobject.c' line='1533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItemIdWithError'>
-      <parameter type-id='type-id-15' name='dp' filepath='Objects/dictobject.c' line='1533' column='1'/>
+      <parameter type-id='type-id-16' name='dp' filepath='Objects/dictobject.c' line='1533' column='1'/>
       <parameter type-id='type-id-219' name='key' filepath='Objects/dictobject.c' line='1533' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='Objects/dictobject.c' line='1506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemWithError'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='1483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1483' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1483' column='1'/>
-      <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='1483' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyDict_GetItem' mangled-name='PyDict_GetItem' filepath='Objects/dictobject.c' line='1398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1398' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1398' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1398' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1398' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_NewPresized' mangled-name='_PyDict_NewPresized' filepath='Objects/dictobject.c' line='1361' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_NewPresized'>
-      <parameter type-id='type-id-30' name='minused' filepath='Objects/dictobject.c' line='1361' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='minused' filepath='Objects/dictobject.c' line='1361' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_MaybeUntrack' mangled-name='_PyDict_MaybeUntrack' filepath='Objects/dictobject.c' line='1002' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_MaybeUntrack'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1002' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1002' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyDict_HasOnlyStringKeys' mangled-name='_PyDict_HasOnlyStringKeys' filepath='Objects/dictobject.c' line='977' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_HasOnlyStringKeys'>
-      <parameter type-id='type-id-15' name='dict' filepath='Objects/dictobject.c' line='977' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='dict' filepath='Objects/dictobject.c' line='977' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyDict_New' mangled-name='PyDict_New' filepath='Objects/dictobject.c' line='742' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_New'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyDict_CheckConsistency' mangled-name='_PyDict_CheckConsistency' filepath='Objects/dictobject.c' line='495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_CheckConsistency'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='495' column='1'/>
-      <parameter type-id='type-id-8' name='check_content' filepath='Objects/dictobject.c' line='495' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='495' column='1'/>
+      <parameter type-id='type-id-9' name='check_content' filepath='Objects/dictobject.c' line='495' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyDict_DebugMallocStats' mangled-name='_PyDict_DebugMallocStats' filepath='Objects/dictobject.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_DebugMallocStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/floatobject.c' line='2059' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='Objects/dictobject.c' line='1483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_GetItem_KnownHash'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1483' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1483' column='1'/>
+      <parameter type-id='type-id-117' name='hash' filepath='Objects/dictobject.c' line='1483' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyDict_GetItemWithError' mangled-name='PyDict_GetItemWithError' filepath='Objects/dictobject.c' line='1506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_GetItemWithError'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1506' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1506' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyDict_SetItem' mangled-name='PyDict_SetItem' filepath='Objects/dictobject.c' line='1600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_SetItem'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1600' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/dictobject.c' line='1600' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/dictobject.c' line='1600' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='Objects/dictobject.c' line='1777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyDict_Clear'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1777' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-117' size-in-bits='64' id='type-id-457'/>
+    <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='Objects/dictobject.c' line='1818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Next'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/dictobject.c' line='1818' column='1'/>
+      <parameter type-id='type-id-125' name='ppos' filepath='Objects/dictobject.c' line='1818' column='1'/>
+      <parameter type-id='type-id-86' name='pkey' filepath='Objects/dictobject.c' line='1818' column='1'/>
+      <parameter type-id='type-id-86' name='pvalue' filepath='Objects/dictobject.c' line='1819' column='1'/>
+      <parameter type-id='type-id-457' name='phash' filepath='Objects/dictobject.c' line='1819' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='Objects/dictobject.c' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDict_Pop'>
+      <parameter type-id='type-id-16' name='callable' filepath='Objects/call.c' line='322' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/call.c' line='322' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Objects/call.c' line='322' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='Objects/dictobject.c' line='4214' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDictView_New'>
+      <parameter type-id='type-id-16' name='dict' filepath='Objects/dictobject.c' line='4214' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/dictobject.c' line='4214' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PySet_New' mangled-name='PySet_New' filepath='./Include/setobject.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySet_Update' mangled-name='_PySet_Update' filepath='./Include/setobject.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_CallMethodIdObjArgs' mangled-name='_PyObject_CallMethodIdObjArgs' filepath='./Include/cpython/abstract.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySet_Add' mangled-name='PySet_Add' filepath='./Include/setobject.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDictProxy_New' mangled-name='PyDictProxy_New' filepath='./Include/descrobject.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_List' mangled-name='PySequence_List' filepath='./Include/abstract.h' line='706' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromSize_t' mangled-name='PyLong_FromSize_t' filepath='./Include/longobject.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='./Include/modsupport.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_IS_GC' mangled-name='PyObject_IS_GC' filepath='./Include/cpython/objimpl.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='./Include/cpython/pyerrors.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMapping_Keys' mangled-name='PyMapping_Keys' filepath='./Include/abstract.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='./Include/internal/pycore_pyerrors.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='./Include/internal/pycore_pyerrors.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_AssertFailed' mangled-name='_PyObject_AssertFailed' filepath='./Include/cpython/object.h' line='435' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-type size-in-bits='64' id='type-id-455'>
       <parameter type-id='type-id-391'/>
-      <parameter type-id='type-id-15'/>
+      <parameter type-id='type-id-16'/>
       <parameter type-id='type-id-117'/>
       <parameter type-id='type-id-86'/>
-      <return type-id='type-id-30'/>
+      <return type-id='type-id-31'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/odictobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -7657,103 +9384,157 @@
     <var-decl name='PyODictItems_Type' type-id='type-id-149' mangled-name='PyODictItems_Type' visibility='default' filepath='./Include/cpython/odictobject.h' line='18' column='1' elf-symbol-id='PyODictItems_Type'/>
     <var-decl name='PyODictValues_Type' type-id='type-id-149' mangled-name='PyODictValues_Type' visibility='default' filepath='./Include/cpython/odictobject.h' line='19' column='1' elf-symbol-id='PyODictValues_Type'/>
     <function-decl name='PyODict_DelItem' mangled-name='PyODict_DelItem' filepath='Objects/odictobject.c' line='1675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_DelItem'>
-      <parameter type-id='type-id-15' name='od' filepath='Objects/odictobject.c' line='1675' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/odictobject.c' line='1675' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='od' filepath='Objects/odictobject.c' line='1675' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/odictobject.c' line='1675' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyODict_SetItem' mangled-name='PyODict_SetItem' filepath='Objects/odictobject.c' line='1666' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_SetItem'>
-      <parameter type-id='type-id-15' name='od' filepath='Objects/odictobject.c' line='1666' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/odictobject.c' line='1666' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/odictobject.c' line='1666' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='od' filepath='Objects/odictobject.c' line='1666' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/odictobject.c' line='1666' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/odictobject.c' line='1666' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyODict_New' mangled-name='PyODict_New' filepath='Objects/odictobject.c' line='1642' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyODict_New'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyDictView_New' mangled-name='_PyDictView_New' filepath='./Include/cpython/dictobject.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_GetItem' mangled-name='PyDict_GetItem' filepath='./Include/dictobject.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_DelItem_KnownHash' mangled-name='_PyDict_DelItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='./Include/cpython/pyerrors.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_SetItem_KnownHash' mangled-name='_PyDict_SetItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Clear' mangled-name='PyDict_Clear' filepath='./Include/dictobject.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_GetItem_KnownHash' mangled-name='_PyDict_GetItem_KnownHash' filepath='./Include/cpython/dictobject.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_SizeOf' mangled-name='_PyDict_SizeOf' filepath='./Include/cpython/dictobject.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_FromKeys' mangled-name='_PyDict_FromKeys' filepath='./Include/cpython/dictobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/memoryobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='_PyManagedBuffer_Type' type-id='type-id-149' mangled-name='_PyManagedBuffer_Type' visibility='default' filepath='./Include/memoryobject.h' line='10' column='1' elf-symbol-id='_PyManagedBuffer_Type'/>
     <var-decl name='PyMemoryView_Type' type-id='type-id-149' mangled-name='PyMemoryView_Type' visibility='default' filepath='./Include/memoryobject.h' line='12' column='1' elf-symbol-id='PyMemoryView_Type'/>
     <function-decl name='PyBuffer_ToContiguous' mangled-name='PyBuffer_ToContiguous' filepath='Objects/memoryobject.c' line='985' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyBuffer_ToContiguous'>
-      <parameter type-id='type-id-20' name='buf' filepath='Objects/memoryobject.c' line='985' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Objects/memoryobject.c' line='985' column='1'/>
       <parameter type-id='type-id-127' name='src' filepath='Objects/memoryobject.c' line='985' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/memoryobject.c' line='985' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/memoryobject.c' line='985' column='1'/>
       <parameter type-id='type-id-1' name='order' filepath='Objects/memoryobject.c' line='985' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMemoryView_GetContiguous' mangled-name='PyMemoryView_GetContiguous' filepath='Objects/memoryobject.c' line='920' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_GetContiguous'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/memoryobject.c' line='920' column='1'/>
-      <parameter type-id='type-id-8' name='buffertype' filepath='Objects/memoryobject.c' line='920' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/memoryobject.c' line='920' column='1'/>
+      <parameter type-id='type-id-9' name='buffertype' filepath='Objects/memoryobject.c' line='920' column='1'/>
       <parameter type-id='type-id-1' name='order' filepath='Objects/memoryobject.c' line='920' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromObject'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1641' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMemoryView_FromBuffer' mangled-name='PyMemoryView_FromBuffer' filepath='Objects/memoryobject.c' line='758' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromBuffer'>
       <parameter type-id='type-id-127' name='info' filepath='Objects/memoryobject.c' line='758' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyMemoryView_FromMemory' mangled-name='PyMemoryView_FromMemory' filepath='Objects/memoryobject.c' line='729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromMemory'>
       <parameter type-id='type-id-72' name='mem' filepath='Objects/memoryobject.c' line='729' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/memoryobject.c' line='729' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/memoryobject.c' line='729' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/memoryobject.c' line='729' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/memoryobject.c' line='729' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' line='788' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMemoryView_FromObject'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/memoryobject.c' line='788' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyLong_FromUnsignedLongLong' mangled-name='PyLong_FromUnsignedLongLong' filepath='./Include/longobject.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_FromUnsignedLong' mangled-name='PyLong_FromUnsignedLong' filepath='./Include/longobject.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsUnsignedLong' mangled-name='PyLong_AsUnsignedLong' filepath='./Include/longobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsLong' mangled-name='PyLong_AsLong' filepath='./Include/longobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsSize_t' mangled-name='PyLong_AsSize_t' filepath='./Include/longobject.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsUnsignedLongLong' mangled-name='PyLong_AsUnsignedLongLong' filepath='./Include/longobject.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsVoidPtr' mangled-name='PyLong_AsVoidPtr' filepath='./Include/longobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='./Include/unicodeobject.h' line='656' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/methodobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyCFunction_Type' type-id='type-id-149' mangled-name='PyCFunction_Type' visibility='default' filepath='./Include/methodobject.h' line='14' column='1' elf-symbol-id='PyCFunction_Type'/>
     <var-decl name='PyCMethod_Type' type-id='type-id-149' mangled-name='PyCMethod_Type' visibility='default' filepath='./Include/cpython/methodobject.h' line='5' column='1' elf-symbol-id='PyCMethod_Type'/>
     <function-decl name='PyCFunction_GetFlags' mangled-name='PyCFunction_GetFlags' filepath='Objects/methodobject.c' line='139' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFlags'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/methodobject.c' line='139' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCFunction_GetSelf' mangled-name='PyCFunction_GetSelf' filepath='Objects/methodobject.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetSelf'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCFunction_GetFunction' mangled-name='PyCFunction_GetFunction' filepath='Objects/methodobject.c' line='119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_GetFunction'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/methodobject.c' line='119' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/methodobject.c' line='119' column='1'/>
       <return type-id='type-id-140'/>
     </function-decl>
     <function-decl name='PyCMethod_New' mangled-name='PyCMethod_New' filepath='Objects/methodobject.c' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCMethod_New'>
       <parameter type-id='type-id-435' name='ml' filepath='Objects/methodobject.c' line='44' column='1'/>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/methodobject.c' line='44' column='1'/>
-      <parameter type-id='type-id-15' name='module' filepath='Objects/methodobject.c' line='44' column='1'/>
-      <parameter type-id='type-id-31' name='cls' filepath='Objects/methodobject.c' line='44' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/methodobject.c' line='44' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Objects/methodobject.c' line='44' column='1'/>
+      <parameter type-id='type-id-32' name='cls' filepath='Objects/methodobject.c' line='44' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCFunction_NewEx' mangled-name='PyCFunction_NewEx' filepath='Objects/methodobject.c' line='38' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_NewEx'>
       <parameter type-id='type-id-435' name='ml' filepath='Objects/methodobject.c' line='38' column='1'/>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/methodobject.c' line='38' column='1'/>
-      <parameter type-id='type-id-15' name='module' filepath='Objects/methodobject.c' line='38' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/methodobject.c' line='38' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Objects/methodobject.c' line='38' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCFunction_New' mangled-name='PyCFunction_New' filepath='Objects/methodobject.c' line='32' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCFunction_New'>
       <parameter type-id='type-id-435' name='ml' filepath='Objects/methodobject.c' line='32' column='1'/>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/methodobject.c' line='32' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/methodobject.c' line='32' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyVectorcall_Call' mangled-name='PyVectorcall_Call' filepath='./Include/cpython/abstract.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/moduleobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyModuleDef_Type' type-id='type-id-149' mangled-name='PyModuleDef_Type' visibility='default' filepath='./Include/moduleobject.h' line='41' column='1' elf-symbol-id='PyModuleDef_Type'/>
     <var-decl name='PyModule_Type' type-id='type-id-149' mangled-name='PyModule_Type' visibility='default' filepath='./Include/moduleobject.h' line='10' column='1' elf-symbol-id='PyModule_Type'/>
     <function-decl name='_PyModuleSpec_IsInitializing' mangled-name='_PyModuleSpec_IsInitializing' filepath='Objects/moduleobject.c' line='705' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModuleSpec_IsInitializing'>
-      <parameter type-id='type-id-15' name='spec' filepath='Objects/moduleobject.c' line='705' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='spec' filepath='Objects/moduleobject.c' line='705' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyModule_ClearDict' mangled-name='_PyModule_ClearDict' filepath='Objects/moduleobject.c' line='573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_ClearDict'>
-      <parameter type-id='type-id-15' name='d' filepath='Objects/moduleobject.c' line='573' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='d' filepath='Objects/moduleobject.c' line='573' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyModule_Clear' mangled-name='_PyModule_Clear' filepath='Objects/moduleobject.c' line='565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_Clear'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyModule_GetState' mangled-name='PyModule_GetState' filepath='Objects/moduleobject.c' line='555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetState'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='555' column='1'/>
-      <return type-id='type-id-20'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='555' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <class-decl name='PyModuleDef' size-in-bits='832' is-struct='yes' visibility='default' filepath='./Include/moduleobject.h' line='75' column='1' id='type-id-458'>
       <data-member access='public' layout-offset-in-bits='0'>
@@ -7766,7 +9547,7 @@
         <var-decl name='m_doc' type-id='type-id-3' visibility='default' filepath='./Include/moduleobject.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='m_size' type-id='type-id-30' visibility='default' filepath='./Include/moduleobject.h' line='79' column='1'/>
+        <var-decl name='m_size' type-id='type-id-31' visibility='default' filepath='./Include/moduleobject.h' line='79' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='m_methods' type-id='type-id-435' visibility='default' filepath='./Include/moduleobject.h' line='80' column='1'/>
@@ -7775,181 +9556,195 @@
         <var-decl name='m_slots' type-id='type-id-460' visibility='default' filepath='./Include/moduleobject.h' line='81' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='m_traverse' type-id='type-id-50' visibility='default' filepath='./Include/moduleobject.h' line='82' column='1'/>
+        <var-decl name='m_traverse' type-id='type-id-51' visibility='default' filepath='./Include/moduleobject.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='m_clear' type-id='type-id-51' visibility='default' filepath='./Include/moduleobject.h' line='83' column='1'/>
+        <var-decl name='m_clear' type-id='type-id-52' visibility='default' filepath='./Include/moduleobject.h' line='83' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='m_free' type-id='type-id-64' visibility='default' filepath='./Include/moduleobject.h' line='84' column='1'/>
+        <var-decl name='m_free' type-id='type-id-65' visibility='default' filepath='./Include/moduleobject.h' line='84' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='PyModuleDef_Base' size-in-bits='320' is-struct='yes' visibility='default' filepath='./Include/moduleobject.h' line='44' column='1' id='type-id-461'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/moduleobject.h' line='45' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/moduleobject.h' line='45' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='m_init' type-id='type-id-462' visibility='default' filepath='./Include/moduleobject.h' line='46' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='m_index' type-id='type-id-30' visibility='default' filepath='./Include/moduleobject.h' line='47' column='1'/>
+        <var-decl name='m_index' type-id='type-id-31' visibility='default' filepath='./Include/moduleobject.h' line='47' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='m_copy' type-id='type-id-15' visibility='default' filepath='./Include/moduleobject.h' line='48' column='1'/>
+        <var-decl name='m_copy' type-id='type-id-16' visibility='default' filepath='./Include/moduleobject.h' line='48' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-463' size-in-bits='64' id='type-id-462'/>
     <typedef-decl name='PyModuleDef_Base' type-id='type-id-461' filepath='./Include/moduleobject.h' line='49' column='1' id='type-id-459'/>
     <class-decl name='PyModuleDef_Slot' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/moduleobject.h' line='61' column='1' id='type-id-464'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='slot' type-id='type-id-8' visibility='default' filepath='./Include/moduleobject.h' line='62' column='1'/>
+        <var-decl name='slot' type-id='type-id-9' visibility='default' filepath='./Include/moduleobject.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='value' type-id='type-id-20' visibility='default' filepath='./Include/moduleobject.h' line='63' column='1'/>
+        <var-decl name='value' type-id='type-id-21' visibility='default' filepath='./Include/moduleobject.h' line='63' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-464' size-in-bits='64' id='type-id-460'/>
     <typedef-decl name='PyModuleDef' type-id='type-id-458' filepath='./Include/moduleobject.h' line='85' column='1' id='type-id-465'/>
     <pointer-type-def type-id='type-id-465' size-in-bits='64' id='type-id-466'/>
     <function-decl name='PyModule_GetDef' mangled-name='PyModule_GetDef' filepath='Objects/moduleobject.c' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetDef'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='545' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='545' column='1'/>
       <return type-id='type-id-466'/>
     </function-decl>
     <function-decl name='PyModule_GetFilename' mangled-name='PyModule_GetFilename' filepath='Objects/moduleobject.c' line='532' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilename'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='532' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='532' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='Objects/moduleobject.c' line='508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilenameObject'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
     <function-decl name='PyModule_GetName' mangled-name='PyModule_GetName' filepath='Objects/moduleobject.c' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetName'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='98' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='498' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='PyModule_GetNameObject' mangled-name='PyModule_GetNameObject' filepath='Objects/moduleobject.c' line='475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetNameObject'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
     <function-decl name='PyModule_GetDict' mangled-name='PyModule_GetDict' filepath='Objects/moduleobject.c' line='465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetDict'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='mp' filepath='Objects/dictobject.c' line='2872' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyModule_SetDocString' mangled-name='PyModule_SetDocString' filepath='Objects/moduleobject.c' line='451' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_SetDocString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='451' column='1'/>
+      <parameter type-id='type-id-3' name='doc' filepath='Objects/moduleobject.c' line='451' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyModule_AddFunctions' mangled-name='PyModule_AddFunctions' filepath='Objects/moduleobject.c' line='437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddFunctions'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='437' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='437' column='1'/>
       <parameter type-id='type-id-435' name='functions' filepath='Objects/moduleobject.c' line='437' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyModule_ExecDef' mangled-name='PyModule_ExecDef' filepath='Objects/moduleobject.c' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_ExecDef'>
-      <parameter type-id='type-id-15' name='module' filepath='Objects/moduleobject.c' line='372' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Objects/moduleobject.c' line='372' column='1'/>
       <parameter type-id='type-id-466' name='def' filepath='Objects/moduleobject.c' line='372' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyModule_FromDefAndSpec2' mangled-name='PyModule_FromDefAndSpec2' filepath='Objects/moduleobject.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_FromDefAndSpec2'>
       <parameter type-id='type-id-466' name='def' filepath='Objects/moduleobject.c' line='248' column='1'/>
-      <parameter type-id='type-id-15' name='spec' filepath='Objects/moduleobject.c' line='248' column='1'/>
-      <parameter type-id='type-id-8' name='module_api_version' filepath='Objects/moduleobject.c' line='248' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='spec' filepath='Objects/moduleobject.c' line='248' column='1'/>
+      <parameter type-id='type-id-9' name='module_api_version' filepath='Objects/moduleobject.c' line='248' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyModule_CreateInitialized' mangled-name='_PyModule_CreateInitialized' filepath='Objects/moduleobject.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyModule_CreateInitialized'>
       <parameter type-id='type-id-466' name='module' filepath='Objects/moduleobject.c' line='185' column='1'/>
-      <parameter type-id='type-id-8' name='module_api_version' filepath='Objects/moduleobject.c' line='185' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='module_api_version' filepath='Objects/moduleobject.c' line='185' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyModule_Create2' mangled-name='PyModule_Create2' filepath='Objects/moduleobject.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_Create2'>
       <parameter type-id='type-id-466' name='module' filepath='Objects/moduleobject.c' line='174' column='1'/>
-      <parameter type-id='type-id-8' name='module_api_version' filepath='Objects/moduleobject.c' line='174' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='module_api_version' filepath='Objects/moduleobject.c' line='174' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyModule_New' mangled-name='PyModule_New' filepath='Objects/moduleobject.c' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_New'>
       <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyModule_NewObject' mangled-name='PyModule_NewObject' filepath='Objects/moduleobject.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_NewObject'>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/moduleobject.c' line='92' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/moduleobject.c' line='92' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyModuleDef_Init' mangled-name='PyModuleDef_Init' filepath='Objects/moduleobject.c' line='47' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModuleDef_Init'>
       <parameter type-id='type-id-466' name='def' filepath='Objects/moduleobject.c' line='47' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModule_GetNameObject' mangled-name='PyModule_GetNameObject' filepath='Objects/moduleobject.c' line='475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetNameObject'>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='475' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='Objects/moduleobject.c' line='508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_GetFilenameObject'>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='508' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyDict_ContainsId' mangled-name='_PyDict_ContainsId' filepath='./Include/cpython/dictobject.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_DelItemId' mangled-name='_PyDict_DelItemId' filepath='./Include/cpython/dictobject.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_FormatStderr' mangled-name='PySys_FormatStderr' filepath='./Include/sysmodule.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strrchr' mangled-name='strrchr' filepath='/usr/include/string.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='./Include/cpython/import.h' line='7' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-type size-in-bits='64' id='type-id-463'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/namespaceobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='_PyNamespace_Type' type-id='type-id-149' mangled-name='_PyNamespace_Type' visibility='default' filepath='./Include/namespaceobject.h' line='11' column='1' elf-symbol-id='_PyNamespace_Type'/>
     <function-decl name='_PyNamespace_New' mangled-name='_PyNamespace_New' filepath='Objects/namespaceobject.c' line='247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyNamespace_New'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/cellobject.c' line='7' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyDict_Update' mangled-name='PyDict_Update' filepath='./Include/dictobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/object.c' comp-dir-path='/src' language='LANG_C99'>
 
-    <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='infinite' id='type-id-467'>
-      <subrange length='infinite' id='type-id-6'/>
+    <array-type-def dimensions='1' type-id='type-id-9' size-in-bits='infinite' id='type-id-467'>
+      <subrange length='infinite' id='type-id-7'/>
 
     </array-type-def>
     <var-decl name='_Py_SwappedOp' type-id='type-id-467' mangled-name='_Py_SwappedOp' visibility='default' filepath='./Include/cpython/object.h' line='387' column='1' elf-symbol-id='_Py_SwappedOp'/>
     <var-decl name='_PyNone_Type' type-id='type-id-149' mangled-name='_PyNone_Type' visibility='default' filepath='./Include/cpython/object.h' line='381' column='1' elf-symbol-id='_PyNone_Type'/>
-    <var-decl name='_Py_NoneStruct' type-id='type-id-68' mangled-name='_Py_NoneStruct' visibility='default' filepath='./Include/object.h' line='605' column='1' elf-symbol-id='_Py_NoneStruct'/>
+    <var-decl name='_Py_NoneStruct' type-id='type-id-69' mangled-name='_Py_NoneStruct' visibility='default' filepath='./Include/object.h' line='605' column='1' elf-symbol-id='_Py_NoneStruct'/>
     <var-decl name='_PyNotImplemented_Type' type-id='type-id-149' mangled-name='_PyNotImplemented_Type' visibility='default' filepath='./Include/cpython/object.h' line='382' column='1' elf-symbol-id='_PyNotImplemented_Type'/>
-    <var-decl name='_Py_NotImplementedStruct' type-id='type-id-68' mangled-name='_Py_NotImplementedStruct' visibility='default' filepath='./Include/object.h' line='619' column='1' elf-symbol-id='_Py_NotImplementedStruct'/>
+    <var-decl name='_Py_NotImplementedStruct' type-id='type-id-69' mangled-name='_Py_NotImplementedStruct' visibility='default' filepath='./Include/object.h' line='619' column='1' elf-symbol-id='_Py_NotImplementedStruct'/>
     <function-decl name='Py_IsFalse' mangled-name='Py_IsFalse' filepath='Objects/object.c' line='2337' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsFalse'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/object.c' line='2337' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_IsTrue' mangled-name='Py_IsTrue' filepath='Objects/object.c' line='2332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsTrue'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/object.c' line='2337' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_IsNone' mangled-name='Py_IsNone' filepath='Objects/object.c' line='2327' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsNone'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/object.c' line='2337' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_Is' mangled-name='Py_Is' filepath='Objects/object.c' line='2322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Is'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/object.c' line='2322' column='1'/>
+      <parameter type-id='type-id-16' name='y' filepath='Objects/object.c' line='2322' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_XNewRef' mangled-name='Py_XNewRef' filepath='Objects/object.c' line='2310' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_XNewRef'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='Py_NewRef' mangled-name='Py_NewRef' filepath='Objects/object.c' line='2304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewRef'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_GET_WEAKREFS_LISTPTR' mangled-name='PyObject_GET_WEAKREFS_LISTPTR' filepath='Objects/object.c' line='2293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GET_WEAKREFS_LISTPTR'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='2293' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='2293' column='1'/>
       <return type-id='type-id-86'/>
     </function-decl>
     <function-decl name='_Py_Dealloc' mangled-name='_Py_Dealloc' filepath='Objects/object.c' line='2282' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Dealloc'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyObject_AssertFailed' mangled-name='_PyObject_AssertFailed' filepath='Objects/object.c' line='2226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_AssertFailed'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='2226' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='2226' column='1'/>
       <parameter type-id='type-id-3' name='expr' filepath='Objects/object.c' line='2226' column='1'/>
       <parameter type-id='type-id-3' name='msg' filepath='Objects/object.c' line='2226' column='1'/>
       <parameter type-id='type-id-3' name='file' filepath='Objects/object.c' line='2227' column='1'/>
-      <parameter type-id='type-id-8' name='line' filepath='Objects/object.c' line='2227' column='1'/>
+      <parameter type-id='type-id-9' name='line' filepath='Objects/object.c' line='2227' column='1'/>
       <parameter type-id='type-id-3' name='function' filepath='Objects/object.c' line='2227' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyTrash_cond' mangled-name='_PyTrash_cond' filepath='Objects/object.c' line='2219' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_cond'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='2219' column='1'/>
-      <parameter type-id='type-id-37' name='dealloc' filepath='Objects/object.c' line='2219' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='2219' column='1'/>
+      <parameter type-id='type-id-38' name='dealloc' filepath='Objects/object.c' line='2219' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <class-decl name='_pycontextobject' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_context.h' line='10' column='1' id='type-id-399'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/internal/pycore_context.h' line='11' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/internal/pycore_context.h' line='11' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='ctx_prev' type-id='type-id-398' visibility='default' filepath='./Include/internal/pycore_context.h' line='12' column='1'/>
@@ -7958,29 +9753,29 @@
         <var-decl name='ctx_vars' type-id='type-id-468' visibility='default' filepath='./Include/internal/pycore_context.h' line='13' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='ctx_weakreflist' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_context.h' line='14' column='1'/>
+        <var-decl name='ctx_weakreflist' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_context.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='ctx_entered' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_context.h' line='15' column='1'/>
+        <var-decl name='ctx_entered' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_context.h' line='15' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-469' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='21' column='1' id='type-id-470'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='22' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='22' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='h_root' type-id='type-id-471' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='h_weakreflist' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='24' column='1'/>
+        <var-decl name='h_weakreflist' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='24' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='h_count' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='25' column='1'/>
+        <var-decl name='h_count' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='25' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-472' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='15' column='1' id='type-id-473'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='16' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='16' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyHamtNode' type-id='type-id-473' filepath='./Include/internal/pycore_hamt.h' line='17' column='1' id='type-id-472'/>
@@ -7989,273 +9784,342 @@
     <pointer-type-def type-id='type-id-469' size-in-bits='64' id='type-id-468'/>
     <function-decl name='_PyTrash_end' mangled-name='_PyTrash_end' filepath='Objects/object.c' line='2207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_end'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/object.c' line='2207' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyTrash_begin' mangled-name='_PyTrash_begin' filepath='Objects/object.c' line='2193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_begin'>
       <parameter type-id='type-id-331' name='tstate' filepath='Objects/object.c' line='2193' column='1'/>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='2193' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='2193' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyTrash_thread_destroy_chain' mangled-name='_PyTrash_thread_destroy_chain' filepath='Objects/object.c' line='2155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_thread_destroy_chain'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyTrash_destroy_chain' mangled-name='_PyTrash_destroy_chain' filepath='Objects/object.c' line='2128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_destroy_chain'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyTrash_thread_deposit_object' mangled-name='_PyTrash_thread_deposit_object' filepath='Objects/object.c' line='2114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_thread_deposit_object'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='2114' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyTrash_deposit_object' mangled-name='_PyTrash_deposit_object' filepath='Objects/object.c' line='2100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTrash_deposit_object'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='2100' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='2100' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='Py_ReprLeave' mangled-name='Py_ReprLeave' filepath='Objects/object.c' line='2062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprLeave'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='2062' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='2062' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='Py_ReprEnter' mangled-name='Py_ReprEnter' filepath='Objects/object.c' line='2028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ReprEnter'>
-      <parameter type-id='type-id-15' name='dict' filepath='Objects/dictobject.c' line='977' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='2028' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_DebugTypeStats' mangled-name='_PyObject_DebugTypeStats' filepath='Objects/object.c' line='2006' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugTypeStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/object.c' line='2006' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_Py_NewReference' mangled-name='_Py_NewReference' filepath='Objects/object.c' line='1891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_NewReference'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='1891' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyObject_Dir' mangled-name='PyObject_Dir' filepath='Objects/object.c' line='1547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Dir'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1547' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCallable_Check' mangled-name='PyCallable_Check' filepath='Objects/object.c' line='1475' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCallable_Check'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_Not' mangled-name='PyObject_Not' filepath='Objects/object.c' line='1463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Not'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='Objects/object.c' line='1435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='1463' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GenericSetDict' mangled-name='PyObject_GenericSetDict' filepath='Objects/object.c' line='1407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetDict'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1407' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/object.c' line='1407' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/object.c' line='1407' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1407' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/object.c' line='1407' column='1'/>
+      <parameter type-id='type-id-21' name='context' filepath='Objects/object.c' line='1407' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GenericSetAttr' mangled-name='PyObject_GenericSetAttr' filepath='Objects/object.c' line='1401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericSetAttr'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1401' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='1401' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/object.c' line='1401' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1401' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1401' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/object.c' line='1401' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_GenericSetAttrWithDict' mangled-name='_PyObject_GenericSetAttrWithDict' filepath='Objects/object.c' line='1326' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GenericSetAttrWithDict'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1326' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='1326' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/object.c' line='1327' column='1'/>
-      <parameter type-id='type-id-15' name='dict' filepath='Objects/object.c' line='1327' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1326' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1326' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/object.c' line='1327' column='1'/>
+      <parameter type-id='type-id-16' name='dict' filepath='Objects/object.c' line='1327' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GenericGetAttr' mangled-name='PyObject_GenericGetAttr' filepath='Objects/object.c' line='1320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GenericGetAttr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_GenericGetAttrWithDict' mangled-name='_PyObject_GenericGetAttrWithDict' filepath='Objects/object.c' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GenericGetAttrWithDict'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1207' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='1207' column='1'/>
-      <parameter type-id='type-id-15' name='dict' filepath='Objects/object.c' line='1208' column='1'/>
-      <parameter type-id='type-id-8' name='suppress' filepath='Objects/object.c' line='1208' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1207' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1207' column='1'/>
+      <parameter type-id='type-id-16' name='dict' filepath='Objects/object.c' line='1208' column='1'/>
+      <parameter type-id='type-id-9' name='suppress' filepath='Objects/object.c' line='1208' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_GetMethod' mangled-name='_PyObject_GetMethod' filepath='Objects/object.c' line='1125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetMethod'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1125' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='1125' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1125' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1125' column='1'/>
       <parameter type-id='type-id-86' name='method' filepath='Objects/object.c' line='1125' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_NextNotImplemented' mangled-name='_PyObject_NextNotImplemented' filepath='Objects/object.c' line='1105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_NextNotImplemented'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='Objects/object.c' line='1093' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_GetDictPtr' mangled-name='_PyObject_GetDictPtr' filepath='Objects/object.c' line='1070' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetDictPtr'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/object.c' line='1070' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='1070' column='1'/>
       <return type-id='type-id-86'/>
     </function-decl>
     <function-decl name='PyObject_SetAttr' mangled-name='PyObject_SetAttr' filepath='Objects/object.c' line='1019' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='1019' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='1019' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/object.c' line='1019' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='1019' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1019' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Objects/object.c' line='1019' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_HasAttr' mangled-name='PyObject_HasAttr' filepath='Objects/object.c' line='1004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttr'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2772' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='1004' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='1004' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_LookupAttrId' mangled-name='_PyObject_LookupAttrId' filepath='Objects/object.c' line='993' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupAttrId'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='993' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='993' column='1'/>
       <parameter type-id='type-id-453' name='name' filepath='Objects/object.c' line='993' column='1'/>
       <parameter type-id='type-id-86' name='result' filepath='Objects/object.c' line='993' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_LookupAttr' mangled-name='_PyObject_LookupAttr' filepath='Objects/object.c' line='944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupAttr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='944' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='944' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='944' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='944' column='1'/>
       <parameter type-id='type-id-86' name='result' filepath='Objects/object.c' line='944' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_GetAttr' mangled-name='PyObject_GetAttr' filepath='Objects/object.c' line='910' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='910' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/object.c' line='910' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='910' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/object.c' line='910' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_SetAttrId' mangled-name='_PyObject_SetAttrId' filepath='Objects/object.c' line='877' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_SetAttrId'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='877' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='877' column='1'/>
       <parameter type-id='type-id-453' name='name' filepath='Objects/object.c' line='877' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/object.c' line='877' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/object.c' line='877' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyObject_GetAttrId' mangled-name='_PyObject_GetAttrId' filepath='Objects/object.c' line='866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetAttrId'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='866' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='866' column='1'/>
       <parameter type-id='type-id-453' name='name' filepath='Objects/object.c' line='866' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_IsAbstract' mangled-name='_PyObject_IsAbstract' filepath='Objects/object.c' line='849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsAbstract'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/object.c' line='849' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_SetAttrString' mangled-name='PyObject_SetAttrString' filepath='Objects/object.c' line='833' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetAttrString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='833' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/object.c' line='833' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/object.c' line='833' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_HasAttrString' mangled-name='PyObject_HasAttrString' filepath='Objects/object.c' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HasAttrString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
       <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='Objects/object.c' line='806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_Hash' mangled-name='PyObject_Hash' filepath='Objects/object.c' line='785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Hash'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='785' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='785' column='1'/>
       <return type-id='type-id-117'/>
     </function-decl>
     <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='Objects/object.c' line='777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_HashNotImplemented'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='777' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='777' column='1'/>
       <return type-id='type-id-117'/>
     </function-decl>
     <function-decl name='PyObject_RichCompareBool' mangled-name='PyObject_RichCompareBool' filepath='Objects/object.c' line='751' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompareBool'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='751' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/object.c' line='751' column='1'/>
-      <parameter type-id='type-id-8' name='op' filepath='Objects/object.c' line='751' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='751' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/object.c' line='751' column='1'/>
+      <parameter type-id='type-id-9' name='op' filepath='Objects/object.c' line='751' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_RichCompare' mangled-name='PyObject_RichCompare' filepath='Objects/object.c' line='729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_RichCompare'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/object.c' line='729' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/object.c' line='729' column='1'/>
-      <parameter type-id='type-id-8' name='op' filepath='Objects/object.c' line='729' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='729' column='1'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/object.c' line='729' column='1'/>
+      <parameter type-id='type-id-9' name='op' filepath='Objects/object.c' line='729' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_FunctionStr' mangled-name='_PyObject_FunctionStr' filepath='Objects/object.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_FunctionStr'>
-      <parameter type-id='type-id-15' name='x' filepath='Objects/object.c' line='597' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/object.c' line='597' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_Bytes' mangled-name='PyObject_Bytes' filepath='Objects/object.c' line='549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Bytes'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='549' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_ASCII' mangled-name='PyObject_ASCII' filepath='Objects/object.c' line='522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ASCII'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='Objects/object.c' line='462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Str'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='Objects/object.c' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='Objects/object.c' line='368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Dump'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1002' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyObject_IsFreed' mangled-name='_PyObject_IsFreed' filepath='Objects/object.c' line='347' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_IsFreed'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='347' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_Py_BreakPoint' mangled-name='_Py_BreakPoint' filepath='Objects/object.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BreakPoint'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyObject_Print' mangled-name='PyObject_Print' filepath='Objects/object.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Print'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='264' column='1'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='264' column='1'/>
       <parameter type-id='type-id-188' name='fp' filepath='Objects/object.c' line='264' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Objects/object.c' line='264' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Objects/object.c' line='264' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_CallFinalizerFromDealloc' mangled-name='PyObject_CallFinalizerFromDealloc' filepath='Objects/object.c' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizerFromDealloc'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/object.c' line='222' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyObject_CallFinalizer' mangled-name='PyObject_CallFinalizer' filepath='Objects/object.c' line='205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_CallFinalizer'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/object.c' line='205' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-36' size-in-bits='64' id='type-id-474'/>
+    <pointer-type-def type-id='type-id-37' size-in-bits='64' id='type-id-474'/>
     <function-decl name='_PyObject_NewVar' mangled-name='_PyObject_NewVar' filepath='Objects/object.c' line='192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_NewVar'>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='192' column='1'/>
-      <parameter type-id='type-id-30' name='nitems' filepath='Objects/object.c' line='192' column='1'/>
+      <parameter type-id='type-id-32' name='tp' filepath='Objects/object.c' line='192' column='1'/>
+      <parameter type-id='type-id-31' name='nitems' filepath='Objects/object.c' line='192' column='1'/>
       <return type-id='type-id-474'/>
     </function-decl>
     <function-decl name='_PyObject_New' mangled-name='_PyObject_New' filepath='Objects/object.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_New'>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='181' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-32' name='tp' filepath='Objects/object.c' line='181' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyObject_InitVar' mangled-name='PyObject_InitVar' filepath='Objects/object.c' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_InitVar'>
       <parameter type-id='type-id-474' name='op' filepath='Objects/object.c' line='170' column='1'/>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='170' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/object.c' line='170' column='1'/>
+      <parameter type-id='type-id-32' name='tp' filepath='Objects/object.c' line='170' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/object.c' line='170' column='1'/>
       <return type-id='type-id-474'/>
     </function-decl>
     <function-decl name='PyObject_Init' mangled-name='PyObject_Init' filepath='Objects/object.c' line='159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Init'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='159' column='1'/>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='159' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='159' column='1'/>
+      <parameter type-id='type-id-32' name='tp' filepath='Objects/object.c' line='159' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_Py_DecRef' mangled-name='_Py_DecRef' filepath='Objects/object.c' line='153' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecRef'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/object.c' line='153' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_Py_IncRef' mangled-name='_Py_IncRef' filepath='Objects/object.c' line='147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IncRef'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/object.c' line='153' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='Py_DecRef' mangled-name='Py_DecRef' filepath='Objects/object.c' line='141' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecRef'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/object.c' line='153' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='Py_IncRef' mangled-name='Py_IncRef' filepath='Objects/object.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IncRef'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/object.c' line='153' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyObject_CheckConsistency' mangled-name='_PyObject_CheckConsistency' filepath='Objects/object.c' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CheckConsistency'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='37' column='1'/>
-      <parameter type-id='type-id-8' name='check_content' filepath='Objects/object.c' line='37' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='37' column='1'/>
+      <parameter type-id='type-id-9' name='check_content' filepath='Objects/object.c' line='37' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_SelfIter' mangled-name='PyObject_SelfIter' filepath='Objects/object.c' line='1093' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SelfIter'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_IsTrue' mangled-name='PyObject_IsTrue' filepath='Objects/object.c' line='1435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IsTrue'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='830' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_Repr' mangled-name='PyObject_Repr' filepath='Objects/object.c' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Repr'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='409' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_Str' mangled-name='PyObject_Str' filepath='Objects/object.c' line='462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Str'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='462' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='Objects/object.c' line='368' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_Dump'>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/object.c' line='368' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetAttrString' mangled-name='PyObject_GetAttrString' filepath='Objects/object.c' line='806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetAttrString'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/object.c' line='806' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/object.c' line='806' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyMem_DumpTraceback' mangled-name='_PyMem_DumpTraceback' filepath='Objects/object.c' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='./Include/pystate.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_DebugMallocStats' mangled-name='_PyDict_DebugMallocStats' filepath='./Include/cpython/dictobject.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_DebugMallocStats' mangled-name='_PyFloat_DebugMallocStats' filepath='./Include/floatobject.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFrame_DebugMallocStats' mangled-name='_PyFrame_DebugMallocStats' filepath='./Include/cpython/frameobject.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyList_DebugMallocStats' mangled-name='_PyList_DebugMallocStats' filepath='./Include/cpython/listobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_DebugMallocStats' mangled-name='_PyTuple_DebugMallocStats' filepath='./Include/cpython/tupleobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTraceMalloc_NewReference' mangled-name='_PyTraceMalloc_NewReference' filepath='./Include/internal/pycore_object.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTypes_InitSlotDefs' mangled-name='_PyTypes_InitSlotDefs' filepath='./Include/internal/pycore_pylifecycle.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_Sort' mangled-name='PyList_Sort' filepath='./Include/listobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='./Include/ceval.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_DelItem' mangled-name='PyDict_DelItem' filepath='./Include/dictobject.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObjectDict_SetItem' mangled-name='_PyObjectDict_SetItem' filepath='./Include/cpython/dictobject.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_IsData' mangled-name='PyDescr_IsData' filepath='./Include/descrobject.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_FromObject' mangled-name='PyBytes_FromObject' filepath='./Include/bytesobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='./Include/cpython/unicodeobject.h' line='882' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='./Include/unicodeobject.h' line='650' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='ferror' mangled-name='ferror' filepath='/usr/include/stdio.h' line='761' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='./Include/internal/pycore_object.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_CheckConsistency' mangled-name='_PyDict_CheckConsistency' filepath='./Include/internal/pycore_object.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_CheckConsistency' mangled-name='_PyUnicode_CheckConsistency' filepath='./Include/cpython/unicodeobject.h' line='246' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='./Include/pystate.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='./Include/pystate.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/obmalloc.c' comp-dir-path='/src' language='LANG_C99'>
@@ -8264,10 +10128,10 @@
         <var-decl name='initialized' type-id='type-id-476' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='79' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='83' column='1'/>
+        <var-decl name='tracing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='83' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='max_nframe' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='87' column='1'/>
+        <var-decl name='max_nframe' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='87' column='1'/>
       </data-member>
     </class-decl>
     <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/internal/pycore_pymem.h' line='75' column='1' id='type-id-476'>
@@ -8277,37 +10141,33 @@
       <enumerator name='TRACEMALLOC_FINALIZED' value='2'/>
     </enum-decl>
     <var-decl name='_Py_tracemalloc_config' type-id='type-id-475' mangled-name='_Py_tracemalloc_config' visibility='default' filepath='./Include/internal/pycore_pymem.h' line='95' column='1' elf-symbol-id='_Py_tracemalloc_config'/>
-    <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='Objects/obmalloc.c' line='2911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugMallocStats'>
-      <parameter type-id='type-id-188' name='out' filepath='Objects/obmalloc.c' line='2911' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
     <function-decl name='_PyDebugAllocatorStats' mangled-name='_PyDebugAllocatorStats' filepath='Objects/obmalloc.c' line='2866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyDebugAllocatorStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/obmalloc.c' line='2866' column='1'/>
       <parameter type-id='type-id-3' name='block_name' filepath='Objects/obmalloc.c' line='2867' column='1'/>
-      <parameter type-id='type-id-8' name='num_blocks' filepath='Objects/obmalloc.c' line='2867' column='1'/>
+      <parameter type-id='type-id-9' name='num_blocks' filepath='Objects/obmalloc.c' line='2867' column='1'/>
       <parameter type-id='type-id-157' name='sizeof_block' filepath='Objects/obmalloc.c' line='2867' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_Py_GetAllocatedBlocks' mangled-name='_Py_GetAllocatedBlocks' filepath='Objects/obmalloc.c' line='1246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetAllocatedBlocks'>
-      <return type-id='type-id-30'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyObject_Free' mangled-name='PyObject_Free' filepath='Objects/obmalloc.c' line='707' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Free'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyObject_Realloc' mangled-name='PyObject_Realloc' filepath='Objects/obmalloc.c' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Realloc'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
       <parameter type-id='type-id-157' name='new_size' filepath='Objects/obmalloc.c' line='698' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyObject_Calloc' mangled-name='PyObject_Calloc' filepath='Objects/obmalloc.c' line='689' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Calloc'>
       <parameter type-id='type-id-157' name='nelem' filepath='Objects/obmalloc.c' line='689' column='1'/>
       <parameter type-id='type-id-157' name='elsize' filepath='Objects/obmalloc.c' line='689' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyObject_Malloc' mangled-name='PyObject_Malloc' filepath='Objects/obmalloc.c' line='680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_Malloc'>
       <parameter type-id='type-id-157' name='size' filepath='Objects/obmalloc.c' line='680' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='_PyMem_Strdup' mangled-name='_PyMem_Strdup' filepath='Objects/obmalloc.c' line='667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_Strdup'>
       <parameter type-id='type-id-3' name='str' filepath='Objects/obmalloc.c' line='667' column='1'/>
@@ -8324,44 +10184,44 @@
       <return type-id='type-id-325'/>
     </function-decl>
     <function-decl name='PyMem_Free' mangled-name='PyMem_Free' filepath='Objects/obmalloc.c' line='627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Free'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyMem_Realloc' mangled-name='PyMem_Realloc' filepath='Objects/obmalloc.c' line='618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Realloc'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
       <parameter type-id='type-id-157' name='new_size' filepath='Objects/obmalloc.c' line='698' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyMem_Calloc' mangled-name='PyMem_Calloc' filepath='Objects/obmalloc.c' line='609' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Calloc'>
       <parameter type-id='type-id-157' name='nelem' filepath='Objects/obmalloc.c' line='689' column='1'/>
       <parameter type-id='type-id-157' name='elsize' filepath='Objects/obmalloc.c' line='689' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyMem_Malloc' mangled-name='PyMem_Malloc' filepath='Objects/obmalloc.c' line='600' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_Malloc'>
       <parameter type-id='type-id-157' name='size' filepath='Objects/obmalloc.c' line='680' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyMem_RawFree' mangled-name='PyMem_RawFree' filepath='Objects/obmalloc.c' line='593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawFree'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='707' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyMem_RawRealloc' mangled-name='PyMem_RawRealloc' filepath='Objects/obmalloc.c' line='585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawRealloc'>
-      <parameter type-id='type-id-20' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/obmalloc.c' line='698' column='1'/>
       <parameter type-id='type-id-157' name='new_size' filepath='Objects/obmalloc.c' line='698' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyMem_RawCalloc' mangled-name='PyMem_RawCalloc' filepath='Objects/obmalloc.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawCalloc'>
       <parameter type-id='type-id-157' name='nelem' filepath='Objects/obmalloc.c' line='689' column='1'/>
       <parameter type-id='type-id-157' name='elsize' filepath='Objects/obmalloc.c' line='689' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <function-decl name='PyMem_RawMalloc' mangled-name='PyMem_RawMalloc' filepath='Objects/obmalloc.c' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_RawMalloc'>
       <parameter type-id='type-id-157' name='size' filepath='Objects/obmalloc.c' line='680' column='1'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-479' visibility='default' filepath='./Include/cpython/objimpl.h' line='64' column='1' id='type-id-480'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ctx' type-id='type-id-20' visibility='default' filepath='./Include/cpython/objimpl.h' line='66' column='1'/>
+        <var-decl name='ctx' type-id='type-id-21' visibility='default' filepath='./Include/cpython/objimpl.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='alloc' type-id='type-id-481' visibility='default' filepath='./Include/cpython/objimpl.h' line='69' column='1'/>
@@ -8376,242 +10236,311 @@
     <pointer-type-def type-id='type-id-479' size-in-bits='64' id='type-id-485'/>
     <function-decl name='PyObject_SetArenaAllocator' mangled-name='PyObject_SetArenaAllocator' filepath='Objects/obmalloc.c' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_SetArenaAllocator'>
       <parameter type-id='type-id-485' name='allocator' filepath='Objects/obmalloc.c' line='556' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyObject_GetArenaAllocator' mangled-name='PyObject_GetArenaAllocator' filepath='Objects/obmalloc.c' line='550' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GetArenaAllocator'>
       <parameter type-id='type-id-485' name='allocator' filepath='Objects/obmalloc.c' line='556' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_SetupDebugHooks' mangled-name='PyMem_SetupDebugHooks' filepath='Objects/obmalloc.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetupDebugHooks'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyMem_GetCurrentAllocatorName' mangled-name='_PyMem_GetCurrentAllocatorName' filepath='Objects/obmalloc.c' line='374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetCurrentAllocatorName'>
+      <return type-id='type-id-3'/>
+    </function-decl>
+    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='34' column='1' id='type-id-486'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='PYMEM_ALLOCATOR_NOT_SET' value='0'/>
+      <enumerator name='PYMEM_ALLOCATOR_DEFAULT' value='1'/>
+      <enumerator name='PYMEM_ALLOCATOR_DEBUG' value='2'/>
+      <enumerator name='PYMEM_ALLOCATOR_MALLOC' value='3'/>
+      <enumerator name='PYMEM_ALLOCATOR_MALLOC_DEBUG' value='4'/>
+      <enumerator name='PYMEM_ALLOCATOR_PYMALLOC' value='5'/>
+      <enumerator name='PYMEM_ALLOCATOR_PYMALLOC_DEBUG' value='6'/>
+    </enum-decl>
+    <typedef-decl name='PyMemAllocatorName' type-id='type-id-486' filepath='./Include/cpython/pymem.h' line='44' column='1' id='type-id-487'/>
+    <pointer-type-def type-id='type-id-487' size-in-bits='64' id='type-id-488'/>
+    <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='Objects/obmalloc.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetAllocatorName'>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/obmalloc.c' line='271' column='1'/>
+      <parameter type-id='type-id-488' name='allocator' filepath='Objects/obmalloc.c' line='271' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='23' column='1' id='type-id-486'>
+    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='23' column='1' id='type-id-489'>
       <underlying-type type-id='type-id-83'/>
       <enumerator name='PYMEM_DOMAIN_RAW' value='0'/>
       <enumerator name='PYMEM_DOMAIN_MEM' value='1'/>
       <enumerator name='PYMEM_DOMAIN_OBJ' value='2'/>
     </enum-decl>
-    <typedef-decl name='PyMemAllocatorDomain' type-id='type-id-486' filepath='./Include/cpython/pymem.h' line='32' column='1' id='type-id-487'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-488' visibility='default' filepath='./Include/cpython/pymem.h' line='47' column='1' id='type-id-489'>
+    <typedef-decl name='PyMemAllocatorDomain' type-id='type-id-489' filepath='./Include/cpython/pymem.h' line='32' column='1' id='type-id-490'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-491' visibility='default' filepath='./Include/cpython/pymem.h' line='47' column='1' id='type-id-492'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ctx' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pymem.h' line='49' column='1'/>
+        <var-decl name='ctx' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pymem.h' line='49' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='malloc' type-id='type-id-481' visibility='default' filepath='./Include/cpython/pymem.h' line='52' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='calloc' type-id='type-id-490' visibility='default' filepath='./Include/cpython/pymem.h' line='55' column='1'/>
+        <var-decl name='calloc' type-id='type-id-493' visibility='default' filepath='./Include/cpython/pymem.h' line='55' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='realloc' type-id='type-id-491' visibility='default' filepath='./Include/cpython/pymem.h' line='58' column='1'/>
+        <var-decl name='realloc' type-id='type-id-494' visibility='default' filepath='./Include/cpython/pymem.h' line='58' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='free' type-id='type-id-492' visibility='default' filepath='./Include/cpython/pymem.h' line='61' column='1'/>
+        <var-decl name='free' type-id='type-id-495' visibility='default' filepath='./Include/cpython/pymem.h' line='61' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-493' size-in-bits='64' id='type-id-490'/>
-    <pointer-type-def type-id='type-id-494' size-in-bits='64' id='type-id-491'/>
-    <pointer-type-def type-id='type-id-495' size-in-bits='64' id='type-id-492'/>
-    <typedef-decl name='PyMemAllocatorEx' type-id='type-id-489' filepath='./Include/cpython/pymem.h' line='62' column='1' id='type-id-488'/>
-    <pointer-type-def type-id='type-id-488' size-in-bits='64' id='type-id-496'/>
-    <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='Objects/obmalloc.c' line='538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetAllocator'>
-      <parameter type-id='type-id-487' name='domain' filepath='Objects/obmalloc.c' line='538' column='1'/>
-      <parameter type-id='type-id-496' name='allocator' filepath='Objects/obmalloc.c' line='538' column='1'/>
-      <return type-id='type-id-69'/>
+    <pointer-type-def type-id='type-id-496' size-in-bits='64' id='type-id-493'/>
+    <pointer-type-def type-id='type-id-497' size-in-bits='64' id='type-id-494'/>
+    <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-495'/>
+    <typedef-decl name='PyMemAllocatorEx' type-id='type-id-492' filepath='./Include/cpython/pymem.h' line='62' column='1' id='type-id-491'/>
+    <pointer-type-def type-id='type-id-491' size-in-bits='64' id='type-id-499'/>
+    <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='Objects/obmalloc.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetDefaultAllocator'>
+      <parameter type-id='type-id-490' name='domain' filepath='Objects/obmalloc.c' line='258' column='1'/>
+      <parameter type-id='type-id-499' name='old_alloc' filepath='Objects/obmalloc.c' line='259' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='Objects/obmalloc.c' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_GetAllocator'>
-      <parameter type-id='type-id-487' name='domain' filepath='Objects/obmalloc.c' line='538' column='1'/>
-      <parameter type-id='type-id-496' name='allocator' filepath='Objects/obmalloc.c' line='538' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-490' name='domain' filepath='Objects/obmalloc.c' line='520' column='1'/>
+      <parameter type-id='type-id-499' name='allocator' filepath='Objects/obmalloc.c' line='520' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyMem_SetupDebugHooks' mangled-name='PyMem_SetupDebugHooks' filepath='Objects/obmalloc.c' line='512' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetupDebugHooks'>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='Objects/obmalloc.c' line='538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMem_SetAllocator'>
+      <parameter type-id='type-id-490' name='domain' filepath='Objects/obmalloc.c' line='520' column='1'/>
+      <parameter type-id='type-id-499' name='allocator' filepath='Objects/obmalloc.c' line='520' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyMem_GetCurrentAllocatorName' mangled-name='_PyMem_GetCurrentAllocatorName' filepath='Objects/obmalloc.c' line='374' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetCurrentAllocatorName'>
-      <return type-id='type-id-3'/>
+    <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='Objects/obmalloc.c' line='2911' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_DebugMallocStats'>
+      <parameter type-id='type-id-188' name='out' filepath='Objects/obmalloc.c' line='2911' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pymem.h' line='34' column='1' id='type-id-497'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='PYMEM_ALLOCATOR_NOT_SET' value='0'/>
-      <enumerator name='PYMEM_ALLOCATOR_DEFAULT' value='1'/>
-      <enumerator name='PYMEM_ALLOCATOR_DEBUG' value='2'/>
-      <enumerator name='PYMEM_ALLOCATOR_MALLOC' value='3'/>
-      <enumerator name='PYMEM_ALLOCATOR_MALLOC_DEBUG' value='4'/>
-      <enumerator name='PYMEM_ALLOCATOR_PYMALLOC' value='5'/>
-      <enumerator name='PYMEM_ALLOCATOR_PYMALLOC_DEBUG' value='6'/>
-    </enum-decl>
-    <typedef-decl name='PyMemAllocatorName' type-id='type-id-497' filepath='./Include/cpython/pymem.h' line='44' column='1' id='type-id-498'/>
-    <function-decl name='_PyMem_SetupAllocators' mangled-name='_PyMem_SetupAllocators' filepath='Objects/obmalloc.c' line='307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetupAllocators'>
-      <parameter type-id='type-id-498' name='allocator' filepath='Objects/obmalloc.c' line='307' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fputs' mangled-name='fputs' filepath='/usr/include/stdio.h' line='626' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-499'/>
-    <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='Objects/obmalloc.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_GetAllocatorName'>
-      <parameter type-id='type-id-3' name='name' filepath='Objects/obmalloc.c' line='271' column='1'/>
-      <parameter type-id='type-id-499' name='allocator' filepath='Objects/obmalloc.c' line='271' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fputc' mangled-name='fputc' filepath='/usr/include/stdio.h' line='521' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='Objects/obmalloc.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyMem_SetDefaultAllocator'>
-      <parameter type-id='type-id-487' name='domain' filepath='Objects/obmalloc.c' line='258' column='1'/>
-      <parameter type-id='type-id-496' name='old_alloc' filepath='Objects/obmalloc.c' line='259' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-type size-in-bits='64' id='type-id-495'>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='./Include/cpython/pystate.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin___memcpy_chk' mangled-name='__memcpy_chk' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getenv' mangled-name='getenv' filepath='/usr/include/stdlib.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcslen' mangled-name='wcslen' filepath='/usr/include/wchar.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='munmap' mangled-name='munmap' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='mmap' mangled-name='mmap64' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='free' mangled-name='free' filepath='/usr/include/stdlib.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='realloc' mangled-name='realloc' filepath='/usr/include/stdlib.h' line='550' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='calloc' mangled-name='calloc' filepath='/usr/include/stdlib.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='malloc' mangled-name='malloc' filepath='/usr/include/stdlib.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-type size-in-bits='64' id='type-id-498'>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-4'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-484'>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
       <parameter type-id='type-id-157'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-type>
     <function-type size-in-bits='64' id='type-id-483'>
-      <parameter type-id='type-id-20'/>
+      <parameter type-id='type-id-21'/>
       <parameter type-id='type-id-157'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-493'>
-      <parameter type-id='type-id-20'/>
+    <function-type size-in-bits='64' id='type-id-496'>
+      <parameter type-id='type-id-21'/>
       <parameter type-id='type-id-157'/>
       <parameter type-id='type-id-157'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-type>
-    <function-type size-in-bits='64' id='type-id-494'>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
+    <function-type size-in-bits='64' id='type-id-497'>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
       <parameter type-id='type-id-157'/>
-      <return type-id='type-id-20'/>
+      <return type-id='type-id-21'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/picklebufobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyPickleBuffer_Type' type-id='type-id-149' mangled-name='PyPickleBuffer_Type' visibility='default' filepath='./Include/cpython/picklebufobject.h' line='13' column='1' elf-symbol-id='PyPickleBuffer_Type'/>
     <function-decl name='PyPickleBuffer_Release' mangled-name='PyPickleBuffer_Release' filepath='Objects/picklebufobject.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_Release'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/picklebufobject.c' line='55' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyPickleBuffer_GetBuffer' mangled-name='PyPickleBuffer_GetBuffer' filepath='Objects/picklebufobject.c' line='36' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_GetBuffer'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/picklebufobject.c' line='36' column='1'/>
-      <return type-id='type-id-196'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/picklebufobject.c' line='36' column='1'/>
+      <return type-id='type-id-198'/>
     </function-decl>
     <function-decl name='PyPickleBuffer_FromObject' mangled-name='PyPickleBuffer_FromObject' filepath='Objects/picklebufobject.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPickleBuffer_FromObject'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='base' filepath='Objects/picklebufobject.c' line='17' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='./Include/memoryobject.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/rangeobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyRange_Type' type-id='type-id-149' mangled-name='PyRange_Type' visibility='default' filepath='./Include/rangeobject.h' line='18' column='1' elf-symbol-id='PyRange_Type'/>
     <var-decl name='PyRangeIter_Type' type-id='type-id-149' mangled-name='PyRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='19' column='1' elf-symbol-id='PyRangeIter_Type'/>
     <var-decl name='PyLongRangeIter_Type' type-id='type-id-149' mangled-name='PyLongRangeIter_Type' visibility='default' filepath='./Include/rangeobject.h' line='20' column='1' elf-symbol-id='PyLongRangeIter_Type'/>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Objects/setobject.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PySetIter_Type' type-id='type-id-149' mangled-name='PySetIter_Type' visibility='default' filepath='./Include/setobject.h' line='78' column='1' elf-symbol-id='PySetIter_Type'/>
-    <var-decl name='PySet_Type' type-id='type-id-149' mangled-name='PySet_Type' visibility='default' filepath='./Include/setobject.h' line='76' column='1' elf-symbol-id='PySet_Type'/>
-    <var-decl name='PyFrozenSet_Type' type-id='type-id-149' mangled-name='PyFrozenSet_Type' visibility='default' filepath='./Include/setobject.h' line='77' column='1' elf-symbol-id='PyFrozenSet_Type'/>
-    <var-decl name='_PySet_Dummy' type-id='type-id-15' mangled-name='_PySet_Dummy' visibility='default' filepath='./Include/setobject.h' line='69' column='1' elf-symbol-id='_PySet_Dummy'/>
+    <function-decl name='PyNumber_Subtract' mangled-name='PyNumber_Subtract' filepath='./Include/abstract.h' line='427' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Multiply' mangled-name='PyNumber_Multiply' filepath='./Include/abstract.h' line='432' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySequence_IterSearch' mangled-name='_PySequence_IterSearch' filepath='./Include/cpython/abstract.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Not' mangled-name='PyObject_Not' filepath='./Include/object.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Remainder' mangled-name='PyNumber_Remainder' filepath='./Include/abstract.h' line='454' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_FloorDivide' mangled-name='PyNumber_FloorDivide' filepath='./Include/abstract.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySlice_GetLongIndices' mangled-name='_PySlice_GetLongIndices' filepath='./Include/sliceobject.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Objects/setobject.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='PySetIter_Type' type-id='type-id-149' mangled-name='PySetIter_Type' visibility='default' filepath='./Include/setobject.h' line='78' column='1' elf-symbol-id='PySetIter_Type'/>
+    <var-decl name='PySet_Type' type-id='type-id-149' mangled-name='PySet_Type' visibility='default' filepath='./Include/setobject.h' line='76' column='1' elf-symbol-id='PySet_Type'/>
+    <var-decl name='PyFrozenSet_Type' type-id='type-id-149' mangled-name='PyFrozenSet_Type' visibility='default' filepath='./Include/setobject.h' line='77' column='1' elf-symbol-id='PyFrozenSet_Type'/>
+    <var-decl name='_PySet_Dummy' type-id='type-id-16' mangled-name='_PySet_Dummy' visibility='default' filepath='./Include/setobject.h' line='69' column='1' elf-symbol-id='_PySet_Dummy'/>
     <function-decl name='_PySet_Update' mangled-name='_PySet_Update' filepath='Objects/setobject.c' line='2328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_Update'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='set' filepath='Objects/setobject.c' line='2328' column='1'/>
+      <parameter type-id='type-id-16' name='iterable' filepath='Objects/setobject.c' line='2328' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Pop' mangled-name='PySet_Pop' filepath='Objects/setobject.c' line='2318' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Pop'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/listobject.c' line='2504' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PySet_NextEntry' mangled-name='_PySet_NextEntry' filepath='Objects/setobject.c' line='2302' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySet_NextEntry'>
-      <parameter type-id='type-id-15' name='set' filepath='Objects/setobject.c' line='2302' column='1'/>
+      <parameter type-id='type-id-16' name='set' filepath='Objects/setobject.c' line='2302' column='1'/>
       <parameter type-id='type-id-125' name='pos' filepath='Objects/setobject.c' line='2302' column='1'/>
       <parameter type-id='type-id-86' name='key' filepath='Objects/setobject.c' line='2302' column='1'/>
       <parameter type-id='type-id-457' name='hash' filepath='Objects/setobject.c' line='2302' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Add' mangled-name='PySet_Add' filepath='Objects/setobject.c' line='2291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Add'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='anyset' filepath='Objects/setobject.c' line='2291' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/setobject.c' line='2291' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='Objects/setobject.c' line='2281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Discard'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='set' filepath='Objects/setobject.c' line='2281' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/setobject.c' line='2281' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Contains' mangled-name='PySet_Contains' filepath='Objects/setobject.c' line='2271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Contains'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='anyset' filepath='Objects/setobject.c' line='2291' column='1'/>
+      <parameter type-id='type-id-16' name='key' filepath='Objects/setobject.c' line='2291' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='Objects/setobject.c' line='2261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Clear'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='set' filepath='Objects/setobject.c' line='2261' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='Objects/setobject.c' line='2251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='anyset' filepath='Objects/setobject.c' line='2251' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyFrozenSet_New' mangled-name='PyFrozenSet_New' filepath='Objects/setobject.c' line='2245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyFrozenSet_New'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySet_New' mangled-name='PySet_New' filepath='Objects/setobject.c' line='2239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySet_New'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='390' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyDict_Next' mangled-name='_PyDict_Next' filepath='./Include/cpython/dictobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_Contains_KnownHash' mangled-name='_PyDict_Contains_KnownHash' filepath='./Include/cpython/dictobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='./Include/cpython/unicodeobject.h' line='1155' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/sliceobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyEllipsis_Type' type-id='type-id-149' mangled-name='PyEllipsis_Type' visibility='default' filepath='./Include/sliceobject.h' line='29' column='1' elf-symbol-id='PyEllipsis_Type'/>
-    <var-decl name='_Py_EllipsisObject' type-id='type-id-68' mangled-name='_Py_EllipsisObject' visibility='default' filepath='./Include/sliceobject.h' line='9' column='1' elf-symbol-id='_Py_EllipsisObject'/>
+    <var-decl name='_Py_EllipsisObject' type-id='type-id-69' mangled-name='_Py_EllipsisObject' visibility='default' filepath='./Include/sliceobject.h' line='9' column='1' elf-symbol-id='_Py_EllipsisObject'/>
     <var-decl name='PySlice_Type' type-id='type-id-149' mangled-name='PySlice_Type' visibility='default' filepath='./Include/sliceobject.h' line='28' column='1' elf-symbol-id='PySlice_Type'/>
     <function-decl name='_PySlice_GetLongIndices' mangled-name='_PySlice_GetLongIndices' filepath='Objects/sliceobject.c' line='381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySlice_GetLongIndices'>
       <parameter type-id='type-id-240' name='self' filepath='Objects/sliceobject.c' line='381' column='1'/>
-      <parameter type-id='type-id-15' name='length' filepath='Objects/sliceobject.c' line='381' column='1'/>
+      <parameter type-id='type-id-16' name='length' filepath='Objects/sliceobject.c' line='381' column='1'/>
       <parameter type-id='type-id-86' name='start_ptr' filepath='Objects/sliceobject.c' line='382' column='1'/>
       <parameter type-id='type-id-86' name='stop_ptr' filepath='Objects/sliceobject.c' line='382' column='1'/>
       <parameter type-id='type-id-86' name='step_ptr' filepath='Objects/sliceobject.c' line='383' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySlice_GetIndicesEx' mangled-name='PySlice_GetIndicesEx' filepath='Objects/sliceobject.c' line='292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_GetIndicesEx'>
-      <parameter type-id='type-id-15' name='_r' filepath='Objects/sliceobject.c' line='292' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/sliceobject.c' line='292' column='1'/>
+      <parameter type-id='type-id-16' name='_r' filepath='Objects/sliceobject.c' line='292' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/sliceobject.c' line='292' column='1'/>
       <parameter type-id='type-id-125' name='start' filepath='Objects/sliceobject.c' line='293' column='1'/>
       <parameter type-id='type-id-125' name='stop' filepath='Objects/sliceobject.c' line='293' column='1'/>
       <parameter type-id='type-id-125' name='step' filepath='Objects/sliceobject.c' line='293' column='1'/>
       <parameter type-id='type-id-125' name='slicelength' filepath='Objects/sliceobject.c' line='294' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySlice_AdjustIndices' mangled-name='PySlice_AdjustIndices' filepath='Objects/sliceobject.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_AdjustIndices'>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/sliceobject.c' line='248' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/sliceobject.c' line='248' column='1'/>
       <parameter type-id='type-id-125' name='start' filepath='Objects/sliceobject.c' line='249' column='1'/>
       <parameter type-id='type-id-125' name='stop' filepath='Objects/sliceobject.c' line='249' column='1'/>
-      <parameter type-id='type-id-30' name='step' filepath='Objects/sliceobject.c' line='249' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-31' name='step' filepath='Objects/sliceobject.c' line='249' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PySlice_Unpack' mangled-name='PySlice_Unpack' filepath='Objects/sliceobject.c' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_Unpack'>
-      <parameter type-id='type-id-15' name='_r' filepath='Objects/sliceobject.c' line='203' column='1'/>
+      <parameter type-id='type-id-16' name='_r' filepath='Objects/sliceobject.c' line='203' column='1'/>
       <parameter type-id='type-id-125' name='start' filepath='Objects/sliceobject.c' line='204' column='1'/>
       <parameter type-id='type-id-125' name='stop' filepath='Objects/sliceobject.c' line='204' column='1'/>
       <parameter type-id='type-id-125' name='step' filepath='Objects/sliceobject.c' line='204' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PySlice_GetIndices' mangled-name='PySlice_GetIndices' filepath='Objects/sliceobject.c' line='171' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_GetIndices'>
-      <parameter type-id='type-id-15' name='_r' filepath='Objects/sliceobject.c' line='171' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/sliceobject.c' line='171' column='1'/>
+      <parameter type-id='type-id-16' name='_r' filepath='Objects/sliceobject.c' line='171' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/sliceobject.c' line='171' column='1'/>
       <parameter type-id='type-id-125' name='start' filepath='Objects/sliceobject.c' line='172' column='1'/>
       <parameter type-id='type-id-125' name='stop' filepath='Objects/sliceobject.c' line='172' column='1'/>
       <parameter type-id='type-id-125' name='step' filepath='Objects/sliceobject.c' line='172' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PySlice_FromIndices' mangled-name='_PySlice_FromIndices' filepath='Objects/sliceobject.c' line='152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySlice_FromIndices'>
-      <parameter type-id='type-id-30' name='istart' filepath='Objects/sliceobject.c' line='152' column='1'/>
-      <parameter type-id='type-id-30' name='istop' filepath='Objects/sliceobject.c' line='152' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='istart' filepath='Objects/sliceobject.c' line='152' column='1'/>
+      <parameter type-id='type-id-31' name='istop' filepath='Objects/sliceobject.c' line='152' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PySlice_New' mangled-name='PySlice_New' filepath='Objects/sliceobject.c' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySlice_New'>
-      <parameter type-id='type-id-15' name='start' filepath='Objects/sliceobject.c' line='114' column='1'/>
-      <parameter type-id='type-id-15' name='stop' filepath='Objects/sliceobject.c' line='114' column='1'/>
-      <parameter type-id='type-id-15' name='step' filepath='Objects/sliceobject.c' line='114' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='start' filepath='Objects/sliceobject.c' line='114' column='1'/>
+      <parameter type-id='type-id-16' name='stop' filepath='Objects/sliceobject.c' line='114' column='1'/>
+      <parameter type-id='type-id-16' name='step' filepath='Objects/sliceobject.c' line='114' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/structseq.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PyStructSequence_UnnamedField' type-id='type-id-4' visibility='default' filepath='./Include/structseq.h' line='22' column='1'/>
+    <var-decl name='PyStructSequence_UnnamedField' type-id='type-id-5' visibility='default' filepath='./Include/structseq.h' line='22' column='1'/>
     <class-decl name='PyStructSequence_Desc' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/structseq.h' line='15' column='1' id='type-id-500'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/structseq.h' line='16' column='1'/>
@@ -8623,7 +10552,7 @@
         <var-decl name='fields' type-id='type-id-501' visibility='default' filepath='./Include/structseq.h' line='18' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='n_in_sequence' type-id='type-id-8' visibility='default' filepath='./Include/structseq.h' line='19' column='1'/>
+        <var-decl name='n_in_sequence' type-id='type-id-9' visibility='default' filepath='./Include/structseq.h' line='19' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='PyStructSequence_Field' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/structseq.h' line='10' column='1' id='type-id-502'>
@@ -8639,38 +10568,44 @@
     <pointer-type-def type-id='type-id-503' size-in-bits='64' id='type-id-504'/>
     <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='Objects/structseq.c' line='535' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_NewType'>
       <parameter type-id='type-id-504' name='desc' filepath='Objects/structseq.c' line='535' column='1'/>
-      <return type-id='type-id-31'/>
+      <return type-id='type-id-32'/>
     </function-decl>
     <function-decl name='PyStructSequence_InitType' mangled-name='PyStructSequence_InitType' filepath='Objects/structseq.c' line='529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/structseq.c' line='529' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/structseq.c' line='529' column='1'/>
       <parameter type-id='type-id-504' name='desc' filepath='Objects/structseq.c' line='529' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyStructSequence_InitType2' mangled-name='PyStructSequence_InitType2' filepath='Objects/structseq.c' line='523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_InitType2'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/structseq.c' line='523' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/structseq.c' line='523' column='1'/>
       <parameter type-id='type-id-504' name='desc' filepath='Objects/structseq.c' line='523' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyStructSequence_InitType' mangled-name='_PyStructSequence_InitType' filepath='Objects/structseq.c' line='465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyStructSequence_InitType'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/structseq.c' line='465' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/structseq.c' line='465' column='1'/>
       <parameter type-id='type-id-504' name='desc' filepath='Objects/structseq.c' line='465' column='1'/>
-      <parameter type-id='type-id-18' name='tp_flags' filepath='Objects/structseq.c' line='466' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-19' name='tp_flags' filepath='Objects/structseq.c' line='466' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyStructSequence_GetItem' mangled-name='PyStructSequence_GetItem' filepath='Objects/structseq.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_GetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/listobject.c' line='225' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/listobject.c' line='225' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/structseq.c' line='86' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/structseq.c' line='86' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyStructSequence_SetItem' mangled-name='PyStructSequence_SetItem' filepath='Objects/structseq.c' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_SetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/structseq.c' line='80' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/structseq.c' line='80' column='1'/>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/structseq.c' line='80' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/structseq.c' line='80' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/structseq.c' line='80' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/structseq.c' line='80' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyStructSequence_New' mangled-name='PyStructSequence_New' filepath='Objects/structseq.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStructSequence_New'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/structseq.c' line='55' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/structseq.c' line='55' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='./Include/object.h' line='232' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_GetItemStringWithError' mangled-name='_PyDict_GetItemStringWithError' filepath='./Include/cpython/dictobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/tupleobject.c' comp-dir-path='/src' language='LANG_C99'>
@@ -8678,97 +10613,89 @@
     <var-decl name='PyTupleIter_Type' type-id='type-id-149' mangled-name='PyTupleIter_Type' visibility='default' filepath='./Include/tupleobject.h' line='24' column='1' elf-symbol-id='PyTupleIter_Type'/>
     <function-decl name='_PyTuple_Resize' mangled-name='_PyTuple_Resize' filepath='Objects/tupleobject.c' line='952' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_Resize'>
       <parameter type-id='type-id-86' name='pv' filepath='Objects/tupleobject.c' line='952' column='1'/>
-      <parameter type-id='type-id-30' name='newsize' filepath='Objects/tupleobject.c' line='952' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-31' name='newsize' filepath='Objects/tupleobject.c' line='952' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyTuple_GetSlice' mangled-name='PyTuple_GetSlice' filepath='Objects/tupleobject.c' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetSlice'>
-      <parameter type-id='type-id-15' name='a' filepath='Objects/listobject.c' line='482' column='1'/>
-      <parameter type-id='type-id-30' name='ilow' filepath='Objects/listobject.c' line='482' column='1'/>
-      <parameter type-id='type-id-30' name='ihigh' filepath='Objects/listobject.c' line='482' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/tupleobject.c' line='498' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/tupleobject.c' line='498' column='1'/>
+      <parameter type-id='type-id-31' name='j' filepath='Objects/tupleobject.c' line='498' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyTuple_Pack' mangled-name='PyTuple_Pack' filepath='Objects/tupleobject.c' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Pack'>
-      <parameter type-id='type-id-30' name='n' filepath='Objects/tupleobject.c' line='236' column='1'/>
+      <parameter type-id='type-id-31' name='n' filepath='Objects/tupleobject.c' line='236' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyTuple_MaybeUntrack' mangled-name='_PyTuple_MaybeUntrack' filepath='Objects/tupleobject.c' line='214' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_MaybeUntrack'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/tupleobject.c' line='214' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/tupleobject.c' line='214' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyTuple_SetItem' mangled-name='PyTuple_SetItem' filepath='Objects/tupleobject.c' line='194' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_SetItem'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='1933' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/tupleobject.c' line='194' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/tupleobject.c' line='194' column='1'/>
+      <parameter type-id='type-id-16' name='newitem' filepath='Objects/tupleobject.c' line='194' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyTuple_GetItem' mangled-name='PyTuple_GetItem' filepath='Objects/tupleobject.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_GetItem'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/listobject.c' line='225' column='1'/>
-      <parameter type-id='type-id-30' name='i' filepath='Objects/listobject.c' line='225' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/tupleobject.c' line='180' column='1'/>
+      <parameter type-id='type-id-31' name='i' filepath='Objects/tupleobject.c' line='180' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyTuple_Size' mangled-name='PyTuple_Size' filepath='Objects/tupleobject.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_Size'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='Objects/tupleobject.c' line='149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_New'>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/tupleobject.c' line='149' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/bytesobject.c' line='1224' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='_PyTuple_DebugMallocStats' mangled-name='_PyTuple_DebugMallocStats' filepath='Objects/tupleobject.c' line='37' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTuple_DebugMallocStats'>
       <parameter type-id='type-id-188' name='out' filepath='Objects/tupleobject.c' line='37' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTuple_New' mangled-name='PyTuple_New' filepath='Objects/tupleobject.c' line='149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTuple_New'>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/tupleobject.c' line='149' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/typeobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyType_Type' type-id='type-id-149' mangled-name='PyType_Type' visibility='default' filepath='./Include/object.h' line='251' column='1' elf-symbol-id='PyType_Type'/>
     <var-decl name='PyBaseObject_Type' type-id='type-id-149' mangled-name='PyBaseObject_Type' visibility='default' filepath='./Include/object.h' line='252' column='1' elf-symbol-id='PyBaseObject_Type'/>
     <var-decl name='PySuper_Type' type-id='type-id-149' mangled-name='PySuper_Type' visibility='default' filepath='./Include/object.h' line='253' column='1' elf-symbol-id='PySuper_Type'/>
-    <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='Objects/typeobject.c' line='6343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='6343' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='Objects/typeobject.c' line='3853' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupId'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3853' column='1'/>
+      <parameter type-id='type-id-219' name='name' filepath='Objects/typeobject.c' line='3853' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='Objects/typeobject.c' line='3845' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_LookupId'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='3845' column='1'/>
-      <parameter type-id='type-id-219' name='name' filepath='Objects/typeobject.c' line='3845' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='Objects/typeobject.c' line='3787' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Lookup'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='3787' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Objects/typeobject.c' line='3787' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyType_Lookup' mangled-name='_PyType_Lookup' filepath='Objects/typeobject.c' line='3795' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Lookup'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3795' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Objects/typeobject.c' line='3795' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <pointer-type-def type-id='type-id-458' size-in-bits='64' id='type-id-505'/>
-    <function-decl name='_PyType_GetModuleByDef' mangled-name='_PyType_GetModuleByDef' filepath='Objects/typeobject.c' line='3685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetModuleByDef'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='3685' column='1'/>
-      <parameter type-id='type-id-505' name='def' filepath='Objects/typeobject.c' line='3685' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='Objects/typeobject.c' line='3667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModuleState'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='3667' column='1'/>
-      <return type-id='type-id-20'/>
+    <function-decl name='_PyType_GetModuleByDef' mangled-name='_PyType_GetModuleByDef' filepath='Objects/typeobject.c' line='3693' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetModuleByDef'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3693' column='1'/>
+      <parameter type-id='type-id-505' name='def' filepath='Objects/typeobject.c' line='3693' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='3643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModule'>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='181' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='Objects/typeobject.c' line='3675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModuleState'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3675' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
-    <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='Objects/typeobject.c' line='3621' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetSlot'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='3621' column='1'/>
-      <parameter type-id='type-id-8' name='slot' filepath='Objects/typeobject.c' line='3621' column='1'/>
-      <return type-id='type-id-20'/>
+    <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='Objects/typeobject.c' line='3629' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetSlot'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3629' column='1'/>
+      <parameter type-id='type-id-9' name='slot' filepath='Objects/typeobject.c' line='3629' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-506' visibility='default' filepath='./Include/object.h' line='222' column='1' id='type-id-507'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/object.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='basicsize' type-id='type-id-8' visibility='default' filepath='./Include/object.h' line='224' column='1'/>
+        <var-decl name='basicsize' type-id='type-id-9' visibility='default' filepath='./Include/object.h' line='224' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='itemsize' type-id='type-id-8' visibility='default' filepath='./Include/object.h' line='225' column='1'/>
+        <var-decl name='itemsize' type-id='type-id-9' visibility='default' filepath='./Include/object.h' line='225' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='flags' type-id='type-id-65' visibility='default' filepath='./Include/object.h' line='226' column='1'/>
+        <var-decl name='flags' type-id='type-id-66' visibility='default' filepath='./Include/object.h' line='226' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='slots' type-id='type-id-508' visibility='default' filepath='./Include/object.h' line='227' column='1'/>
@@ -8776,10 +10703,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-509' visibility='default' filepath='./Include/object.h' line='217' column='1' id='type-id-510'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='slot' type-id='type-id-8' visibility='default' filepath='./Include/object.h' line='218' column='1'/>
+        <var-decl name='slot' type-id='type-id-9' visibility='default' filepath='./Include/object.h' line='218' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='pfunc' type-id='type-id-20' visibility='default' filepath='./Include/object.h' line='219' column='1'/>
+        <var-decl name='pfunc' type-id='type-id-21' visibility='default' filepath='./Include/object.h' line='219' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyType_Slot' type-id='type-id-510' filepath='./Include/object.h' line='220' column='1' id='type-id-509'/>
@@ -8788,895 +10715,1184 @@
     <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-511'/>
     <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='Objects/typeobject.c' line='3615' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpec'>
       <parameter type-id='type-id-511' name='spec' filepath='Objects/typeobject.c' line='3615' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='Objects/typeobject.c' line='3365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromModuleAndSpec'>
-      <parameter type-id='type-id-15' name='module' filepath='Objects/typeobject.c' line='3365' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Objects/typeobject.c' line='3365' column='1'/>
       <parameter type-id='type-id-511' name='spec' filepath='Objects/typeobject.c' line='3365' column='1'/>
-      <parameter type-id='type-id-15' name='bases' filepath='Objects/typeobject.c' line='3365' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='bases' filepath='Objects/typeobject.c' line='3365' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyType_FromSpecWithBases' mangled-name='PyType_FromSpecWithBases' filepath='Objects/typeobject.c' line='3359' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_FromSpecWithBases'>
       <parameter type-id='type-id-511' name='spec' filepath='Objects/typeobject.c' line='3359' column='1'/>
-      <parameter type-id='type-id-15' name='bases' filepath='Objects/typeobject.c' line='3359' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='bases' filepath='Objects/typeobject.c' line='3359' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='Objects/typeobject.c' line='2465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CalculateMetaclass'>
-      <parameter type-id='type-id-31' name='metatype' filepath='Objects/typeobject.c' line='2465' column='1'/>
-      <parameter type-id='type-id-15' name='bases' filepath='Objects/typeobject.c' line='2465' column='1'/>
-      <return type-id='type-id-31'/>
+      <parameter type-id='type-id-32' name='metatype' filepath='Objects/typeobject.c' line='2465' column='1'/>
+      <parameter type-id='type-id-16' name='bases' filepath='Objects/typeobject.c' line='2465' column='1'/>
+      <return type-id='type-id-32'/>
     </function-decl>
     <function-decl name='PyType_GetFlags' mangled-name='PyType_GetFlags' filepath='Objects/typeobject.c' line='2458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetFlags'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='2458' column='1'/>
-      <return type-id='type-id-18'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='2458' column='1'/>
+      <return type-id='type-id-19'/>
     </function-decl>
     <function-decl name='_PyObject_LookupSpecial' mangled-name='_PyObject_LookupSpecial' filepath='Objects/typeobject.c' line='1559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_LookupSpecial'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/typeobject.c' line='1559' column='1'/>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/typeobject.c' line='1559' column='1'/>
       <parameter type-id='type-id-453' name='attrid' filepath='Objects/typeobject.c' line='1559' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='Objects/typeobject.c' line='1521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'>
-      <parameter type-id='type-id-31' name='a' filepath='Objects/typeobject.c' line='1521' column='1'/>
-      <parameter type-id='type-id-31' name='b' filepath='Objects/typeobject.c' line='1521' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='Objects/typeobject.c' line='1175' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericNew'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='1175' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/typeobject.c' line='1175' column='1'/>
-      <parameter type-id='type-id-15' name='kwds' filepath='Objects/typeobject.c' line='1175' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='1175' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/typeobject.c' line='1175' column='1'/>
+      <parameter type-id='type-id-16' name='kwds' filepath='Objects/typeobject.c' line='1175' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyType_GenericAlloc' mangled-name='PyType_GenericAlloc' filepath='Objects/typeobject.c' line='1142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GenericAlloc'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='1142' column='1'/>
-      <parameter type-id='type-id-30' name='nitems' filepath='Objects/typeobject.c' line='1142' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='1142' column='1'/>
+      <parameter type-id='type-id-31' name='nitems' filepath='Objects/typeobject.c' line='1142' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyType_Name' mangled-name='_PyType_Name' filepath='Objects/typeobject.c' line='480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_Name'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='480' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='480' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='PyType_Modified' mangled-name='PyType_Modified' filepath='Objects/typeobject.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Modified'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='311' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
     <function-decl name='PyType_ClearCache' mangled-name='PyType_ClearCache' filepath='Objects/typeobject.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_ClearCache'>
-      <return type-id='type-id-65'/>
+      <return type-id='type-id-66'/>
     </function-decl>
-    <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='Objects/typeobject.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetTextSignatureFromInternalDoc'>
-      <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='196' column='1'/>
-      <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='196' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='Objects/typeobject.c' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CheckConsistency'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='143' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyType_GetDocFromInternalDoc' mangled-name='_PyType_GetDocFromInternalDoc' filepath='Objects/typeobject.c' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetDocFromInternalDoc'>
       <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='184' column='1'/>
       <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='184' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyType_CheckConsistency' mangled-name='_PyType_CheckConsistency' filepath='Objects/typeobject.c' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_CheckConsistency'>
-      <parameter type-id='type-id-31' name='type' filepath='Objects/typeobject.c' line='143' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyType_GetTextSignatureFromInternalDoc' mangled-name='_PyType_GetTextSignatureFromInternalDoc' filepath='Objects/typeobject.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyType_GetTextSignatureFromInternalDoc'>
+      <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='196' column='1'/>
+      <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='196' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyType_Modified' mangled-name='PyType_Modified' filepath='Objects/typeobject.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Modified'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='311' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_IsSubtype' mangled-name='PyType_IsSubtype' filepath='Objects/typeobject.c' line='1521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_IsSubtype'>
+      <parameter type-id='type-id-32' name='a' filepath='Objects/typeobject.c' line='1521' column='1'/>
+      <parameter type-id='type-id-32' name='b' filepath='Objects/typeobject.c' line='1521' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='3651' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_GetModule'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='3651' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyType_Ready' mangled-name='PyType_Ready' filepath='Objects/typeobject.c' line='6351' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyType_Ready'>
+      <parameter type-id='type-id-32' name='type' filepath='Objects/typeobject.c' line='6351' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetFrame' mangled-name='PyThreadState_GetFrame' filepath='./Include/pystate.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_GetCode' mangled-name='PyFrame_GetCode' filepath='./Include/pyframe.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyArg_ParseTuple' mangled-name='PyArg_ParseTuple' filepath='./Include/modsupport.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_Call_Prepend' mangled-name='_PyObject_Call_Prepend' filepath='./Include/internal/pycore_call.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_Call' mangled-name='_PyObject_Call' filepath='./Include/internal/pycore_call.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_HashNotImplemented' mangled-name='PyObject_HashNotImplemented' filepath='./Include/object.h' line='284' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDictKeys_DecRef' mangled-name='_PyDictKeys_DecRef' filepath='Objects/typeobject.c' line='4024' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GenericSetAttrWithDict' mangled-name='_PyObject_GenericSetAttrWithDict' filepath='./Include/cpython/object.h' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_DelItemString' mangled-name='PyDict_DelItemString' filepath='./Include/dictobject.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_NewKeysForClass' mangled-name='_PyDict_NewKeysForClass' filepath='./Include/cpython/dictobject.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='./Include/unicodeobject.h' line='1040' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_Mangle' mangled-name='_Py_Mangle' filepath='./Include/internal/pycore_compile.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='./Include/ceval.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyStaticMethod_New' mangled-name='PyStaticMethod_New' filepath='./Include/funcobject.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GenericGetDict' mangled-name='PyObject_GenericGetDict' filepath='./Include/dictobject.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWeakref_ClearRef' mangled-name='_PyWeakref_ClearRef' filepath='./Include/weakrefobject.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_Malloc' mangled-name='_PyObject_GC_Malloc' filepath='./Include/cpython/objimpl.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_IsFreed' mangled-name='_PyObject_IsFreed' filepath='./Include/cpython/object.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='./Include/import.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='./Include/import.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_LookupAttr' mangled-name='_PyObject_LookupAttr' filepath='./Include/cpython/object.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_KeysSize' mangled-name='_PyDict_KeysSize' filepath='./Include/cpython/dictobject.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_RealIsInstance' mangled-name='_PyObject_RealIsInstance' filepath='./Include/cpython/abstract.h' line='355' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyClassMethod_New' mangled-name='PyClassMethod_New' filepath='./Include/funcobject.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='./Include/weakrefobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewWrapper' mangled-name='PyDescr_NewWrapper' filepath='./Include/descrobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewClassMethod' mangled-name='PyDescr_NewClassMethod' filepath='./Include/descrobject.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_SetDefault' mangled-name='PyDict_SetDefault' filepath='./Include/cpython/dictobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewMethod' mangled-name='PyDescr_NewMethod' filepath='./Include/descrobject.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewMember' mangled-name='PyDescr_NewMember' filepath='./Include/descrobject.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDescr_NewGetSet' mangled-name='PyDescr_NewGetSet' filepath='./Include/descrobject.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/unicodeobject.c' comp-dir-path='/src' language='LANG_C99'>
 
     <array-type-def dimensions='1' type-id='type-id-439' size-in-bits='infinite' id='type-id-512'>
-      <subrange length='infinite' id='type-id-6'/>
+      <subrange length='infinite' id='type-id-7'/>
 
     </array-type-def>
     <qualified-type-def type-id='type-id-512' const='yes' id='type-id-513'/>
-    <var-decl name='_Py_ascii_whitespace' type-id='type-id-513' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='1031' column='1' elf-symbol-id='_Py_ascii_whitespace'/>
+    <var-decl name='_Py_ascii_whitespace' type-id='type-id-513' mangled-name='_Py_ascii_whitespace' visibility='default' filepath='./Include/cpython/unicodeobject.h' line='1039' column='1' elf-symbol-id='_Py_ascii_whitespace'/>
     <var-decl name='PyUnicode_Type' type-id='type-id-149' mangled-name='PyUnicode_Type' visibility='default' filepath='./Include/unicodeobject.h' line='111' column='1' elf-symbol-id='PyUnicode_Type'/>
     <var-decl name='PyUnicodeIter_Type' type-id='type-id-149' mangled-name='PyUnicodeIter_Type' visibility='default' filepath='./Include/unicodeobject.h' line='112' column='1' elf-symbol-id='PyUnicodeIter_Type'/>
-    <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='16310' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='Objects/unicodeobject.c' line='15841' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternFromString'>
-      <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15841' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'>
-      <parameter type-id='type-id-86' name='p' filepath='Objects/unicodeobject.c' line='15822' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'>
-      <parameter type-id='type-id-86' name='p' filepath='Objects/unicodeobject.c' line='15765' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='15446' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'>
-      <parameter type-id='type-id-15' name='format' filepath='Objects/unicodeobject.c' line='15446' column='1'/>
-      <parameter type-id='type-id-15' name='args' filepath='Objects/unicodeobject.c' line='15446' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='Objects/unicodeobject.c' line='14684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatLong'>
-      <parameter type-id='type-id-15' name='val' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
-      <parameter type-id='type-id-8' name='alt' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
-      <parameter type-id='type-id-8' name='prec' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
-      <parameter type-id='type-id-8' name='type' filepath='Objects/unicodeobject.c' line='14684' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='Objects/unicodeobject.c' line='14321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Dealloc'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14321' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='Objects/unicodeobject.c' line='14289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Finish'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14289' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='14275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14275' column='1'/>
-      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='14276' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/unicodeobject.c' line='14276' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='Objects/unicodeobject.c' line='14215' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14215' column='1'/>
-      <parameter type-id='type-id-3' name='ascii' filepath='Objects/unicodeobject.c' line='14216' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/unicodeobject.c' line='14216' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='14180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14180' column='1'/>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='14180' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='14181' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='14181' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='Objects/unicodeobject.c' line='14149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteStr'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14149' column='1'/>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='14149' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='Objects/unicodeobject.c' line='14143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteChar'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14143' column='1'/>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodeobject.c' line='14143' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='14111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14111' column='1'/>
-      <parameter type-id='type-id-449' name='kind' filepath='Objects/unicodeobject.c' line='14112' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='Objects/unicodeobject.c' line='14034' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareInternal'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14034' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='14035' column='1'/>
-      <parameter type-id='type-id-450' name='maxchar' filepath='Objects/unicodeobject.c' line='14035' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='Objects/unicodeobject.c' line='14010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Init'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14010' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='13585' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <parameter type-id='type-id-15' name='sep' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <parameter type-id='type-id-30' name='maxsplit' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='13491' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'>
-      <parameter type-id='type-id-15' name='str_obj' filepath='Objects/unicodeobject.c' line='13491' column='1'/>
-      <parameter type-id='type-id-15' name='sep_obj' filepath='Objects/unicodeobject.c' line='13491' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='13439' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'>
-      <parameter type-id='type-id-15' name='str_obj' filepath='Objects/unicodeobject.c' line='13491' column='1'/>
-      <parameter type-id='type-id-15' name='sep_obj' filepath='Objects/unicodeobject.c' line='13491' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='13401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'>
-      <parameter type-id='type-id-15' name='s' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <parameter type-id='type-id-15' name='sep' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <parameter type-id='type-id-30' name='maxsplit' filepath='Objects/unicodeobject.c' line='13585' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='13049' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='13049' column='1'/>
-      <parameter type-id='type-id-15' name='substr' filepath='Objects/unicodeobject.c' line='13050' column='1'/>
-      <parameter type-id='type-id-15' name='replstr' filepath='Objects/unicodeobject.c' line='13051' column='1'/>
-      <parameter type-id='type-id-30' name='maxcount' filepath='Objects/unicodeobject.c' line='13052' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='Objects/unicodeobject.c' line='12807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Substring'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/unicodeobject.c' line='12807' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='12807' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='12807' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='Objects/unicodeobject.c' line='12757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_XStrip'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/unicodeobject.c' line='12757' column='1'/>
-      <parameter type-id='type-id-8' name='striptype' filepath='Objects/unicodeobject.c' line='12757' column='1'/>
-      <parameter type-id='type-id-15' name='sepobj' filepath='Objects/unicodeobject.c' line='12757' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' line='12571' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/unicodeobject.c' line='12571' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='Objects/unicodeobject.c' line='12534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ScanIdentifier'>
-      <parameter type-id='type-id-15' name='self' filepath='Objects/unicodeobject.c' line='12534' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11806' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'>
+    <function-decl name='PyInit__string' mangled-name='PyInit__string' filepath='Objects/unicodeobject.c' line='16335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__string'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_InternFromString' mangled-name='PyUnicode_InternFromString' filepath='Objects/unicodeobject.c' line='15866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternFromString'>
+      <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15866' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_InternImmortal' mangled-name='PyUnicode_InternImmortal' filepath='Objects/unicodeobject.c' line='15847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternImmortal'>
+      <parameter type-id='type-id-86' name='p' filepath='Objects/unicodeobject.c' line='15847' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_InternInPlace' mangled-name='PyUnicode_InternInPlace' filepath='Objects/unicodeobject.c' line='15790' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_InternInPlace'>
+      <parameter type-id='type-id-86' name='p' filepath='Objects/unicodeobject.c' line='15790' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='Objects/unicodeobject.c' line='15471' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Format'>
+      <parameter type-id='type-id-16' name='format' filepath='Objects/unicodeobject.c' line='15471' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Objects/unicodeobject.c' line='15471' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FormatLong' mangled-name='_PyUnicode_FormatLong' filepath='Objects/unicodeobject.c' line='14709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatLong'>
+      <parameter type-id='type-id-16' name='val' filepath='Objects/unicodeobject.c' line='14709' column='1'/>
+      <parameter type-id='type-id-9' name='alt' filepath='Objects/unicodeobject.c' line='14709' column='1'/>
+      <parameter type-id='type-id-9' name='prec' filepath='Objects/unicodeobject.c' line='14709' column='1'/>
+      <parameter type-id='type-id-9' name='type' filepath='Objects/unicodeobject.c' line='14709' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Dealloc' mangled-name='_PyUnicodeWriter_Dealloc' filepath='Objects/unicodeobject.c' line='14346' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Dealloc'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14346' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteLatin1String' mangled-name='_PyUnicodeWriter_WriteLatin1String' filepath='Objects/unicodeobject.c' line='14300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteLatin1String'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14300' column='1'/>
+      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='14301' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/unicodeobject.c' line='14301' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='Objects/unicodeobject.c' line='14240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteASCIIString'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14240' column='1'/>
+      <parameter type-id='type-id-3' name='ascii' filepath='Objects/unicodeobject.c' line='14241' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/unicodeobject.c' line='14241' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteStr' mangled-name='_PyUnicodeWriter_WriteStr' filepath='Objects/unicodeobject.c' line='14174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteStr'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14174' column='1'/>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='14174' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteChar' mangled-name='_PyUnicodeWriter_WriteChar' filepath='Objects/unicodeobject.c' line='14168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteChar'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14168' column='1'/>
+      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodeobject.c' line='14168' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_PrepareKindInternal' mangled-name='_PyUnicodeWriter_PrepareKindInternal' filepath='Objects/unicodeobject.c' line='14136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareKindInternal'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14136' column='1'/>
+      <parameter type-id='type-id-449' name='kind' filepath='Objects/unicodeobject.c' line='14137' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_PrepareInternal' mangled-name='_PyUnicodeWriter_PrepareInternal' filepath='Objects/unicodeobject.c' line='14059' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_PrepareInternal'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14059' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='14060' column='1'/>
+      <parameter type-id='type-id-450' name='maxchar' filepath='Objects/unicodeobject.c' line='14060' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Init' mangled-name='_PyUnicodeWriter_Init' filepath='Objects/unicodeobject.c' line='14035' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Init'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14035' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_RSplit' mangled-name='PyUnicode_RSplit' filepath='Objects/unicodeobject.c' line='13610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RSplit'>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <parameter type-id='type-id-16' name='sep' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <parameter type-id='type-id-31' name='maxsplit' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Split' mangled-name='PyUnicode_Split' filepath='Objects/unicodeobject.c' line='13426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Split'>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <parameter type-id='type-id-16' name='sep' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <parameter type-id='type-id-31' name='maxsplit' filepath='Objects/unicodeobject.c' line='13610' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='Objects/unicodeobject.c' line='13074' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Replace'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='13074' column='1'/>
+      <parameter type-id='type-id-16' name='substr' filepath='Objects/unicodeobject.c' line='13075' column='1'/>
+      <parameter type-id='type-id-16' name='replstr' filepath='Objects/unicodeobject.c' line='13076' column='1'/>
+      <parameter type-id='type-id-31' name='maxcount' filepath='Objects/unicodeobject.c' line='13077' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Substring' mangled-name='PyUnicode_Substring' filepath='Objects/unicodeobject.c' line='12832' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Substring'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='12832' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_XStrip' mangled-name='_PyUnicode_XStrip' filepath='Objects/unicodeobject.c' line='12782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_XStrip'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/unicodeobject.c' line='12782' column='1'/>
+      <parameter type-id='type-id-9' name='striptype' filepath='Objects/unicodeobject.c' line='12782' column='1'/>
+      <parameter type-id='type-id-16' name='sepobj' filepath='Objects/unicodeobject.c' line='12782' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' line='12596' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_IsIdentifier'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/unicodeobject.c' line='12596' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ScanIdentifier' mangled-name='_PyUnicode_ScanIdentifier' filepath='Objects/unicodeobject.c' line='12559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ScanIdentifier'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/unicodeobject.c' line='12559' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AppendAndDel' mangled-name='PyUnicode_AppendAndDel' filepath='Objects/unicodeobject.c' line='11831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AppendAndDel'>
       <parameter type-id='type-id-86' name='pv' filepath='Objects/bytesobject.c' line='2988' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/bytesobject.c' line='2988' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11723' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'>
-      <parameter type-id='type-id-86' name='p_left' filepath='Objects/unicodeobject.c' line='11723' column='1'/>
-      <parameter type-id='type-id-15' name='right' filepath='Objects/unicodeobject.c' line='11723' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'>
-      <parameter type-id='type-id-15' name='left' filepath='Objects/unicodeobject.c' line='11672' column='1'/>
-      <parameter type-id='type-id-15' name='right' filepath='Objects/unicodeobject.c' line='11672' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11609' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='11609' column='1'/>
-      <parameter type-id='type-id-15' name='substr' filepath='Objects/unicodeobject.c' line='11609' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='Objects/unicodeobject.c' line='11603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EQ'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='11564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'>
-      <parameter type-id='type-id-15' name='left' filepath='Objects/unicodeobject.c' line='11564' column='1'/>
-      <parameter type-id='type-id-15' name='right' filepath='Objects/unicodeobject.c' line='11564' column='1'/>
-      <parameter type-id='type-id-8' name='op' filepath='Objects/unicodeobject.c' line='11564' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='Objects/unicodeobject.c' line='11520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIId'>
-      <parameter type-id='type-id-15' name='left' filepath='Objects/unicodeobject.c' line='11520' column='1'/>
-      <parameter type-id='type-id-453' name='right' filepath='Objects/unicodeobject.c' line='11520' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='Objects/unicodeobject.c' line='11497' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2385' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='Objects/unicodeobject.c' line='11418' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CompareWithASCIIString'>
-      <parameter type-id='type-id-15' name='uni' filepath='Objects/unicodeobject.c' line='11418' column='1'/>
-      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11418' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='Objects/unicodeobject.c' line='11397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Compare'>
-      <parameter type-id='type-id-15' name='derived' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <parameter type-id='type-id-15' name='cls' filepath='Objects/abstract.c' line='2786' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='10586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'>
-      <parameter type-id='type-id-15' name='string' filepath='Objects/unicodeobject.c' line='10586' column='1'/>
-      <parameter type-id='type-id-8' name='keepends' filepath='Objects/unicodeobject.c' line='10586' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='10510' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='10510' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='10510' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='10510' column='1'/>
-      <parameter type-id='type-id-450' name='fill_char' filepath='Objects/unicodeobject.c' line='10511' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='Objects/unicodeobject.c' line='10496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastFill'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='10496' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='10496' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='10496' column='1'/>
-      <parameter type-id='type-id-450' name='fill_char' filepath='Objects/unicodeobject.c' line='10497' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='10324' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'>
-      <parameter type-id='type-id-15' name='separator' filepath='Objects/unicodeobject.c' line='10324' column='1'/>
-      <parameter type-id='type-id-156' name='items' filepath='Objects/unicodeobject.c' line='10324' column='1'/>
-      <parameter type-id='type-id-30' name='seqlen' filepath='Objects/unicodeobject.c' line='10324' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='Objects/unicodeobject.c' line='10300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Join'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='10053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='10053' column='1'/>
-      <parameter type-id='type-id-15' name='substr' filepath='Objects/unicodeobject.c' line='10054' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='10055' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='10056' column='1'/>
-      <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='10057' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9964' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='9964' column='1'/>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodeobject.c' line='9964' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='9965' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='9965' column='1'/>
-      <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='9966' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='10053' column='1'/>
-      <parameter type-id='type-id-15' name='substr' filepath='Objects/unicodeobject.c' line='10054' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='10055' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='10056' column='1'/>
-      <parameter type-id='type-id-8' name='direction' filepath='Objects/unicodeobject.c' line='10057' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9877' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='9877' column='1'/>
-      <parameter type-id='type-id-15' name='substr' filepath='Objects/unicodeobject.c' line='9878' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='9879' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='9880' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='w' filepath='Objects/bytesobject.c' line='2988' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='Objects/unicodeobject.c' line='11748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Append'>
+      <parameter type-id='type-id-86' name='p_left' filepath='Objects/unicodeobject.c' line='11748' column='1'/>
+      <parameter type-id='type-id-16' name='right' filepath='Objects/unicodeobject.c' line='11748' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='Objects/unicodeobject.c' line='11697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Concat'>
+      <parameter type-id='type-id-16' name='left' filepath='Objects/unicodeobject.c' line='11697' column='1'/>
+      <parameter type-id='type-id-16' name='right' filepath='Objects/unicodeobject.c' line='11697' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EQ' mangled-name='_PyUnicode_EQ' filepath='Objects/unicodeobject.c' line='11628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EQ'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EqualToASCIIId' mangled-name='_PyUnicode_EqualToASCIIId' filepath='Objects/unicodeobject.c' line='11545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIId'>
+      <parameter type-id='type-id-16' name='left' filepath='Objects/unicodeobject.c' line='11545' column='1'/>
+      <parameter type-id='type-id-453' name='right' filepath='Objects/unicodeobject.c' line='11545' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_CompareWithASCIIString' mangled-name='PyUnicode_CompareWithASCIIString' filepath='Objects/unicodeobject.c' line='11443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CompareWithASCIIString'>
+      <parameter type-id='type-id-16' name='uni' filepath='Objects/unicodeobject.c' line='11443' column='1'/>
+      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11443' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Compare' mangled-name='PyUnicode_Compare' filepath='Objects/unicodeobject.c' line='11422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Compare'>
+      <parameter type-id='type-id-16' name='left' filepath='Objects/unicodeobject.c' line='11422' column='1'/>
+      <parameter type-id='type-id-16' name='right' filepath='Objects/unicodeobject.c' line='11422' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='Objects/unicodeobject.c' line='10611' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Splitlines'>
+      <parameter type-id='type-id-16' name='string' filepath='Objects/unicodeobject.c' line='10611' column='1'/>
+      <parameter type-id='type-id-9' name='keepends' filepath='Objects/unicodeobject.c' line='10611' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='10535' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Fill'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='10535' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='10535' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='10535' column='1'/>
+      <parameter type-id='type-id-450' name='fill_char' filepath='Objects/unicodeobject.c' line='10536' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='Objects/unicodeobject.c' line='10521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastFill'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='10521' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='10521' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='10521' column='1'/>
+      <parameter type-id='type-id-450' name='fill_char' filepath='Objects/unicodeobject.c' line='10522' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='Objects/unicodeobject.c' line='10349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_JoinArray'>
+      <parameter type-id='type-id-16' name='separator' filepath='Objects/unicodeobject.c' line='10349' column='1'/>
+      <parameter type-id='type-id-156' name='items' filepath='Objects/unicodeobject.c' line='10349' column='1'/>
+      <parameter type-id='type-id-31' name='seqlen' filepath='Objects/unicodeobject.c' line='10349' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Join' mangled-name='PyUnicode_Join' filepath='Objects/unicodeobject.c' line='10325' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Join'>
+      <parameter type-id='type-id-16' name='separator' filepath='Objects/unicodeobject.c' line='10325' column='1'/>
+      <parameter type-id='type-id-16' name='seq' filepath='Objects/unicodeobject.c' line='10325' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='Objects/unicodeobject.c' line='10078' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Tailmatch'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='10078' column='1'/>
+      <parameter type-id='type-id-16' name='substr' filepath='Objects/unicodeobject.c' line='10079' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='10080' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='10081' column='1'/>
+      <parameter type-id='type-id-9' name='direction' filepath='Objects/unicodeobject.c' line='10082' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='Objects/unicodeobject.c' line='9989' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FindChar'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='9989' column='1'/>
+      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodeobject.c' line='9989' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='9990' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='9990' column='1'/>
+      <parameter type-id='type-id-9' name='direction' filepath='Objects/unicodeobject.c' line='9991' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='Objects/unicodeobject.c' line='9976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Find'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='10078' column='1'/>
+      <parameter type-id='type-id-16' name='substr' filepath='Objects/unicodeobject.c' line='10079' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='10080' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='10081' column='1'/>
+      <parameter type-id='type-id-9' name='direction' filepath='Objects/unicodeobject.c' line='10082' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Count' mangled-name='PyUnicode_Count' filepath='Objects/unicodeobject.c' line='9902' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Count'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='9902' column='1'/>
+      <parameter type-id='type-id-16' name='substr' filepath='Objects/unicodeobject.c' line='9903' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='9904' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='9905' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <pointer-type-def type-id='type-id-450' size-in-bits='64' id='type-id-514'/>
-    <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='Objects/unicodeobject.c' line='9757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InsertThousandsGrouping'>
-      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='9758' column='1'/>
-      <parameter type-id='type-id-30' name='n_buffer' filepath='Objects/unicodeobject.c' line='9759' column='1'/>
-      <parameter type-id='type-id-15' name='digits' filepath='Objects/unicodeobject.c' line='9760' column='1'/>
-      <parameter type-id='type-id-30' name='d_pos' filepath='Objects/unicodeobject.c' line='9761' column='1'/>
-      <parameter type-id='type-id-30' name='n_digits' filepath='Objects/unicodeobject.c' line='9762' column='1'/>
-      <parameter type-id='type-id-30' name='min_width' filepath='Objects/unicodeobject.c' line='9763' column='1'/>
-      <parameter type-id='type-id-3' name='grouping' filepath='Objects/unicodeobject.c' line='9764' column='1'/>
-      <parameter type-id='type-id-15' name='thousands_sep' filepath='Objects/unicodeobject.c' line='9765' column='1'/>
-      <parameter type-id='type-id-514' name='maxchar' filepath='Objects/unicodeobject.c' line='9766' column='1'/>
-      <return type-id='type-id-30'/>
+    <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='Objects/unicodeobject.c' line='9782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_InsertThousandsGrouping'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='9783' column='1'/>
+      <parameter type-id='type-id-31' name='n_buffer' filepath='Objects/unicodeobject.c' line='9784' column='1'/>
+      <parameter type-id='type-id-16' name='digits' filepath='Objects/unicodeobject.c' line='9785' column='1'/>
+      <parameter type-id='type-id-31' name='d_pos' filepath='Objects/unicodeobject.c' line='9786' column='1'/>
+      <parameter type-id='type-id-31' name='n_digits' filepath='Objects/unicodeobject.c' line='9787' column='1'/>
+      <parameter type-id='type-id-31' name='min_width' filepath='Objects/unicodeobject.c' line='9788' column='1'/>
+      <parameter type-id='type-id-3' name='grouping' filepath='Objects/unicodeobject.c' line='9789' column='1'/>
+      <parameter type-id='type-id-16' name='thousands_sep' filepath='Objects/unicodeobject.c' line='9790' column='1'/>
+      <parameter type-id='type-id-514' name='maxchar' filepath='Objects/unicodeobject.c' line='9791' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <pointer-type-def type-id='type-id-436' size-in-bits='64' id='type-id-515'/>
-    <function-decl name='PyUnicode_EncodeDecimal' mangled-name='PyUnicode_EncodeDecimal' filepath='Objects/unicodeobject.c' line='9568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeDecimal'>
-      <parameter type-id='type-id-515' name='s' filepath='Objects/unicodeobject.c' line='9568' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='9569' column='1'/>
-      <parameter type-id='type-id-72' name='output' filepath='Objects/unicodeobject.c' line='9570' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9571' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyUnicode_TransformDecimalToASCII' mangled-name='PyUnicode_TransformDecimalToASCII' filepath='Objects/unicodeobject.c' line='9527' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TransformDecimalToASCII'>
-      <parameter type-id='type-id-515' name='s' filepath='Objects/unicodeobject.c' line='9527' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='9528' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='Objects/unicodeobject.c' line='9478' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_TransformDecimalAndSpaceToASCII'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='9478' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='9468' column='1'/>
-      <parameter type-id='type-id-15' name='mapping' filepath='Objects/unicodeobject.c' line='9469' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9470' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_TranslateCharmap' mangled-name='PyUnicode_TranslateCharmap' filepath='Objects/unicodeobject.c' line='9453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TranslateCharmap'>
-      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='9453' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='9454' column='1'/>
-      <parameter type-id='type-id-15' name='mapping' filepath='Objects/unicodeobject.c' line='9455' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9456' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='9028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_EncodeCharmap' mangled-name='PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='9013' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeCharmap'>
-      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='9453' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='9454' column='1'/>
-      <parameter type-id='type-id-15' name='mapping' filepath='Objects/unicodeobject.c' line='9455' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9456' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8941' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeCharmap'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='8941' column='1'/>
-      <parameter type-id='type-id-15' name='mapping' filepath='Objects/unicodeobject.c' line='8942' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8943' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'>
-      <parameter type-id='type-id-15' name='string' filepath='Objects/unicodeobject.c' line='8528' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='8427' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='8428' column='1'/>
-      <parameter type-id='type-id-15' name='mapping' filepath='Objects/unicodeobject.c' line='8429' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8430' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7462' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsASCIIString'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_EncodeASCII' mangled-name='PyUnicode_EncodeASCII' filepath='Objects/unicodeobject.c' line='7431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeASCII'>
-      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7431' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7432' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7433' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='Objects/unicodeobject.c' line='7331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeASCII'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7331' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7332' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7333' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7304' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsLatin1String'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_EncodeLatin1' mangled-name='PyUnicode_EncodeLatin1' filepath='Objects/unicodeobject.c' line='7290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLatin1'>
-      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7431' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7432' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7433' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='Objects/unicodeobject.c' line='7007' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLatin1'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7007' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7008' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7009' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_EncodeRawUnicodeEscape' mangled-name='PyUnicode_EncodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6992' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeRawUnicodeEscape'>
-      <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='6992' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6993' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='6913' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6794' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6795' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6796' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_EncodeUnicodeEscape' mangled-name='PyUnicode_EncodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUnicodeEscape'>
-      <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='6992' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6993' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6659' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='6913' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6636' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6637' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6638' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_DecodeUnicodeEscape' mangled-name='_PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscape'>
+    <function-decl name='PyUnicode_EncodeDecimal' mangled-name='PyUnicode_EncodeDecimal' filepath='Objects/unicodeobject.c' line='9593' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeDecimal'>
+      <parameter type-id='type-id-515' name='s' filepath='Objects/unicodeobject.c' line='9593' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='9594' column='1'/>
+      <parameter type-id='type-id-72' name='output' filepath='Objects/unicodeobject.c' line='9595' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9596' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_TransformDecimalToASCII' mangled-name='PyUnicode_TransformDecimalToASCII' filepath='Objects/unicodeobject.c' line='9552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TransformDecimalToASCII'>
+      <parameter type-id='type-id-515' name='s' filepath='Objects/unicodeobject.c' line='9552' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='9553' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_TransformDecimalAndSpaceToASCII' mangled-name='_PyUnicode_TransformDecimalAndSpaceToASCII' filepath='Objects/unicodeobject.c' line='9503' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_TransformDecimalAndSpaceToASCII'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='9503' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Translate' mangled-name='PyUnicode_Translate' filepath='Objects/unicodeobject.c' line='9493' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Translate'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='9493' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='9494' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9495' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_TranslateCharmap' mangled-name='PyUnicode_TranslateCharmap' filepath='Objects/unicodeobject.c' line='9478' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_TranslateCharmap'>
+      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='9478' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='9479' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='9480' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9481' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsCharmapString' mangled-name='PyUnicode_AsCharmapString' filepath='Objects/unicodeobject.c' line='9053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsCharmapString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='9053' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='9054' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_EncodeCharmap' mangled-name='PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='9038' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeCharmap'>
+      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='9478' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='9479' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='9480' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='9481' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='Objects/unicodeobject.c' line='8966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeCharmap'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='8966' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='8967' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8968' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='Objects/unicodeobject.c' line='8553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_BuildEncodingMap'>
+      <parameter type-id='type-id-16' name='string' filepath='Objects/unicodeobject.c' line='8553' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c' line='8452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeCharmap'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='8452' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='8453' column='1'/>
+      <parameter type-id='type-id-16' name='mapping' filepath='Objects/unicodeobject.c' line='8454' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='8455' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsASCIIString' mangled-name='PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7487' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsASCIIString'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_EncodeASCII' mangled-name='PyUnicode_EncodeASCII' filepath='Objects/unicodeobject.c' line='7456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeASCII'>
+      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7456' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7457' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7458' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeASCII' mangled-name='PyUnicode_DecodeASCII' filepath='Objects/unicodeobject.c' line='7356' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeASCII'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7356' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7357' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7358' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsLatin1String' mangled-name='PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsLatin1String'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_EncodeLatin1' mangled-name='PyUnicode_EncodeLatin1' filepath='Objects/unicodeobject.c' line='7315' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLatin1'>
+      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7456' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7457' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7458' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeLatin1' mangled-name='PyUnicode_DecodeLatin1' filepath='Objects/unicodeobject.c' line='7032' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLatin1'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7032' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7033' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7034' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_EncodeRawUnicodeEscape' mangled-name='PyUnicode_EncodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='7017' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeRawUnicodeEscape'>
+      <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='7017' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7018' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6938' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsRawUnicodeEscapeString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='6938' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='Objects/unicodeobject.c' line='6819' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeRawUnicodeEscape'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6819' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6820' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6821' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_EncodeUnicodeEscape' mangled-name='PyUnicode_EncodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUnicodeEscape'>
+      <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='7017' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7018' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='Objects/unicodeobject.c' line='6684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeEscapeString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='6938' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUnicodeEscape' mangled-name='PyUnicode_DecodeUnicodeEscape' filepath='Objects/unicodeobject.c' line='6674' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUnicodeEscape'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7032' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7033' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7034' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_DecodeUnicodeEscapeStateful' mangled-name='_PyUnicode_DecodeUnicodeEscapeStateful' filepath='Objects/unicodeobject.c' line='6651' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscapeStateful'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6651' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6652' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6653' column='1'/>
+      <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='6654' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_DecodeUnicodeEscapeInternal' mangled-name='_PyUnicode_DecodeUnicodeEscapeInternal' filepath='Objects/unicodeobject.c' line='6411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_DecodeUnicodeEscapeInternal'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6411' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6412' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6412' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6413' column='1'/>
-      <parameter type-id='type-id-198' name='first_invalid_escape' filepath='Objects/unicodeobject.c' line='6414' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='6414' column='1'/>
+      <parameter type-id='type-id-196' name='first_invalid_escape' filepath='Objects/unicodeobject.c' line='6415' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUTF16String' mangled-name='PyUnicode_AsUTF16String' filepath='Objects/unicodeobject.c' line='6401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF16String'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeUTF16' mangled-name='PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6386' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF16'>
       <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='6386' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6387' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6387' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6388' column='1'/>
-      <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6389' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='byteorder' filepath='Objects/unicodeobject.c' line='6389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='Objects/unicodeobject.c' line='6220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF16'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='6220' column='1'/>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='6220' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6221' column='1'/>
-      <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6222' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='byteorder' filepath='Objects/unicodeobject.c' line='6222' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unicodeobject.c' line='6065' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16Stateful'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6065' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6066' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6066' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6067' column='1'/>
       <parameter type-id='type-id-452' name='byteorder' filepath='Objects/unicodeobject.c' line='6068' column='1'/>
       <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='6069' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF16' mangled-name='PyUnicode_DecodeUTF16' filepath='Objects/unicodeobject.c' line='6056' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF16'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6056' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6057' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6057' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6058' column='1'/>
       <parameter type-id='type-id-452' name='byteorder' filepath='Objects/unicodeobject.c' line='6059' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUTF32String' mangled-name='PyUnicode_AsUTF32String' filepath='Objects/unicodeobject.c' line='6048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF32String'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeUTF32' mangled-name='PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='6033' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF32'>
       <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='6386' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6387' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6387' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6388' column='1'/>
-      <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='6389' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='byteorder' filepath='Objects/unicodeobject.c' line='6389' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' line='5886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF32'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='5886' column='1'/>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='5886' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5887' column='1'/>
-      <parameter type-id='type-id-8' name='byteorder' filepath='Objects/unicodeobject.c' line='5888' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='byteorder' filepath='Objects/unicodeobject.c' line='5888' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='Objects/unicodeobject.c' line='5741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32Stateful'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5741' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='5742' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='5742' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5743' column='1'/>
       <parameter type-id='type-id-452' name='byteorder' filepath='Objects/unicodeobject.c' line='5744' column='1'/>
       <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='5745' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF32' mangled-name='PyUnicode_DecodeUTF32' filepath='Objects/unicodeobject.c' line='5732' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF32'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='6056' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='6057' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='6057' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='6058' column='1'/>
       <parameter type-id='type-id-452' name='byteorder' filepath='Objects/unicodeobject.c' line='6059' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUTF8String' mangled-name='PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5724' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8String'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeUTF8' mangled-name='PyUnicode_EncodeUTF8' filepath='Objects/unicodeobject.c' line='5709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF8'>
-      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7431' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7432' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7433' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-438' name='p' filepath='Objects/unicodeobject.c' line='7456' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7457' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7458' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_AsUTF8String' mangled-name='_PyUnicode_AsUTF8String' filepath='Objects/unicodeobject.c' line='5702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUTF8String'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='5702' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5702' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF8Stateful' mangled-name='PyUnicode_DecodeUTF8Stateful' filepath='Objects/unicodeobject.c' line='5311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8Stateful'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='5311' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='5312' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='5312' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5313' column='1'/>
       <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='5314' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF8' mangled-name='PyUnicode_DecodeUTF8' filepath='Objects/unicodeobject.c' line='5076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF8'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7007' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7008' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7009' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7032' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7033' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7034' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeUTF7' mangled-name='PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='5051' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeUTF7'>
       <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='5051' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='5052' column='1'/>
-      <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='5053' column='1'/>
-      <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='5054' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='5052' column='1'/>
+      <parameter type-id='type-id-9' name='base64SetO' filepath='Objects/unicodeobject.c' line='5053' column='1'/>
+      <parameter type-id='type-id-9' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='5054' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='5055' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='Objects/unicodeobject.c' line='4950' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EncodeUTF7'>
-      <parameter type-id='type-id-15' name='str' filepath='Objects/unicodeobject.c' line='4950' column='1'/>
-      <parameter type-id='type-id-8' name='base64SetO' filepath='Objects/unicodeobject.c' line='4951' column='1'/>
-      <parameter type-id='type-id-8' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4952' column='1'/>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='4950' column='1'/>
+      <parameter type-id='type-id-9' name='base64SetO' filepath='Objects/unicodeobject.c' line='4951' column='1'/>
+      <parameter type-id='type-id-9' name='base64WhiteSpace' filepath='Objects/unicodeobject.c' line='4952' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4953' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='Objects/unicodeobject.c' line='4752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7Stateful'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4752' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='4753' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='4753' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4754' column='1'/>
       <parameter type-id='type-id-125' name='consumed' filepath='Objects/unicodeobject.c' line='4755' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeUTF7' mangled-name='PyUnicode_DecodeUTF7' filepath='Objects/unicodeobject.c' line='4737' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeUTF7'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7007' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='7008' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7009' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='7032' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='7033' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7034' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_GetDefaultEncoding' mangled-name='PyUnicode_GetDefaultEncoding' filepath='Objects/unicodeobject.c' line='4388' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetDefaultEncoding'>
       <return type-id='type-id-3'/>
     </function-decl>
     <function-decl name='PyUnicode_WriteChar' mangled-name='PyUnicode_WriteChar' filepath='Objects/unicodeobject.c' line='4365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_WriteChar'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4365' column='1'/>
-      <parameter type-id='type-id-30' name='index' filepath='Objects/unicodeobject.c' line='4365' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4365' column='1'/>
+      <parameter type-id='type-id-31' name='index' filepath='Objects/unicodeobject.c' line='4365' column='1'/>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodeobject.c' line='4365' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicode_ReadChar' mangled-name='PyUnicode_ReadChar' filepath='Objects/unicodeobject.c' line='4343' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_ReadChar'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4343' column='1'/>
-      <parameter type-id='type-id-30' name='index' filepath='Objects/unicodeobject.c' line='4343' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4343' column='1'/>
+      <parameter type-id='type-id-31' name='index' filepath='Objects/unicodeobject.c' line='4343' column='1'/>
       <return type-id='type-id-450'/>
     </function-decl>
     <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='Objects/unicodeobject.c' line='4331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetLength'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2342' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4331' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyUnicode_GetSize' mangled-name='PyUnicode_GetSize' filepath='Objects/unicodeobject.c' line='4312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_GetSize'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4312' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_AsUnicode' mangled-name='_PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUnicode'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4297' column='1'/>
-      <return type-id='type-id-438'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4312' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUnicode' mangled-name='PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicode'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4291' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4291' column='1'/>
       <return type-id='type-id-515'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='Objects/unicodeobject.c' line='4252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUnicodeAndSize'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4252' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4252' column='1'/>
       <parameter type-id='type-id-125' name='size' filepath='Objects/unicodeobject.c' line='4252' column='1'/>
       <return type-id='type-id-515'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUTF8' mangled-name='PyUnicode_AsUTF8' filepath='Objects/unicodeobject.c' line='4246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8'>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/exceptions.c' line='368' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4246' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUTF8AndSize' mangled-name='PyUnicode_AsUTF8AndSize' filepath='Objects/unicodeobject.c' line='4225' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUTF8AndSize'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='4225' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4225' column='1'/>
       <parameter type-id='type-id-125' name='psize' filepath='Objects/unicodeobject.c' line='4225' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
     <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='4152' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSDecoder'>
-      <parameter type-id='type-id-15' name='arg' filepath='Objects/unicodeobject.c' line='4152' column='1'/>
-      <parameter type-id='type-id-20' name='addr' filepath='Objects/unicodeobject.c' line='4152' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Objects/unicodeobject.c' line='4152' column='1'/>
+      <parameter type-id='type-id-21' name='addr' filepath='Objects/unicodeobject.c' line='4152' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='Objects/unicodeobject.c' line='4112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FSConverter'>
-      <parameter type-id='type-id-15' name='arg' filepath='Objects/unicodeobject.c' line='4112' column='1'/>
-      <parameter type-id='type-id-20' name='addr' filepath='Objects/unicodeobject.c' line='4112' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Objects/unicodeobject.c' line='4112' column='1'/>
+      <parameter type-id='type-id-21' name='addr' filepath='Objects/unicodeobject.c' line='4112' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='Objects/unicodeobject.c' line='4076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefaultAndSize'>
       <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4076' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='4076' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='4076' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='Objects/unicodeobject.c' line='4070' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeFSDefault'>
-      <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15841' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4070' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' line='4061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocale'>
-      <parameter type-id='type-id-3' name='name' filepath='Objects/typeobject.c' line='196' column='1'/>
-      <parameter type-id='type-id-3' name='internal_doc' filepath='Objects/typeobject.c' line='196' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='4061' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4061' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_DecodeLocaleAndSize' mangled-name='PyUnicode_DecodeLocaleAndSize' filepath='Objects/unicodeobject.c' line='4053' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_DecodeLocaleAndSize'>
       <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='4053' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Objects/unicodeobject.c' line='4053' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Objects/unicodeobject.c' line='4053' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='4054' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsEncodedUnicode' mangled-name='PyUnicode_AsEncodedUnicode' filepath='Objects/unicodeobject.c' line='3973' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedUnicode'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3973' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3973' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3974' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3975' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='Objects/unicodeobject.c' line='3873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedString'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3873' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3874' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3875' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='Objects/unicodeobject.c' line='3839' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeFSDefault'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2793' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3839' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_EncodeLocale' mangled-name='PyUnicode_EncodeLocale' filepath='Objects/unicodeobject.c' line='3832' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_EncodeLocale'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3832' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3832' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3832' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsEncodedObject' mangled-name='PyUnicode_AsEncodedObject' filepath='Objects/unicodeobject.c' line='3750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedObject'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3973' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3974' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3975' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3750' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3751' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3752' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_Encode' mangled-name='PyUnicode_Encode' filepath='Objects/unicodeobject.c' line='3734' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Encode'>
       <parameter type-id='type-id-438' name='s' filepath='Objects/unicodeobject.c' line='3734' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='3735' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='3735' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3736' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3737' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsDecodedUnicode' mangled-name='PyUnicode_AsDecodedUnicode' filepath='Objects/unicodeobject.c' line='3695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedUnicode'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3973' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3974' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3975' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3695' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3696' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3697' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsDecodedObject' mangled-name='PyUnicode_AsDecodedObject' filepath='Objects/unicodeobject.c' line='3673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsDecodedObject'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3673' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3673' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3674' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3675' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='Objects/unicodeobject.c' line='3583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Decode'>
-      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3583' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='3584' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3585' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3586' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromEncodedObject' mangled-name='PyUnicode_FromEncodedObject' filepath='Objects/unicodeobject.c' line='3481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromEncodedObject'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/unicodeobject.c' line='3481' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/unicodeobject.c' line='3481' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3482' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3483' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'>
-      <parameter type-id='type-id-8' name='ordinal' filepath='Objects/unicodeobject.c' line='3447' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_WideCharString_Opt_Converter' mangled-name='_PyUnicode_WideCharString_Opt_Converter' filepath='Objects/unicodeobject.c' line='3411' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_WideCharString_Opt_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/unicodeobject.c' line='3411' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/unicodeobject.c' line='3411' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_WideCharString_Converter' mangled-name='_PyUnicode_WideCharString_Converter' filepath='Objects/unicodeobject.c' line='3379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_WideCharString_Converter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/unicodeobject.c' line='3411' column='1'/>
+      <parameter type-id='type-id-21' name='ptr' filepath='Objects/unicodeobject.c' line='3411' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='Objects/unicodeobject.c' line='3331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideCharString'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3331' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3331' column='1'/>
       <parameter type-id='type-id-125' name='size' filepath='Objects/unicodeobject.c' line='3332' column='1'/>
       <return type-id='type-id-325'/>
     </function-decl>
     <function-decl name='PyUnicode_AsWideChar' mangled-name='PyUnicode_AsWideChar' filepath='Objects/unicodeobject.c' line='3289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsWideChar'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='3289' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3289' column='1'/>
       <parameter type-id='type-id-325' name='w' filepath='Objects/unicodeobject.c' line='3290' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='3291' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='3291' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='PyUnicode_FromFormat' mangled-name='PyUnicode_FromFormat' filepath='Objects/unicodeobject.c' line='3179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormat'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromFormatV' mangled-name='PyUnicode_FromFormatV' filepath='Objects/unicodeobject.c' line='3122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromFormatV'>
       <parameter type-id='type-id-3' name='format' filepath='Objects/unicodeobject.c' line='3122' column='1'/>
       <parameter type-id='type-id-217' name='vargs' filepath='Objects/unicodeobject.c' line='3122' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='Objects/unicodeobject.c' line='2746' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4Copy'>
-      <parameter type-id='type-id-15' name='string' filepath='Objects/unicodeobject.c' line='2746' column='1'/>
+      <parameter type-id='type-id-16' name='string' filepath='Objects/unicodeobject.c' line='2746' column='1'/>
       <return type-id='type-id-514'/>
     </function-decl>
     <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='Objects/unicodeobject.c' line='2735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsUCS4'>
-      <parameter type-id='type-id-15' name='string' filepath='Objects/unicodeobject.c' line='2735' column='1'/>
+      <parameter type-id='type-id-16' name='string' filepath='Objects/unicodeobject.c' line='2735' column='1'/>
       <parameter type-id='type-id-514' name='target' filepath='Objects/unicodeobject.c' line='2735' column='1'/>
-      <parameter type-id='type-id-30' name='targetsize' filepath='Objects/unicodeobject.c' line='2735' column='1'/>
-      <parameter type-id='type-id-8' name='copy_null' filepath='Objects/unicodeobject.c' line='2736' column='1'/>
+      <parameter type-id='type-id-31' name='targetsize' filepath='Objects/unicodeobject.c' line='2735' column='1'/>
+      <parameter type-id='type-id-9' name='copy_null' filepath='Objects/unicodeobject.c' line='2736' column='1'/>
       <return type-id='type-id-514'/>
     </function-decl>
     <function-decl name='_PyUnicode_Copy' mangled-name='_PyUnicode_Copy' filepath='Objects/unicodeobject.c' line='2612' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Copy'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='x' filepath='Objects/bytesobject.c' line='2818' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='Objects/unicodeobject.c' line='2529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FindMaxChar'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='2529' column='1'/>
       <return type-id='type-id-450'/>
     </function-decl>
-    <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'>
-      <parameter type-id='type-id-8' name='kind' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
-      <parameter type-id='type-id-20' name='buffer' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='Objects/unicodeobject.c' line='2398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromASCII'>
-      <parameter type-id='type-id-3' name='bytes' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
     <function-decl name='_PyUnicode_FromId' mangled-name='_PyUnicode_FromId' filepath='Objects/unicodeobject.c' line='2319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromId'>
       <parameter type-id='type-id-453' name='id' filepath='Objects/unicodeobject.c' line='2319' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromString' mangled-name='PyUnicode_FromString' filepath='Objects/unicodeobject.c' line='2307' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromString'>
-      <parameter type-id='type-id-3' name='cp' filepath='Objects/unicodeobject.c' line='15841' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='4070' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromStringAndSize' mangled-name='PyUnicode_FromStringAndSize' filepath='Objects/unicodeobject.c' line='2284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromStringAndSize'>
       <parameter type-id='type-id-3' name='u' filepath='Objects/unicodeobject.c' line='2284' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='2284' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='2284' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='Objects/unicodeobject.c' line='2202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromWideChar'>
       <parameter type-id='type-id-478' name='u' filepath='Objects/unicodeobject.c' line='2202' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='2202' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='2202' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyUnicode_FromUnicode' mangled-name='PyUnicode_FromUnicode' filepath='Objects/unicodeobject.c' line='2180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromUnicode'>
       <parameter type-id='type-id-438' name='u' filepath='Objects/unicodeobject.c' line='2180' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='2180' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='2061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'>
-      <parameter type-id='type-id-86' name='p_unicode' filepath='Objects/unicodeobject.c' line='2061' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='Objects/unicodeobject.c' line='2061' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='2180' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_Ready' mangled-name='_PyUnicode_Ready' filepath='Objects/unicodeobject.c' line='1802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_Ready'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='1802' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='1802' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='Objects/unicodeobject.c' line='1701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_CopyCharacters'>
-      <parameter type-id='type-id-15' name='to' filepath='Objects/unicodeobject.c' line='1701' column='1'/>
-      <parameter type-id='type-id-30' name='to_start' filepath='Objects/unicodeobject.c' line='1701' column='1'/>
-      <parameter type-id='type-id-15' name='from' filepath='Objects/unicodeobject.c' line='1702' column='1'/>
-      <parameter type-id='type-id-30' name='from_start' filepath='Objects/unicodeobject.c' line='1702' column='1'/>
-      <parameter type-id='type-id-30' name='how_many' filepath='Objects/unicodeobject.c' line='1703' column='1'/>
-      <return type-id='type-id-30'/>
+      <parameter type-id='type-id-16' name='to' filepath='Objects/unicodeobject.c' line='1701' column='1'/>
+      <parameter type-id='type-id-31' name='to_start' filepath='Objects/unicodeobject.c' line='1701' column='1'/>
+      <parameter type-id='type-id-16' name='from' filepath='Objects/unicodeobject.c' line='1702' column='1'/>
+      <parameter type-id='type-id-31' name='from_start' filepath='Objects/unicodeobject.c' line='1702' column='1'/>
+      <parameter type-id='type-id-31' name='how_many' filepath='Objects/unicodeobject.c' line='1703' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
     <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='Objects/unicodeobject.c' line='1693' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FastCopyCharacters'>
-      <parameter type-id='type-id-15' name='to' filepath='Objects/unicodeobject.c' line='1694' column='1'/>
-      <parameter type-id='type-id-30' name='to_start' filepath='Objects/unicodeobject.c' line='1694' column='1'/>
-      <parameter type-id='type-id-15' name='from' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
-      <parameter type-id='type-id-30' name='from_start' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
-      <parameter type-id='type-id-30' name='how_many' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='to' filepath='Objects/unicodeobject.c' line='1694' column='1'/>
+      <parameter type-id='type-id-31' name='to_start' filepath='Objects/unicodeobject.c' line='1694' column='1'/>
+      <parameter type-id='type-id-16' name='from' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
+      <parameter type-id='type-id-31' name='from_start' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
+      <parameter type-id='type-id-31' name='how_many' filepath='Objects/unicodeobject.c' line='1695' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyUnicode_New' mangled-name='PyUnicode_New' filepath='Objects/unicodeobject.c' line='1388' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_New'>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/unicodeobject.c' line='1388' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='1388' column='1'/>
       <parameter type-id='type-id-450' name='maxchar' filepath='Objects/unicodeobject.c' line='1388' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyUnicode_CheckConsistency' mangled-name='_PyUnicode_CheckConsistency' filepath='Objects/unicodeobject.c' line='489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_CheckConsistency'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/unicodeobject.c' line='489' column='1'/>
-      <parameter type-id='type-id-8' name='check_content' filepath='Objects/unicodeobject.c' line='489' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='op' filepath='Objects/unicodeobject.c' line='489' column='1'/>
+      <parameter type-id='type-id-9' name='check_content' filepath='Objects/unicodeobject.c' line='489' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_Py_GetErrorHandler' mangled-name='_Py_GetErrorHandler' filepath='Objects/unicodeobject.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetErrorHandler'>
       <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='385' column='1'/>
       <return type-id='type-id-366'/>
     </function-decl>
+    <function-decl name='PyUnicode_RichCompare' mangled-name='PyUnicode_RichCompare' filepath='Objects/unicodeobject.c' line='11589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RichCompare'>
+      <parameter type-id='type-id-16' name='left' filepath='Objects/unicodeobject.c' line='11589' column='1'/>
+      <parameter type-id='type-id-16' name='right' filepath='Objects/unicodeobject.c' line='11589' column='1'/>
+      <parameter type-id='type-id-9' name='op' filepath='Objects/unicodeobject.c' line='11589' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='Objects/unicodeobject.c' line='11634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Contains'>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='11634' column='1'/>
+      <parameter type-id='type-id-16' name='substr' filepath='Objects/unicodeobject.c' line='11634' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Resize' mangled-name='PyUnicode_Resize' filepath='Objects/unicodeobject.c' line='2061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Resize'>
+      <parameter type-id='type-id-86' name='p_unicode' filepath='Objects/unicodeobject.c' line='2061' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='Objects/unicodeobject.c' line='2061' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FromASCII' mangled-name='_PyUnicode_FromASCII' filepath='Objects/unicodeobject.c' line='2398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FromASCII'>
+      <parameter type-id='type-id-3' name='buffer' filepath='Objects/unicodeobject.c' line='2398' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='2398' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='Objects/unicodeobject.c' line='2509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromKindAndData'>
+      <parameter type-id='type-id-9' name='kind' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
+      <parameter type-id='type-id-21' name='buffer' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='2509' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='Objects/unicodeobject.c' line='3447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromOrdinal'>
+      <parameter type-id='type-id-9' name='ordinal' filepath='Objects/unicodeobject.c' line='3447' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromObject' mangled-name='PyUnicode_FromObject' filepath='Objects/unicodeobject.c' line='3459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_FromObject'>
+      <parameter type-id='type-id-16' name='obj' filepath='Objects/unicodeobject.c' line='3459' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsUnicode' mangled-name='_PyUnicode_AsUnicode' filepath='Objects/unicodeobject.c' line='4297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsUnicode'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='4297' column='1'/>
+      <return type-id='type-id-438'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='Objects/unicodeobject.c' line='7329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsLatin1String'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='7329' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7329' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsASCIIString' mangled-name='_PyUnicode_AsASCIIString' filepath='Objects/unicodeobject.c' line='7470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_AsASCIIString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='7470' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7470' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsEncodedString' mangled-name='PyUnicode_AsEncodedString' filepath='Objects/unicodeobject.c' line='3873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_AsEncodedString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='3873' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3874' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3875' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EqualToASCIIString' mangled-name='_PyUnicode_EqualToASCIIString' filepath='Objects/unicodeobject.c' line='11522' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_EqualToASCIIString'>
+      <parameter type-id='type-id-16' name='unicode' filepath='Objects/unicodeobject.c' line='11522' column='1'/>
+      <parameter type-id='type-id-3' name='str' filepath='Objects/unicodeobject.c' line='11522' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='13464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Partition'>
+      <parameter type-id='type-id-16' name='str_obj' filepath='Objects/unicodeobject.c' line='13464' column='1'/>
+      <parameter type-id='type-id-16' name='sep_obj' filepath='Objects/unicodeobject.c' line='13464' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_RPartition' mangled-name='PyUnicode_RPartition' filepath='Objects/unicodeobject.c' line='13516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_RPartition'>
+      <parameter type-id='type-id-16' name='str_obj' filepath='Objects/unicodeobject.c' line='13464' column='1'/>
+      <parameter type-id='type-id-16' name='sep_obj' filepath='Objects/unicodeobject.c' line='13464' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_WriteSubstring' mangled-name='_PyUnicodeWriter_WriteSubstring' filepath='Objects/unicodeobject.c' line='14205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_WriteSubstring'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14205' column='1'/>
+      <parameter type-id='type-id-16' name='str' filepath='Objects/unicodeobject.c' line='14205' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Objects/unicodeobject.c' line='14206' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Objects/unicodeobject.c' line='14206' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeWriter_Finish' mangled-name='_PyUnicodeWriter_Finish' filepath='Objects/unicodeobject.c' line='14314' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicodeWriter_Finish'>
+      <parameter type-id='type-id-451' name='writer' filepath='Objects/unicodeobject.c' line='14314' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Decode' mangled-name='PyUnicode_Decode' filepath='Objects/unicodeobject.c' line='3583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyUnicode_Decode'>
+      <parameter type-id='type-id-3' name='s' filepath='Objects/unicodeobject.c' line='3583' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Objects/unicodeobject.c' line='3584' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Objects/unicodeobject.c' line='3585' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='3586' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModuleDef_Init' mangled-name='PyModuleDef_Init' filepath='./Include/moduleobject.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_GetConfig' mangled-name='_PyInterpreterState_GetConfig' filepath='./Include/cpython/pystate.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_SetFileSystemEncoding' mangled-name='_Py_SetFileSystemEncoding' filepath='./Include/internal/pycore_pylifecycle.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpPathConfig' mangled-name='_Py_DumpPathConfig' filepath='./Include/internal/pycore_pathconfig.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodec_Lookup' mangled-name='_PyCodec_Lookup' filepath='./Include/codecs.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyMem_RawWcsdup' mangled-name='_PyMem_RawWcsdup' filepath='./Include/cpython/pymem.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FormatWriter' mangled-name='_PyLong_FormatWriter' filepath='./Include/longobject.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_ToBase' mangled-name='PyNumber_ToBase' filepath='./Include/abstract.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToDecimalDigit' mangled-name='_PyUnicode_ToDecimalDigit' filepath='./Include/cpython/unicodeobject.h' line='1116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsXidStart' mangled-name='_PyUnicode_IsXidStart' filepath='./Include/cpython/unicodeobject.h' line='1060' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsXidContinue' mangled-name='_PyUnicode_IsXidContinue' filepath='./Include/cpython/unicodeobject.h' line='1064' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wmemcmp' mangled-name='wmemcmp' filepath='/usr/include/wchar.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsWhitespace' mangled-name='_PyUnicode_IsWhitespace' filepath='./Include/cpython/unicodeobject.h' line='1068' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsLinebreak' mangled-name='_PyUnicode_IsLinebreak' filepath='./Include/cpython/unicodeobject.h' line='1072' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsCaseIgnorable' mangled-name='_PyUnicode_IsCaseIgnorable' filepath='./Include/cpython/unicodeobject.h' line='1108' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsCased' mangled-name='_PyUnicode_IsCased' filepath='./Include/cpython/unicodeobject.h' line='1112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='./Include/codecs.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_SetStart' mangled-name='PyUnicodeTranslateError_SetStart' filepath='./Include/pyerrors.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_SetEnd' mangled-name='PyUnicodeTranslateError_SetEnd' filepath='./Include/pyerrors.h' line='288' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicodeTranslateError_Create' mangled-name='_PyUnicodeTranslateError_Create' filepath='./Include/cpython/pyerrors.h' line='188' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_SetReason' mangled-name='PyUnicodeTranslateError_SetReason' filepath='./Include/pyerrors.h' line='305' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='./Include/codecs.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_WriteBytes' mangled-name='_PyBytesWriter_WriteBytes' filepath='./Include/cpython/bytesobject.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Init' mangled-name='_PyBytesWriter_Init' filepath='./Include/cpython/bytesobject.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Alloc' mangled-name='_PyBytesWriter_Alloc' filepath='./Include/cpython/bytesobject.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Finish' mangled-name='_PyBytesWriter_Finish' filepath='./Include/cpython/bytesobject.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytesWriter_Dealloc' mangled-name='_PyBytesWriter_Dealloc' filepath='./Include/cpython/bytesobject.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetStart' mangled-name='PyUnicodeEncodeError_SetStart' filepath='./Include/pyerrors.h' line='274' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetEnd' mangled-name='PyUnicodeEncodeError_SetEnd' filepath='./Include/pyerrors.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_SetReason' mangled-name='PyUnicodeEncodeError_SetReason' filepath='./Include/pyerrors.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCapsule_Import' mangled-name='PyCapsule_Import' filepath='./Include/pycapsule.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_RawMalloc' mangled-name='PyMem_RawMalloc' filepath='./Include/cpython/pymem.h' line='5' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_SetStart' mangled-name='PyUnicodeDecodeError_SetStart' filepath='./Include/pyerrors.h' line='275' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_SetEnd' mangled-name='PyUnicodeDecodeError_SetEnd' filepath='./Include/pyerrors.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_SetReason' mangled-name='PyUnicodeDecodeError_SetReason' filepath='./Include/pyerrors.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_Create' mangled-name='PyUnicodeDecodeError_Create' filepath='./Include/pyerrors.h' line='248' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_GetObject' mangled-name='PyUnicodeDecodeError_GetObject' filepath='./Include/pyerrors.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Include/osmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='./Include/cpython/fileutils.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='./Include/codecs.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='./Include/cpython/fileutils.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='./Include/codecs.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_WriteUnraisableMsg' mangled-name='_PyErr_WriteUnraisableMsg' filepath='./Include/cpython/pyerrors.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToUpperFull' mangled-name='_PyUnicode_ToUpperFull' filepath='./Include/cpython/unicodeobject.h' line='1098' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToLowerFull' mangled-name='_PyUnicode_ToLowerFull' filepath='./Include/cpython/unicodeobject.h' line='1088' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsUppercase' mangled-name='_PyUnicode_IsUppercase' filepath='./Include/cpython/unicodeobject.h' line='1052' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsLowercase' mangled-name='_PyUnicode_IsLowercase' filepath='./Include/cpython/unicodeobject.h' line='1048' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsNumeric' mangled-name='_PyUnicode_IsNumeric' filepath='./Include/cpython/unicodeobject.h' line='1136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsDigit' mangled-name='_PyUnicode_IsDigit' filepath='./Include/cpython/unicodeobject.h' line='1132' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsDecimalDigit' mangled-name='_PyUnicode_IsDecimalDigit' filepath='./Include/cpython/unicodeobject.h' line='1128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsAlpha' mangled-name='_PyUnicode_IsAlpha' filepath='./Include/cpython/unicodeobject.h' line='1144' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_IsTitlecase' mangled-name='_PyUnicode_IsTitlecase' filepath='./Include/cpython/unicodeobject.h' line='1056' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToFoldedFull' mangled-name='_PyUnicode_ToFoldedFull' filepath='./Include/cpython/unicodeobject.h' line='1103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToTitleFull' mangled-name='_PyUnicode_ToTitleFull' filepath='./Include/cpython/unicodeobject.h' line='1093' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcscmp' mangled-name='wcscmp' filepath='/usr/include/wchar.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodec_EncodeText' mangled-name='_PyCodec_EncodeText' filepath='./Include/codecs.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMemoryView_FromBuffer' mangled-name='PyMemoryView_FromBuffer' filepath='./Include/memoryobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodec_DecodeText' mangled-name='_PyCodec_DecodeText' filepath='./Include/codecs.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='./Include/cpython/unicodeobject.h' line='720' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Format' mangled-name='PyObject_Format' filepath='./Include/abstract.h' line='363' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/unicodectype.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='_PyUnicode_IsAlpha' mangled-name='_PyUnicode_IsAlpha' filepath='Objects/unicodectype.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsAlpha'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsCaseIgnorable' mangled-name='_PyUnicode_IsCaseIgnorable' filepath='Objects/unicodectype.c' line='281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsCaseIgnorable'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsCased' mangled-name='_PyUnicode_IsCased' filepath='Objects/unicodectype.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsCased'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToFoldedFull' mangled-name='_PyUnicode_ToFoldedFull' filepath='Objects/unicodectype.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToFoldedFull'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/>
       <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToUpperFull' mangled-name='_PyUnicode_ToUpperFull' filepath='Objects/unicodectype.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToUpperFull'>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToTitleFull' mangled-name='_PyUnicode_ToTitleFull' filepath='Objects/unicodectype.c' line='227' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToTitleFull'>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToLowerFull' mangled-name='_PyUnicode_ToLowerFull' filepath='Objects/unicodectype.c' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToLowerFull'>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='259' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <parameter type-id='type-id-514' name='res' filepath='Objects/unicodectype.c' line='243' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToLowercase' mangled-name='_PyUnicode_ToLowercase' filepath='Objects/unicodectype.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToLowercase'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='202' column='1'/>
@@ -9688,47 +11904,47 @@
     </function-decl>
     <function-decl name='_PyUnicode_IsUppercase' mangled-name='_PyUnicode_IsUppercase' filepath='Objects/unicodectype.c' line='180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsUppercase'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsLowercase' mangled-name='_PyUnicode_IsLowercase' filepath='Objects/unicodectype.c' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsLowercase'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsPrintable' mangled-name='_PyUnicode_IsPrintable' filepath='Objects/unicodectype.c' line='160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsPrintable'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsNumeric' mangled-name='_PyUnicode_IsNumeric' filepath='Objects/unicodectype.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsNumeric'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsDigit' mangled-name='_PyUnicode_IsDigit' filepath='Objects/unicodectype.c' line='130' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsDigit'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='130' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToDigit' mangled-name='_PyUnicode_ToDigit' filepath='Objects/unicodectype.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToDigit'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsDecimalDigit' mangled-name='_PyUnicode_IsDecimalDigit' filepath='Objects/unicodectype.c' line='113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsDecimalDigit'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='130' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToDecimalDigit' mangled-name='_PyUnicode_ToDecimalDigit' filepath='Objects/unicodectype.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToDecimalDigit'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsXidContinue' mangled-name='_PyUnicode_IsXidContinue' filepath='Objects/unicodectype.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsXidContinue'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsXidStart' mangled-name='_PyUnicode_IsXidStart' filepath='Objects/unicodectype.c' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsXidStart'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsTitlecase' mangled-name='_PyUnicode_IsTitlecase' filepath='Objects/unicodectype.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsTitlecase'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='291' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_ToTitlecase' mangled-name='_PyUnicode_ToTitlecase' filepath='Objects/unicodectype.c' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToTitlecase'>
       <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodectype.c' line='202' column='1'/>
@@ -9737,51 +11953,59 @@
     <qualified-type-def type-id='type-id-450' const='yes' id='type-id-516'/>
     <function-decl name='_PyUnicode_IsLinebreak' mangled-name='_PyUnicode_IsLinebreak' filepath='Objects/unicodetype_db.h' line='6249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsLinebreak'>
       <parameter type-id='type-id-516' name='ch' filepath='Objects/unicodetype_db.h' line='6249' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyUnicode_IsWhitespace' mangled-name='_PyUnicode_IsWhitespace' filepath='Objects/unicodetype_db.h' line='6208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_IsWhitespace'>
       <parameter type-id='type-id-516' name='ch' filepath='Objects/unicodetype_db.h' line='6249' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyUnicode_ToNumeric' mangled-name='_PyUnicode_ToNumeric' filepath='Objects/unicodetype_db.h' line='4187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_ToNumeric'>
-      <parameter type-id='type-id-450' name='ch' filepath='Objects/unicodetype_db.h' line='4187' column='1'/>
-      <return type-id='type-id-371'/>
+      <return type-id='type-id-9'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/unionobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='_PyUnion_Type' type-id='type-id-149' visibility='default' filepath='./Include/internal/pycore_unionobject.h' line='11' column='1'/>
+    <function-decl name='_Py_make_parameters' mangled-name='_Py_make_parameters' filepath='./Include/internal/pycore_unionobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_subs_parameters' mangled-name='_Py_subs_parameters' filepath='./Include/internal/pycore_unionobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_IsSubclass' mangled-name='PyObject_IsSubclass' filepath='./Include/abstract.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_IsInstance' mangled-name='PyObject_IsInstance' filepath='./Include/abstract.h' line='859' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Objects/weakrefobject.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='_PyWeakref_RefType' type-id='type-id-149' mangled-name='_PyWeakref_RefType' visibility='default' filepath='./Include/weakrefobject.h' line='43' column='1' elf-symbol-id='_PyWeakref_RefType'/>
     <var-decl name='_PyWeakref_ProxyType' type-id='type-id-149' mangled-name='_PyWeakref_ProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='44' column='1' elf-symbol-id='_PyWeakref_ProxyType'/>
     <var-decl name='_PyWeakref_CallableProxyType' type-id='type-id-149' mangled-name='_PyWeakref_CallableProxyType' visibility='default' filepath='./Include/weakrefobject.h' line='45' column='1' elf-symbol-id='_PyWeakref_CallableProxyType'/>
     <function-decl name='PyObject_ClearWeakRefs' mangled-name='PyObject_ClearWeakRefs' filepath='Objects/weakrefobject.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_ClearWeakRefs'>
-      <parameter type-id='type-id-15' name='object' filepath='Objects/weakrefobject.c' line='967' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='object' filepath='Objects/weakrefobject.c' line='967' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='Objects/weakrefobject.c' line='937' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_GetObject'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='Objects/weakrefobject.c' line='870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewProxy'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='767' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Objects/abstract.c' line='767' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='ob' filepath='Objects/weakrefobject.c' line='870' column='1'/>
+      <parameter type-id='type-id-16' name='callback' filepath='Objects/weakrefobject.c' line='870' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyWeakref_NewRef' mangled-name='PyWeakref_NewRef' filepath='Objects/weakrefobject.c' line='811' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWeakref_NewRef'>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/weakrefobject.c' line='811' column='1'/>
-      <parameter type-id='type-id-15' name='callback' filepath='Objects/weakrefobject.c' line='811' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='ob' filepath='Objects/weakrefobject.c' line='811' column='1'/>
+      <parameter type-id='type-id-16' name='callback' filepath='Objects/weakrefobject.c' line='811' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <class-decl name='_PyWeakReference' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/weakrefobject.h' line='16' column='1' id='type-id-517'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/weakrefobject.h' line='17' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/weakrefobject.h' line='17' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='wr_object' type-id='type-id-15' visibility='default' filepath='./Include/weakrefobject.h' line='23' column='1'/>
+        <var-decl name='wr_object' type-id='type-id-16' visibility='default' filepath='./Include/weakrefobject.h' line='23' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='wr_callback' type-id='type-id-15' visibility='default' filepath='./Include/weakrefobject.h' line='26' column='1'/>
+        <var-decl name='wr_callback' type-id='type-id-16' visibility='default' filepath='./Include/weakrefobject.h' line='26' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
         <var-decl name='hash' type-id='type-id-117' visibility='default' filepath='./Include/weakrefobject.h' line='31' column='1'/>
@@ -9797,160 +12021,376 @@
     <pointer-type-def type-id='type-id-519' size-in-bits='64' id='type-id-518'/>
     <function-decl name='_PyWeakref_ClearRef' mangled-name='_PyWeakref_ClearRef' filepath='Objects/weakrefobject.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWeakref_ClearRef'>
       <parameter type-id='type-id-518' name='self' filepath='Objects/weakrefobject.c' line='92' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyWeakref_GetWeakrefCount' mangled-name='_PyWeakref_GetWeakrefCount' filepath='Objects/weakrefobject.c' line='11' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWeakref_GetWeakrefCount'>
       <parameter type-id='type-id-518' name='head' filepath='Objects/weakrefobject.c' line='11' column='1'/>
-      <return type-id='type-id-30'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceMatrixMultiply' mangled-name='PyNumber_InPlaceMatrixMultiply' filepath='./Include/abstract.h' line='569' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_MatrixMultiply' mangled-name='PyNumber_MatrixMultiply' filepath='./Include/abstract.h' line='436' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceOr' mangled-name='PyNumber_InPlaceOr' filepath='./Include/abstract.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceXor' mangled-name='PyNumber_InPlaceXor' filepath='./Include/abstract.h' line='622' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceAnd' mangled-name='PyNumber_InPlaceAnd' filepath='./Include/abstract.h' line='616' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceRshift' mangled-name='PyNumber_InPlaceRshift' filepath='./Include/abstract.h' line='610' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceLshift' mangled-name='PyNumber_InPlaceLshift' filepath='./Include/abstract.h' line='604' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlacePower' mangled-name='PyNumber_InPlacePower' filepath='./Include/abstract.h' line='597' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceRemainder' mangled-name='PyNumber_InPlaceRemainder' filepath='./Include/abstract.h' line='590' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceTrueDivide' mangled-name='PyNumber_InPlaceTrueDivide' filepath='./Include/abstract.h' line='583' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceFloorDivide' mangled-name='PyNumber_InPlaceFloorDivide' filepath='./Include/abstract.h' line='576' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceMultiply' mangled-name='PyNumber_InPlaceMultiply' filepath='./Include/abstract.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceSubtract' mangled-name='PyNumber_InPlaceSubtract' filepath='./Include/abstract.h' line='559' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_InPlaceAdd' mangled-name='PyNumber_InPlaceAdd' filepath='./Include/abstract.h' line='553' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Xor' mangled-name='PyNumber_Xor' filepath='./Include/abstract.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_And' mangled-name='PyNumber_And' filepath='./Include/abstract.h' line='505' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Rshift' mangled-name='PyNumber_Rshift' filepath='./Include/abstract.h' line='499' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Lshift' mangled-name='PyNumber_Lshift' filepath='./Include/abstract.h' line='493' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Invert' mangled-name='PyNumber_Invert' filepath='./Include/abstract.h' line='488' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Absolute' mangled-name='PyNumber_Absolute' filepath='./Include/abstract.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Positive' mangled-name='PyNumber_Positive' filepath='./Include/abstract.h' line='478' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Power' mangled-name='PyNumber_Power' filepath='./Include/abstract.h' line='467' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_Divmod' mangled-name='PyNumber_Divmod' filepath='./Include/abstract.h' line='461' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_TrueDivide' mangled-name='PyNumber_TrueDivide' filepath='./Include/abstract.h' line='449' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/_warnings.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='_PyWarnings_Init' mangled-name='_PyWarnings_Init' filepath='Python/_warnings.c' line='1389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWarnings_Init'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyErr_WarnExplicitFormat' mangled-name='PyErr_WarnExplicitFormat' filepath='Python/_warnings.c' line='1249' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicitFormat'>
-      <parameter type-id='type-id-15' name='category' filepath='Python/_warnings.c' line='1249' column='1'/>
+      <parameter type-id='type-id-16' name='category' filepath='Python/_warnings.c' line='1249' column='1'/>
       <parameter type-id='type-id-3' name='filename_str' filepath='Python/_warnings.c' line='1250' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/_warnings.c' line='1250' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/_warnings.c' line='1250' column='1'/>
       <parameter type-id='type-id-3' name='module_str' filepath='Python/_warnings.c' line='1251' column='1'/>
-      <parameter type-id='type-id-15' name='registry' filepath='Python/_warnings.c' line='1251' column='1'/>
+      <parameter type-id='type-id-16' name='registry' filepath='Python/_warnings.c' line='1251' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Python/_warnings.c' line='1252' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_WarnExplicit' mangled-name='PyErr_WarnExplicit' filepath='Python/_warnings.c' line='1221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicit'>
-      <parameter type-id='type-id-15' name='category' filepath='Python/_warnings.c' line='1221' column='1'/>
+      <parameter type-id='type-id-16' name='category' filepath='Python/_warnings.c' line='1221' column='1'/>
       <parameter type-id='type-id-3' name='text' filepath='Python/_warnings.c' line='1221' column='1'/>
       <parameter type-id='type-id-3' name='filename_str' filepath='Python/_warnings.c' line='1222' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/_warnings.c' line='1222' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/_warnings.c' line='1222' column='1'/>
       <parameter type-id='type-id-3' name='module_str' filepath='Python/_warnings.c' line='1223' column='1'/>
-      <parameter type-id='type-id-15' name='registry' filepath='Python/_warnings.c' line='1223' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='registry' filepath='Python/_warnings.c' line='1223' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_WarnExplicitObject' mangled-name='PyErr_WarnExplicitObject' filepath='Python/_warnings.c' line='1205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnExplicitObject'>
-      <parameter type-id='type-id-15' name='category' filepath='Python/_warnings.c' line='1205' column='1'/>
-      <parameter type-id='type-id-15' name='message' filepath='Python/_warnings.c' line='1205' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/_warnings.c' line='1206' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/_warnings.c' line='1206' column='1'/>
-      <parameter type-id='type-id-15' name='module' filepath='Python/_warnings.c' line='1207' column='1'/>
-      <parameter type-id='type-id-15' name='registry' filepath='Python/_warnings.c' line='1207' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='category' filepath='Python/_warnings.c' line='1205' column='1'/>
+      <parameter type-id='type-id-16' name='message' filepath='Python/_warnings.c' line='1205' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/_warnings.c' line='1206' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/_warnings.c' line='1206' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Python/_warnings.c' line='1207' column='1'/>
+      <parameter type-id='type-id-16' name='registry' filepath='Python/_warnings.c' line='1207' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_WarnEx' mangled-name='PyErr_WarnEx' filepath='Python/_warnings.c' line='1181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnEx'>
-      <parameter type-id='type-id-15' name='category' filepath='Python/_warnings.c' line='1181' column='1'/>
+      <parameter type-id='type-id-16' name='category' filepath='Python/_warnings.c' line='1181' column='1'/>
       <parameter type-id='type-id-3' name='text' filepath='Python/_warnings.c' line='1181' column='1'/>
-      <parameter type-id='type-id-30' name='stack_level' filepath='Python/_warnings.c' line='1181' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-31' name='stack_level' filepath='Python/_warnings.c' line='1181' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_ResourceWarning' mangled-name='PyErr_ResourceWarning' filepath='Python/_warnings.c' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ResourceWarning'>
-      <parameter type-id='type-id-15' name='source' filepath='Python/_warnings.c' line='1162' column='1'/>
-      <parameter type-id='type-id-30' name='stack_level' filepath='Python/_warnings.c' line='1162' column='1'/>
+      <parameter type-id='type-id-16' name='source' filepath='Python/_warnings.c' line='1162' column='1'/>
+      <parameter type-id='type-id-31' name='stack_level' filepath='Python/_warnings.c' line='1162' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Python/_warnings.c' line='1163' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_WarnFormat' mangled-name='PyErr_WarnFormat' filepath='Python/_warnings.c' line='1128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WarnFormat'>
-      <parameter type-id='type-id-15' name='source' filepath='Python/_warnings.c' line='1162' column='1'/>
-      <parameter type-id='type-id-30' name='stack_level' filepath='Python/_warnings.c' line='1162' column='1'/>
+      <parameter type-id='type-id-16' name='source' filepath='Python/_warnings.c' line='1162' column='1'/>
+      <parameter type-id='type-id-31' name='stack_level' filepath='Python/_warnings.c' line='1162' column='1'/>
       <parameter type-id='type-id-3' name='format' filepath='Python/_warnings.c' line='1163' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/Python-ast.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyInit__ast' mangled-name='PyInit__ast' filepath='Python/Python-ast.c' line='11998' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__ast'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyModule_AddObjectRef' mangled-name='PyModule_AddObjectRef' filepath='./Include/modsupport.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Splitlines' mangled-name='PyUnicode_Splitlines' filepath='./Include/unicodeobject.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_GetItem' mangled-name='PyList_GetItem' filepath='./Include/listobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_GetBack' mangled-name='PyFrame_GetBack' filepath='./Include/cpython/frameobject.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_GetLength' mangled-name='PyUnicode_GetLength' filepath='./Include/unicodeobject.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFile_WriteObject' mangled-name='PyFile_WriteObject' filepath='./Include/fileobject.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFile_WriteString' mangled-name='PyFile_WriteString' filepath='./Include/fileobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='./Include/cpython/sysmodule.h' line='5' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='./Include/cpython/traceback.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_IsFinalizing' mangled-name='_Py_IsFinalizing' filepath='./Include/cpython/pylifecycle.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Contains' mangled-name='PyUnicode_Contains' filepath='./Include/unicodeobject.h' line='1033' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/Python-ast.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyInit__ast' mangled-name='PyInit__ast' filepath='Python/Python-ast.c' line='11998' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__ast'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_CallFunction' mangled-name='PyObject_CallFunction' filepath='./Include/abstract.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_FromSpec' mangled-name='PyType_FromSpec' filepath='./Include/object.h' line='230' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_GenericNew' mangled-name='PyType_GenericNew' filepath='./Include/object.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='./Include/ceval.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_LeaveRecursiveCall' mangled-name='Py_LeaveRecursiveCall' filepath='./Include/ceval.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyModule_AddIntConstant' mangled-name='PyModule_AddIntConstant' filepath='./Include/modsupport.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Index' mangled-name='PySequence_Index' filepath='./Include/abstract.h' line='762' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_GetSlot' mangled-name='PyType_GetSlot' filepath='./Include/object.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/ast.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_GetRecursionLimit' mangled-name='Py_GetRecursionLimit' filepath='./Include/ceval.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/ast_opt.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyAST_GetDocString' mangled-name='_PyAST_GetDocString' filepath='./Include/internal/pycore_ast.h' line='850' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/ast_unparse.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyUnicode_Find' mangled-name='PyUnicode_Find' filepath='./Include/unicodeobject.h' line='942' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Replace' mangled-name='PyUnicode_Replace' filepath='./Include/unicodeobject.h' line='973' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/bltinmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyFilter_Type' type-id='type-id-149' mangled-name='PyFilter_Type' visibility='default' filepath='./Include/bltinmodule.h' line='7' column='1' elf-symbol-id='PyFilter_Type'/>
     <var-decl name='PyMap_Type' type-id='type-id-149' mangled-name='PyMap_Type' visibility='default' filepath='./Include/bltinmodule.h' line='8' column='1' elf-symbol-id='PyMap_Type'/>
     <var-decl name='PyZip_Type' type-id='type-id-149' mangled-name='PyZip_Type' visibility='default' filepath='./Include/bltinmodule.h' line='9' column='1' elf-symbol-id='PyZip_Type'/>
+    <function-decl name='_PyModule_CreateInitialized' mangled-name='_PyModule_CreateInitialized' filepath='./Include/modsupport.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseStackAndKeywords' mangled-name='_PyArg_ParseStackAndKeywords' filepath='./Include/modsupport.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GetAIter' mangled-name='PyObject_GetAIter' filepath='./Include/abstract.h' line='377' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='./Include/import.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMapping_SetItemString' mangled-name='PyMapping_SetItemString' filepath='./Include/abstract.h' line='855' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_CalculateMetaclass' mangled-name='_PyType_CalculateMetaclass' filepath='./Include/cpython/object.h' line='303' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFile_GetLine' mangled-name='PyFile_GetLine' filepath='./Include/fileobject.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyAnextAwaitable_New' mangled-name='PyAnextAwaitable_New' filepath='Python/bltinmodule.c' line='1616' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='./Include/cpython/pythonrun.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='./Include/cpython/ceval.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='./Include/cpython/pythonrun.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='./Include/ceval.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_EvalCode' mangled-name='PyEval_EvalCode' filepath='./Include/eval.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArena_New' mangled-name='_PyArena_New' filepath='./Include/internal/pycore_pyarena.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyAST_obj2mod' mangled-name='PyAST_obj2mod' filepath='./Include/internal/pycore_ast.h' line='839' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Validate' mangled-name='_PyAST_Validate' filepath='./Include/internal/pycore_ast.h' line='842' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArena_Free' mangled-name='_PyArena_Free' filepath='./Include/internal/pycore_pyarena.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Compile' mangled-name='_PyAST_Compile' filepath='./Include/internal/pycore_compile.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyAST_Check' mangled-name='PyAST_Check' filepath='./Include/internal/pycore_ast.h' line='840' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='./Include/cpython/pythonrun.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='./Include/unicodeobject.h' line='773' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromOrdinal' mangled-name='PyUnicode_FromOrdinal' filepath='./Include/unicodeobject.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCallIter_New' mangled-name='PyCallIter_New' filepath='./Include/iterobject.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='./Include/sysmodule.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/ceval.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_LeaveRecursiveCall' mangled-name='Py_LeaveRecursiveCall' filepath='Python/ceval.c' line='6520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_LeaveRecursiveCall'>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='Python/ceval.c' line='6513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EnterRecursiveCall'>
-      <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='6513' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='Py_EnterRecursiveCall' mangled-name='Py_EnterRecursiveCall' filepath='Python/ceval.c' line='6521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EnterRecursiveCall'>
+      <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='6521' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyEval_RequestCodeExtraIndex' mangled-name='_PyEval_RequestCodeExtraIndex' filepath='Python/ceval.c' line='6435' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_RequestCodeExtraIndex'>
-      <parameter type-id='type-id-64' name='free' filepath='Python/ceval.c' line='6435' column='1'/>
-      <return type-id='type-id-30'/>
+    <function-decl name='_PyEval_RequestCodeExtraIndex' mangled-name='_PyEval_RequestCodeExtraIndex' filepath='Python/ceval.c' line='6443' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_RequestCodeExtraIndex'>
+      <parameter type-id='type-id-65' name='free' filepath='Python/ceval.c' line='6443' column='1'/>
+      <return type-id='type-id-31'/>
     </function-decl>
-    <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='Python/ceval.c' line='5972' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'>
-      <parameter type-id='type-id-15' name='exc' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <parameter type-id='type-id-125' name='end' filepath='Objects/exceptions.c' line='1887' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_SliceIndexNotNone' mangled-name='_PyEval_SliceIndexNotNone' filepath='Python/ceval.c' line='5980' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndexNotNone'>
+      <parameter type-id='type-id-16' name='v' filepath='Python/ceval.c' line='5980' column='1'/>
+      <parameter type-id='type-id-125' name='pi' filepath='Python/ceval.c' line='5980' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='Python/ceval.c' line='5950' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndex'>
-      <parameter type-id='type-id-15' name='v' filepath='Python/ceval.c' line='5950' column='1'/>
-      <parameter type-id='type-id-125' name='pi' filepath='Python/ceval.c' line='5950' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_SliceIndex' mangled-name='_PyEval_SliceIndex' filepath='Python/ceval.c' line='5958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SliceIndex'>
+      <parameter type-id='type-id-16' name='v' filepath='Python/ceval.c' line='5958' column='1'/>
+      <parameter type-id='type-id-125' name='pi' filepath='Python/ceval.c' line='5958' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyEval_GetFuncDesc' mangled-name='PyEval_GetFuncDesc' filepath='Python/ceval.c' line='5790' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncDesc'>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/exceptions.c' line='368' column='1'/>
+    <function-decl name='PyEval_GetFuncDesc' mangled-name='PyEval_GetFuncDesc' filepath='Python/ceval.c' line='5798' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncDesc'>
+      <parameter type-id='type-id-16' name='func' filepath='Python/ceval.c' line='5798' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='PyEval_GetFuncName' mangled-name='PyEval_GetFuncName' filepath='Python/ceval.c' line='5777' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncName'>
-      <parameter type-id='type-id-15' name='ob' filepath='Objects/exceptions.c' line='368' column='1'/>
+    <function-decl name='PyEval_GetFuncName' mangled-name='PyEval_GetFuncName' filepath='Python/ceval.c' line='5785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFuncName'>
+      <parameter type-id='type-id-16' name='func' filepath='Python/ceval.c' line='5785' column='1'/>
       <return type-id='type-id-3'/>
     </function-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-520' visibility='default' filepath='./Include/cpython/compile.h' line='24' column='1' id='type-id-521'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='cf_flags' type-id='type-id-8' visibility='default' filepath='./Include/cpython/compile.h' line='25' column='1'/>
+        <var-decl name='cf_flags' type-id='type-id-9' visibility='default' filepath='./Include/cpython/compile.h' line='25' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='cf_feature_version' type-id='type-id-8' visibility='default' filepath='./Include/cpython/compile.h' line='26' column='1'/>
+        <var-decl name='cf_feature_version' type-id='type-id-9' visibility='default' filepath='./Include/cpython/compile.h' line='26' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyCompilerFlags' type-id='type-id-521' filepath='./Include/cpython/compile.h' line='27' column='1' id='type-id-520'/>
     <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-522'/>
-    <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='Python/ceval.c' line='5752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_MergeCompilerFlags'>
-      <parameter type-id='type-id-522' name='cf' filepath='Python/ceval.c' line='5752' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyEval_MergeCompilerFlags' mangled-name='PyEval_MergeCompilerFlags' filepath='Python/ceval.c' line='5760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_MergeCompilerFlags'>
+      <parameter type-id='type-id-522' name='cf' filepath='Python/ceval.c' line='5760' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='Python/ceval.c' line='5739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyEval_GetGlobals' mangled-name='PyEval_GetGlobals' filepath='Python/ceval.c' line='5747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetGlobals'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='Python/ceval.c' line='5721' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetLocals'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyEval_GetLocals' mangled-name='PyEval_GetLocals' filepath='Python/ceval.c' line='5729' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetLocals'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='Python/ceval.c' line='5707' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetBuiltinId'>
-      <parameter type-id='type-id-453' name='name' filepath='Python/ceval.c' line='5707' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyEval_GetBuiltinId' mangled-name='_PyEval_GetBuiltinId' filepath='Python/ceval.c' line='5715' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetBuiltinId'>
+      <parameter type-id='type-id-453' name='name' filepath='Python/ceval.c' line='5715' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='Python/ceval.c' line='5699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetBuiltins'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyEval_GetBuiltins' mangled-name='PyEval_GetBuiltins' filepath='Python/ceval.c' line='5707' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetBuiltins'>
+      <return type-id='type-id-16'/>
     </function-decl>
     <class-decl name='_frame' size-in-bits='2880' is-struct='yes' visibility='default' filepath='./Include/cpython/frameobject.h' line='28' column='1' id='type-id-523'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-36' visibility='default' filepath='./Include/cpython/frameobject.h' line='29' column='1'/>
+        <var-decl name='ob_base' type-id='type-id-37' visibility='default' filepath='./Include/cpython/frameobject.h' line='29' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
         <var-decl name='f_back' type-id='type-id-333' visibility='default' filepath='./Include/cpython/frameobject.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='f_code' type-id='type-id-422' visibility='default' filepath='./Include/cpython/frameobject.h' line='31' column='1'/>
+        <var-decl name='f_code' type-id='type-id-418' visibility='default' filepath='./Include/cpython/frameobject.h' line='31' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='f_builtins' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='32' column='1'/>
+        <var-decl name='f_builtins' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='f_globals' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='33' column='1'/>
+        <var-decl name='f_globals' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='33' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='f_locals' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='34' column='1'/>
+        <var-decl name='f_locals' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='34' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='f_valuestack' type-id='type-id-86' visibility='default' filepath='./Include/cpython/frameobject.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='f_trace' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='36' column='1'/>
+        <var-decl name='f_trace' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='36' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='f_stackdepth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='37' column='1'/>
+        <var-decl name='f_stackdepth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='37' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='672'>
         <var-decl name='f_trace_lines' type-id='type-id-1' visibility='default' filepath='./Include/cpython/frameobject.h' line='38' column='1'/>
@@ -9959,16 +12399,16 @@
         <var-decl name='f_trace_opcodes' type-id='type-id-1' visibility='default' filepath='./Include/cpython/frameobject.h' line='39' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='f_gen' type-id='type-id-15' visibility='default' filepath='./Include/cpython/frameobject.h' line='42' column='1'/>
+        <var-decl name='f_gen' type-id='type-id-16' visibility='default' filepath='./Include/cpython/frameobject.h' line='42' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='f_lasti' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='44' column='1'/>
+        <var-decl name='f_lasti' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='44' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='800'>
-        <var-decl name='f_lineno' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='45' column='1'/>
+        <var-decl name='f_lineno' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='45' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='f_iblock' type-id='type-id-8' visibility='default' filepath='./Include/cpython/frameobject.h' line='46' column='1'/>
+        <var-decl name='f_iblock' type-id='type-id-9' visibility='default' filepath='./Include/cpython/frameobject.h' line='46' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='864'>
         <var-decl name='f_state' type-id='type-id-335' visibility='default' filepath='./Include/cpython/frameobject.h' line='47' column='1'/>
@@ -9982,32 +12422,32 @@
     </class-decl>
     <typedef-decl name='PyFrameObject' type-id='type-id-523' filepath='./Include/pyframe.h' line='12' column='1' id='type-id-524'/>
     <pointer-type-def type-id='type-id-524' size-in-bits='64' id='type-id-525'/>
-    <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='Python/ceval.c' line='5682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFrame'>
+    <function-decl name='PyEval_GetFrame' mangled-name='PyEval_GetFrame' filepath='Python/ceval.c' line='5690' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_GetFrame'>
       <return type-id='type-id-525'/>
     </function-decl>
-    <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='Python/ceval.c' line='5675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFinalizer'>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='Python/ceval.c' line='5683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFinalizer'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='Python/ceval.c' line='5661' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFinalizer'>
-      <parameter type-id='type-id-15' name='finalizer' filepath='Python/ceval.c' line='5661' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='Python/ceval.c' line='5669' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFinalizer'>
+      <parameter type-id='type-id-16' name='finalizer' filepath='Python/ceval.c' line='5669' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='Python/ceval.c' line='5654' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFirstiter'>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='Python/ceval.c' line='5662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetAsyncGenFirstiter'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='Python/ceval.c' line='5640' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFirstiter'>
-      <parameter type-id='type-id-15' name='finalizer' filepath='Python/ceval.c' line='5661' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='Python/ceval.c' line='5648' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetAsyncGenFirstiter'>
+      <parameter type-id='type-id-16' name='finalizer' filepath='Python/ceval.c' line='5669' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='5633' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineOriginTrackingDepth'>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='5641' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetCoroutineOriginTrackingDepth'>
+      <return type-id='type-id-9'/>
     </function-decl>
     <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-526'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='prev' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
+        <var-decl name='prev' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='next' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
+        <var-decl name='next' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='interp' type-id='type-id-222' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
@@ -10016,91 +12456,91 @@
         <var-decl name='frame' type-id='type-id-525' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
+        <var-decl name='recursion_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='recursion_headroom' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
+        <var-decl name='recursion_headroom' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
+        <var-decl name='stackcheck_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
+        <var-decl name='tracing' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='cframe' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
+        <var-decl name='cframe' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='c_profilefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
+        <var-decl name='c_profilefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='c_tracefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
+        <var-decl name='c_tracefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='c_profileobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
+        <var-decl name='c_profileobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='c_traceobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
+        <var-decl name='c_traceobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='curexc_type' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
+        <var-decl name='curexc_type' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='curexc_value' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
+        <var-decl name='curexc_value' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='curexc_traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
+        <var-decl name='curexc_traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='exc_state' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
+        <var-decl name='exc_state' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='exc_info' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
+        <var-decl name='exc_info' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
+        <var-decl name='gilstate_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='async_exc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
+        <var-decl name='async_exc' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='thread_id' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
+        <var-decl name='thread_id' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
+        <var-decl name='trash_delete_nesting' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='trash_delete_later' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
+        <var-decl name='trash_delete_later' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='on_delete' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
+        <var-decl name='on_delete' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='on_delete_data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
+        <var-decl name='on_delete_data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
+        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='async_gen_firstiter' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
+        <var-decl name='async_gen_firstiter' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='async_gen_finalizer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
+        <var-decl name='async_gen_finalizer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='context' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
+        <var-decl name='context' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='context_ver' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
+        <var-decl name='context_ver' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='id' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
+        <var-decl name='id' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='root_cframe' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
+        <var-decl name='root_cframe' type-id='type-id-23' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_is' size-in-bits='908160' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='220' column='1' id='type-id-527'>
@@ -10108,7 +12548,7 @@
         <var-decl name='next' type-id='type-id-225' visibility='default' filepath='./Include/internal/pycore_interp.h' line='222' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tstate_head' type-id='type-id-10' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
+        <var-decl name='tstate_head' type-id='type-id-11' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='runtime' type-id='type-id-528' visibility='default' filepath='./Include/internal/pycore_interp.h' line='228' column='1'/>
@@ -10120,13 +12560,13 @@
         <var-decl name='id_refcount' type-id='type-id-227' visibility='default' filepath='./Include/internal/pycore_interp.h' line='231' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='requires_idref' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
+        <var-decl name='requires_idref' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='id_mutex' type-id='type-id-228' visibility='default' filepath='./Include/internal/pycore_interp.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='finalizing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
+        <var-decl name='finalizing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='ceval' type-id='type-id-229' visibility='default' filepath='./Include/internal/pycore_interp.h' line='237' column='1'/>
@@ -10135,73 +12575,73 @@
         <var-decl name='gc' type-id='type-id-230' visibility='default' filepath='./Include/internal/pycore_interp.h' line='238' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6848'>
-        <var-decl name='modules' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
+        <var-decl name='modules' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6912'>
-        <var-decl name='modules_by_index' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
+        <var-decl name='modules_by_index' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6976'>
-        <var-decl name='sysdict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
+        <var-decl name='sysdict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7040'>
-        <var-decl name='builtins' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
+        <var-decl name='builtins' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7104'>
-        <var-decl name='importlib' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
+        <var-decl name='importlib' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7168'>
-        <var-decl name='num_threads' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
+        <var-decl name='num_threads' type-id='type-id-33' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7232'>
         <var-decl name='pythread_stacksize' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_interp.h' line='256' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7296'>
-        <var-decl name='codec_search_path' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
+        <var-decl name='codec_search_path' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7360'>
-        <var-decl name='codec_search_cache' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
+        <var-decl name='codec_search_cache' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7424'>
-        <var-decl name='codec_error_registry' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
+        <var-decl name='codec_error_registry' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7488'>
-        <var-decl name='codecs_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
+        <var-decl name='codecs_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7552'>
         <var-decl name='config' type-id='type-id-231' visibility='default' filepath='./Include/internal/pycore_interp.h' line='263' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10688'>
-        <var-decl name='dlopenflags' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
+        <var-decl name='dlopenflags' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10752'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10816'>
-        <var-decl name='builtins_copy' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
+        <var-decl name='builtins_copy' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10880'>
-        <var-decl name='import_func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
+        <var-decl name='import_func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10944'>
         <var-decl name='eval_frame' type-id='type-id-232' visibility='default' filepath='./Include/internal/pycore_interp.h' line='273' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11008'>
-        <var-decl name='co_extra_user_count' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
+        <var-decl name='co_extra_user_count' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11072'>
         <var-decl name='co_extra_freefuncs' type-id='type-id-233' visibility='default' filepath='./Include/internal/pycore_interp.h' line='276' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27392'>
-        <var-decl name='before_forkers' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
+        <var-decl name='before_forkers' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27456'>
-        <var-decl name='after_forkers_parent' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
+        <var-decl name='after_forkers_parent' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27520'>
-        <var-decl name='after_forkers_child' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
+        <var-decl name='after_forkers_child' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27584'>
-        <var-decl name='tstate_next_unique_id' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
+        <var-decl name='tstate_next_unique_id' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27648'>
         <var-decl name='warnings' type-id='type-id-234' visibility='default' filepath='./Include/internal/pycore_interp.h' line='286' column='1'/>
@@ -10210,7 +12650,7 @@
         <var-decl name='atexit' type-id='type-id-235' visibility='default' filepath='./Include/internal/pycore_interp.h' line='287' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28032'>
-        <var-decl name='audit_hooks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
+        <var-decl name='audit_hooks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28096'>
         <var-decl name='small_ints' type-id='type-id-236' visibility='default' filepath='./Include/internal/pycore_interp.h' line='296' column='1'/>
@@ -10257,16 +12697,16 @@
     </class-decl>
     <class-decl name='pyruntimestate' size-in-bits='5376' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='61' column='1' id='type-id-530'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='preinitializing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='63' column='1'/>
+        <var-decl name='preinitializing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='preinitialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='66' column='1'/>
+        <var-decl name='preinitialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='core_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='69' column='1'/>
+        <var-decl name='core_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='69' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='72' column='1'/>
+        <var-decl name='initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='_finalizing' type-id='type-id-251' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='79' column='1'/>
@@ -10278,13 +12718,13 @@
         <var-decl name='xidregistry' type-id='type-id-253' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='99' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='main_thread' type-id='type-id-18' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='101' column='1'/>
+        <var-decl name='main_thread' type-id='type-id-19' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='101' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='640'>
         <var-decl name='exitfuncs' type-id='type-id-254' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='104' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2688'>
-        <var-decl name='nexitfuncs' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/>
+        <var-decl name='nexitfuncs' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='105' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='2752'>
         <var-decl name='ceval' type-id='type-id-255' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='107' column='1'/>
@@ -10299,7 +12739,7 @@
         <var-decl name='open_code_hook' type-id='type-id-258' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5120'>
-        <var-decl name='open_code_userdata' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1'/>
+        <var-decl name='open_code_userdata' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='115' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='5184'>
         <var-decl name='audit_hook_head' type-id='type-id-531' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='116' column='1'/>
@@ -10315,290 +12755,489 @@
         <var-decl name='free_list' type-id='type-id-525' visibility='default' filepath='./Include/internal/pycore_interp.h' line='139' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='numfree' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
+        <var-decl name='numfree' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='141' column='1'/>
       </data-member>
     </class-decl>
     <typedef-decl name='PyThreadState' type-id='type-id-526' filepath='./Include/pystate.h' line='20' column='1' id='type-id-532'/>
     <pointer-type-def type-id='type-id-532' size-in-bits='64' id='type-id-533'/>
-    <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='5626' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineOriginTrackingDepth'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5626' column='1'/>
-      <parameter type-id='type-id-8' name='new_depth' filepath='Python/ceval.c' line='5626' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='Python/ceval.c' line='5615' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetTrace'>
-      <parameter type-id='type-id-14' name='func' filepath='Python/ceval.c' line='5615' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Python/ceval.c' line='5615' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='Python/ceval.c' line='5582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetTrace'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5582' column='1'/>
-      <parameter type-id='type-id-14' name='func' filepath='Python/ceval.c' line='5582' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Python/ceval.c' line='5582' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyEval_SetProfile' mangled-name='PyEval_SetProfile' filepath='Python/ceval.c' line='5572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetProfile'>
-      <parameter type-id='type-id-14' name='func' filepath='Python/ceval.c' line='5615' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Python/ceval.c' line='5615' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='Python/ceval.c' line='5541' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetProfile'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5582' column='1'/>
-      <parameter type-id='type-id-14' name='func' filepath='Python/ceval.c' line='5582' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Python/ceval.c' line='5582' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='Python/ceval.c' line='5496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_CallTracing'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/dictobject.c' line='1506' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyEval_EvalCodeEx' mangled-name='PyEval_EvalCodeEx' filepath='Python/ceval.c' line='5094' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCodeEx'>
-      <parameter type-id='type-id-15' name='_co' filepath='Python/ceval.c' line='5094' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/ceval.c' line='5094' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/ceval.c' line='5094' column='1'/>
-      <parameter type-id='type-id-156' name='args' filepath='Python/ceval.c' line='5095' column='1'/>
-      <parameter type-id='type-id-8' name='argcount' filepath='Python/ceval.c' line='5095' column='1'/>
-      <parameter type-id='type-id-156' name='kws' filepath='Python/ceval.c' line='5096' column='1'/>
-      <parameter type-id='type-id-8' name='kwcount' filepath='Python/ceval.c' line='5096' column='1'/>
-      <parameter type-id='type-id-156' name='defs' filepath='Python/ceval.c' line='5097' column='1'/>
-      <parameter type-id='type-id-8' name='defcount' filepath='Python/ceval.c' line='5097' column='1'/>
-      <parameter type-id='type-id-15' name='kwdefs' filepath='Python/ceval.c' line='5098' column='1'/>
-      <parameter type-id='type-id-15' name='closure' filepath='Python/ceval.c' line='5098' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyEval_EvalFrameDefault' mangled-name='_PyEval_EvalFrameDefault' filepath='Python/ceval.c' line='1578' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_EvalFrameDefault'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='1578' column='1'/>
-      <parameter type-id='type-id-525' name='f' filepath='Python/ceval.c' line='1578' column='1'/>
-      <parameter type-id='type-id-8' name='throwflag' filepath='Python/ceval.c' line='1578' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='Python/ceval.c' line='5634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetCoroutineOriginTrackingDepth'>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5634' column='1'/>
+      <parameter type-id='type-id-9' name='new_depth' filepath='Python/ceval.c' line='5634' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='Python/ceval.c' line='5623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetTrace'>
+      <parameter type-id='type-id-15' name='func' filepath='Python/ceval.c' line='5623' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/ceval.c' line='5623' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='Python/ceval.c' line='5590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetTrace'>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5590' column='1'/>
+      <parameter type-id='type-id-15' name='func' filepath='Python/ceval.c' line='5590' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/ceval.c' line='5590' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyEval_SetProfile' mangled-name='PyEval_SetProfile' filepath='Python/ceval.c' line='5580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SetProfile'>
+      <parameter type-id='type-id-15' name='func' filepath='Python/ceval.c' line='5623' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/ceval.c' line='5623' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='Python/ceval.c' line='5549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetProfile'>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='5590' column='1'/>
+      <parameter type-id='type-id-15' name='func' filepath='Python/ceval.c' line='5590' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/ceval.c' line='5590' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='Python/ceval.c' line='5504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_CallTracing'>
+      <parameter type-id='type-id-16' name='func' filepath='Python/ceval.c' line='5504' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Python/ceval.c' line='5504' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyEval_EvalFrameDefault' mangled-name='_PyEval_EvalFrameDefault' filepath='Python/ceval.c' line='1577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_EvalFrameDefault'>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='1577' column='1'/>
+      <parameter type-id='type-id-525' name='f' filepath='Python/ceval.c' line='1577' column='1'/>
+      <parameter type-id='type-id-9' name='throwflag' filepath='Python/ceval.c' line='1577' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_EvalFrameEx' mangled-name='PyEval_EvalFrameEx' filepath='Python/ceval.c' line='1149' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalFrameEx'>
       <parameter type-id='type-id-525' name='f' filepath='Python/ceval.c' line='1149' column='1'/>
-      <parameter type-id='type-id-8' name='throwflag' filepath='Python/ceval.c' line='1149' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='throwflag' filepath='Python/ceval.c' line='1149' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_EvalFrame' mangled-name='PyEval_EvalFrame' filepath='Python/ceval.c' line='1141' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalFrame'>
       <parameter type-id='type-id-525' name='f' filepath='Python/ceval.c' line='1141' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyEval_EvalCode' mangled-name='PyEval_EvalCode' filepath='Python/ceval.c' line='1114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_EvalCode'>
-      <parameter type-id='type-id-15' name='co' filepath='Python/ceval.c' line='1114' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/ceval.c' line='1114' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/ceval.c' line='1114' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='Python/ceval.c' line='860' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckRecursiveCall'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='860' column='1'/>
-      <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='860' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='co' filepath='Python/ceval.c' line='1114' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Python/ceval.c' line='1114' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Python/ceval.c' line='1114' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='Py_SetRecursionLimit' mangled-name='Py_SetRecursionLimit' filepath='Python/ceval.c' line='848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetRecursionLimit'>
-      <parameter type-id='type-id-8' name='new_limit' filepath='Python/ceval.c' line='848' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-9' name='new_limit' filepath='Python/ceval.c' line='848' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='Py_GetRecursionLimit' mangled-name='Py_GetRecursionLimit' filepath='Python/ceval.c' line='841' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetRecursionLimit'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_MakePendingCalls' mangled-name='Py_MakePendingCalls' filepath='Python/ceval.c' line='774' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_MakePendingCalls'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='Py_AddPendingCall' mangled-name='Py_AddPendingCall' filepath='Python/ceval.c' line='653' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_AddPendingCall'>
       <parameter type-id='type-id-313' name='func' filepath='Python/ceval.c' line='653' column='1'/>
-      <parameter type-id='type-id-20' name='arg' filepath='Python/ceval.c' line='653' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-21' name='arg' filepath='Python/ceval.c' line='653' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyEval_AddPendingCall' mangled-name='_PyEval_AddPendingCall' filepath='Python/ceval.c' line='634' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_AddPendingCall'>
       <parameter type-id='type-id-222' name='interp' filepath='Python/ceval.c' line='634' column='1'/>
       <parameter type-id='type-id-313' name='func' filepath='Python/ceval.c' line='635' column='1'/>
-      <parameter type-id='type-id-20' name='arg' filepath='Python/ceval.c' line='635' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-21' name='arg' filepath='Python/ceval.c' line='635' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyEval_SignalReceived' mangled-name='_PyEval_SignalReceived' filepath='Python/ceval.c' line='577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SignalReceived'>
       <parameter type-id='type-id-222' name='interp' filepath='Python/ceval.c' line='577' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_RestoreThread' mangled-name='PyEval_RestoreThread' filepath='Python/ceval.c' line='543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_RestoreThread'>
       <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='543' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_SaveThread' mangled-name='PyEval_SaveThread' filepath='Python/ceval.c' line='520' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_SaveThread'>
       <return type-id='type-id-533'/>
     </function-decl>
     <function-decl name='_PyEval_SignalAsyncExc' mangled-name='_PyEval_SignalAsyncExc' filepath='Python/ceval.c' line='514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SignalAsyncExc'>
       <parameter type-id='type-id-222' name='interp' filepath='Python/ceval.c' line='514' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_ReleaseThread' mangled-name='PyEval_ReleaseThread' filepath='Python/ceval.c' line='464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReleaseThread'>
       <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='464' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_AcquireThread' mangled-name='PyEval_AcquireThread' filepath='Python/ceval.c' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_AcquireThread'>
-      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='543' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='447' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_ReleaseLock' mangled-name='PyEval_ReleaseLock' filepath='Python/ceval.c' line='426' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ReleaseLock'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_AcquireLock' mangled-name='PyEval_AcquireLock' filepath='Python/ceval.c' line='416' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_AcquireLock'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_InitThreads' mangled-name='PyEval_InitThreads' filepath='Python/ceval.c' line='362' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_InitThreads'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyEval_ThreadsInitialized' mangled-name='PyEval_ThreadsInitialized' filepath='Python/ceval.c' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyEval_ThreadsInitialized'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_Py_FatalError_TstateNULL' mangled-name='_Py_FatalError_TstateNULL' filepath='Python/ceval.c' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalError_TstateNULL'>
       <parameter type-id='type-id-3' name='func' filepath='Python/ceval.c' line='269' column='1'/>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyEval_GetSwitchInterval' mangled-name='_PyEval_GetSwitchInterval' filepath='Python/ceval_gil.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_GetSwitchInterval'>
-      <return type-id='type-id-18'/>
+      <return type-id='type-id-19'/>
     </function-decl>
     <function-decl name='_PyEval_SetSwitchInterval' mangled-name='_PyEval_SetSwitchInterval' filepath='Python/ceval_gil.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyEval_SetSwitchInterval'>
-      <parameter type-id='type-id-18' name='microseconds' filepath='Python/ceval_gil.h' line='329' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-19' name='microseconds' filepath='Python/ceval_gil.h' line='329' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_CheckRecursiveCall' mangled-name='_Py_CheckRecursiveCall' filepath='Python/ceval.c' line='860' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CheckRecursiveCall'>
+      <parameter type-id='type-id-533' name='tstate' filepath='Python/ceval.c' line='860' column='1'/>
+      <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='860' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Append' mangled-name='PyUnicode_Append' filepath='./Include/unicodeobject.h' line='827' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCode_CheckLineNumber' mangled-name='_PyCode_CheckLineNumber' filepath='./Include/cpython/code.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_FastToLocalsWithError' mangled-name='PyFrame_FastToLocalsWithError' filepath='./Include/cpython/frameobject.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='./Include/internal/pycore_pyerrors.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_Audit' mangled-name='_PySys_Audit' filepath='./Include/internal/pycore_sysmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='./Include/internal/pycore_pyerrors.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCell_New' mangled-name='PyCell_New' filepath='./Include/cellobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFrame_New_NoTrack' mangled-name='_PyFrame_New_NoTrack' filepath='./Include/cpython/frameobject.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Concat' mangled-name='PyUnicode_Concat' filepath='./Include/unicodeobject.h' line='819' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Format' mangled-name='PyUnicode_Format' filepath='./Include/unicodeobject.h' line='1022' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyException_SetCause' mangled-name='PyException_SetCause' filepath='./Include/pyerrors.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='./Include/cpython/pyerrors.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGen_yf' mangled-name='_PyGen_yf' filepath='./Include/genobject.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyIter_Send' mangled-name='PyIter_Send' filepath='./Include/abstract.h' line='408' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAsyncGenValueWrapperNew' mangled-name='_PyAsyncGenValueWrapperNew' filepath='./Include/genobject.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_BlockPop' mangled-name='PyFrame_BlockPop' filepath='./Include/cpython/frameobject.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_LoadGlobal' mangled-name='_PyDict_LoadGlobal' filepath='./Include/cpython/dictobject.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_JoinArray' mangled-name='_PyUnicode_JoinArray' filepath='./Include/cpython/unicodeobject.h' line='992' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_MergeEx' mangled-name='_PyDict_MergeEx' filepath='./Include/cpython/dictobject.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_GetItemHint' mangled-name='_PyDict_GetItemHint' filepath='./Include/cpython/dictobject.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_LocalsToFast' mangled-name='PyFrame_LocalsToFast' filepath='./Include/cpython/frameobject.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyModuleSpec_IsInitializing' mangled-name='_PyModuleSpec_IsInitializing' filepath='./Include/moduleobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='./Include/pyerrors.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyModule_GetFilenameObject' mangled-name='PyModule_GetFilenameObject' filepath='./Include/moduleobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySet_Contains' mangled-name='PySet_Contains' filepath='./Include/setobject.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_BlockSetup' mangled-name='PyFrame_BlockSetup' filepath='./Include/cpython/frameobject.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_FastCallDictTstate' mangled-name='_PyObject_FastCallDictTstate' filepath='./Include/internal/pycore_call.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFunction_NewWithQualName' mangled-name='PyFunction_NewWithQualName' filepath='./Include/funcobject.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySlice_New' mangled-name='PySlice_New' filepath='./Include/sliceobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyException_SetTraceback' mangled-name='PyException_SetTraceback' filepath='./Include/pyerrors.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='./Include/pythread.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Include/internal/pycore_pyerrors.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='./Include/internal/pycore_pyerrors.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_Swap' mangled-name='_PyThreadState_Swap' filepath='./Include/internal/pycore_pystate.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCode_InitOpcache' mangled-name='_PyCode_InitOpcache' filepath='./Include/internal/pycore_code.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTraceBack_Here' mangled-name='PyTraceBack_Here' filepath='./Include/traceback.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyAsyncGen_New' mangled-name='PyAsyncGen_New' filepath='./Include/genobject.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGen_NewWithQualName' mangled-name='PyGen_NewWithQualName' filepath='./Include/genobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCoro_New' mangled-name='PyCoro_New' filepath='./Include/genobject.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='./Include/pythread.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='./Include/internal/pycore_pylifecycle.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='./Include/pystate.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='./Include/pythread.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='./Include/internal/pycore_pystate.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_cond_destroy' mangled-name='pthread_cond_destroy' filepath='/usr/include/pthread.h' line='970' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_mutex_destroy' mangled-name='pthread_mutex_destroy' filepath='/usr/include/pthread.h' line='730' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_init_thread' mangled-name='PyThread_init_thread' filepath='./Include/pythread.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_cond_after' mangled-name='_PyThread_cond_after' filepath='Python/condvar.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_cond_timedwait' mangled-name='pthread_cond_timedwait' filepath='/usr/include/pthread.h' line='997' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_mutex_unlock' mangled-name='pthread_mutex_unlock' filepath='/usr/include/pthread.h' line='756' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_mutex_lock' mangled-name='pthread_mutex_lock' filepath='/usr/include/pthread.h' line='738' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_cond_signal' mangled-name='pthread_cond_signal' filepath='/usr/include/pthread.h' line='974' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_exit_thread' mangled-name='PyThread_exit_thread' filepath='./Include/pythread.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_cond_wait' mangled-name='pthread_cond_wait' filepath='/usr/include/pthread.h' line='986' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_mutex_init' mangled-name='pthread_mutex_init' filepath='/usr/include/pthread.h' line='725' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_cond_init' mangled-name='_PyThread_cond_init' filepath='Python/condvar.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/codecs.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='Py_hexdigits' type-id='type-id-3' mangled-name='Py_hexdigits' visibility='default' filepath='./Include/codecs.h' line='242' column='1' elf-symbol-id='Py_hexdigits'/>
     <function-decl name='PyCodec_NameReplaceErrors' mangled-name='PyCodec_NameReplaceErrors' filepath='Python/codecs.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_NameReplaceErrors'>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/codecs.c' line='959' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/codecs.c' line='959' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_BackslashReplaceErrors' mangled-name='PyCodec_BackslashReplaceErrors' filepath='Python/codecs.c' line='850' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_BackslashReplaceErrors'>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/codecs.c' line='850' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/codecs.c' line='850' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_XMLCharRefReplaceErrors' mangled-name='PyCodec_XMLCharRefReplaceErrors' filepath='Python/codecs.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_XMLCharRefReplaceErrors'>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/codecs.c' line='959' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/codecs.c' line='959' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_ReplaceErrors' mangled-name='PyCodec_ReplaceErrors' filepath='Python/codecs.c' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_ReplaceErrors'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/dictobject.c' line='2749' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/codecs.c' line='699' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_IgnoreErrors' mangled-name='PyCodec_IgnoreErrors' filepath='Python/codecs.c' line='675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IgnoreErrors'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='Python/codecs.c' line='665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StrictErrors'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/codecs.c' line='675' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='Python/codecs.c' line='638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_LookupError'>
-      <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='Python/codecs.c' line='622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_RegisterError'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/>
-      <parameter type-id='type-id-15' name='error' filepath='Python/codecs.c' line='622' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='638' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyCodec_DecodeText' mangled-name='_PyCodec_DecodeText' filepath='Python/codecs.c' line='603' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_DecodeText'>
-      <parameter type-id='type-id-15' name='object' filepath='Python/codecs.c' line='603' column='1'/>
+      <parameter type-id='type-id-16' name='object' filepath='Python/codecs.c' line='603' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyCodec_EncodeText' mangled-name='_PyCodec_EncodeText' filepath='Python/codecs.c' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_EncodeText'>
-      <parameter type-id='type-id-15' name='object' filepath='Python/codecs.c' line='603' column='1'/>
+      <parameter type-id='type-id-16' name='object' filepath='Python/codecs.c' line='603' column='1'/>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyCodec_LookupTextEncoding' mangled-name='_PyCodec_LookupTextEncoding' filepath='Python/codecs.c' line='521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_LookupTextEncoding'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='521' column='1'/>
       <parameter type-id='type-id-3' name='alternate_command' filepath='Python/codecs.c' line='522' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='Python/codecs.c' line='507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Decode'>
-      <parameter type-id='type-id-15' name='object' filepath='Python/codecs.c' line='603' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='object' filepath='Python/codecs.c' line='507' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='508' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='509' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_Encode' mangled-name='PyCodec_Encode' filepath='Python/codecs.c' line='494' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encode'>
-      <parameter type-id='type-id-15' name='object' filepath='Python/codecs.c' line='603' column='1'/>
-      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='604' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='605' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='object' filepath='Python/codecs.c' line='507' column='1'/>
+      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='508' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='509' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_StreamWriter' mangled-name='PyCodec_StreamWriter' filepath='Python/codecs.c' line='379' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StreamWriter'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='379' column='1'/>
-      <parameter type-id='type-id-15' name='stream' filepath='Python/codecs.c' line='380' column='1'/>
+      <parameter type-id='type-id-16' name='stream' filepath='Python/codecs.c' line='380' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='381' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_StreamReader' mangled-name='PyCodec_StreamReader' filepath='Python/codecs.c' line='372' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StreamReader'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='379' column='1'/>
-      <parameter type-id='type-id-15' name='stream' filepath='Python/codecs.c' line='380' column='1'/>
+      <parameter type-id='type-id-16' name='stream' filepath='Python/codecs.c' line='380' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='381' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_IncrementalDecoder' mangled-name='PyCodec_IncrementalDecoder' filepath='Python/codecs.c' line='366' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IncrementalDecoder'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='366' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='367' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_IncrementalEncoder' mangled-name='PyCodec_IncrementalEncoder' filepath='Python/codecs.c' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_IncrementalEncoder'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='366' column='1'/>
       <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='367' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_Decoder' mangled-name='PyCodec_Decoder' filepath='Python/codecs.c' line='355' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Decoder'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_Encoder' mangled-name='PyCodec_Encoder' filepath='Python/codecs.c' line='350' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Encoder'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyCodecInfo_GetIncrementalEncoder' mangled-name='_PyCodecInfo_GetIncrementalEncoder' filepath='Python/codecs.c' line='336' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalEncoder'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='codec_info' filepath='Python/codecs.c' line='336' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='337' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyCodecInfo_GetIncrementalDecoder' mangled-name='_PyCodecInfo_GetIncrementalDecoder' filepath='Python/codecs.c' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodecInfo_GetIncrementalDecoder'>
-      <parameter type-id='type-id-15' name='unicode' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Objects/unicodeobject.c' line='7445' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='codec_info' filepath='Python/codecs.c' line='336' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='337' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_KnownEncoding' mangled-name='PyCodec_KnownEncoding' filepath='Python/codecs.c' line='213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_KnownEncoding'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='213' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyCodec_Lookup' mangled-name='_PyCodec_Lookup' filepath='Python/codecs.c' line='126' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCodec_Lookup'>
       <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='126' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCodec_Unregister' mangled-name='PyCodec_Unregister' filepath='Python/codecs.c' line='54' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Unregister'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/fileobject.c' line='180' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='search_function' filepath='Python/codecs.c' line='54' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCodec_Register' mangled-name='PyCodec_Register' filepath='Python/codecs.c' line='34' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_Register'>
-      <parameter type-id='type-id-15' name='search_function' filepath='Python/codecs.c' line='34' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='search_function' filepath='Python/codecs.c' line='34' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='Python/codecs.c' line='622' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_RegisterError'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/>
+      <parameter type-id='type-id-16' name='error' filepath='Python/codecs.c' line='622' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyCodec_StrictErrors' mangled-name='PyCodec_StrictErrors' filepath='Python/codecs.c' line='665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCodec_StrictErrors'>
+      <parameter type-id='type-id-16' name='mp' filepath='Objects/dictobject.c' line='2872' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetStart' mangled-name='PyUnicodeEncodeError_GetStart' filepath='./Include/pyerrors.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetEnd' mangled-name='PyUnicodeEncodeError_GetEnd' filepath='./Include/pyerrors.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetObject' mangled-name='PyUnicodeEncodeError_GetObject' filepath='./Include/pyerrors.h' line='262' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_GetStart' mangled-name='PyUnicodeDecodeError_GetStart' filepath='./Include/pyerrors.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_GetEnd' mangled-name='PyUnicodeDecodeError_GetEnd' filepath='./Include/pyerrors.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FromKindAndData' mangled-name='PyUnicode_FromKindAndData' filepath='./Include/cpython/unicodeobject.h' line='558' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeEncodeError_GetEncoding' mangled-name='PyUnicodeEncodeError_GetEncoding' filepath='./Include/pyerrors.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeDecodeError_GetEncoding' mangled-name='PyUnicodeDecodeError_GetEncoding' filepath='./Include/pyerrors.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_GetStart' mangled-name='PyUnicodeTranslateError_GetStart' filepath='./Include/pyerrors.h' line='270' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_GetEnd' mangled-name='PyUnicodeTranslateError_GetEnd' filepath='./Include/pyerrors.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicodeTranslateError_GetObject' mangled-name='PyUnicodeTranslateError_GetObject' filepath='./Include/pyerrors.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_TrySetFromCause' mangled-name='_PyErr_TrySetFromCause' filepath='./Include/cpython/pyerrors.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_normalize_encoding' mangled-name='_Py_normalize_encoding' filepath='Python/codecs.c' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_Size' mangled-name='PyList_Size' filepath='./Include/listobject.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Get' mangled-name='PyInterpreterState_Get' filepath='./Include/pystate.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/compile.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyCode_Optimize' mangled-name='PyCode_Optimize' filepath='Python/compile.c' line='7879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Optimize'>
-      <parameter type-id='type-id-15' name='code' filepath='Python/compile.c' line='7879' column='1'/>
-      <parameter type-id='type-id-15' name='_unused_consts' filepath='Python/compile.c' line='7879' column='1'/>
-      <parameter type-id='type-id-15' name='_unused_names' filepath='Python/compile.c' line='7880' column='1'/>
-      <parameter type-id='type-id-15' name='_unused_lnotab_obj' filepath='Python/compile.c' line='7880' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyCode_Optimize' mangled-name='PyCode_Optimize' filepath='Python/compile.c' line='7912' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCode_Optimize'>
+      <parameter type-id='type-id-16' name='code' filepath='Python/compile.c' line='7912' column='1'/>
+      <parameter type-id='type-id-16' name='_unused_consts' filepath='Python/compile.c' line='7912' column='1'/>
+      <parameter type-id='type-id-16' name='_unused_names' filepath='Python/compile.c' line='7913' column='1'/>
+      <parameter type-id='type-id-16' name='_unused_lnotab_obj' filepath='Python/compile.c' line='7913' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyCompile_OpcodeStackEffect' mangled-name='PyCompile_OpcodeStackEffect' filepath='Python/compile.c' line='1226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompile_OpcodeStackEffect'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='110' column='1'/>
-      <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='110' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='opcode' filepath='Python/compile.c' line='1226' column='1'/>
+      <parameter type-id='type-id-9' name='oparg' filepath='Python/compile.c' line='1226' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyCompile_OpcodeStackEffectWithJump' mangled-name='PyCompile_OpcodeStackEffectWithJump' filepath='Python/compile.c' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyCompile_OpcodeStackEffectWithJump'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='194' column='1'/>
-      <parameter type-id='type-id-8' name='c2' filepath='Parser/token.c' line='194' column='1'/>
-      <parameter type-id='type-id-8' name='c3' filepath='Parser/token.c' line='194' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='opcode' filepath='Python/compile.c' line='1220' column='1'/>
+      <parameter type-id='type-id-9' name='oparg' filepath='Python/compile.c' line='1220' column='1'/>
+      <parameter type-id='type-id-9' name='jump' filepath='Python/compile.c' line='1220' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <class-decl name='_mod' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='153' column='1' id='type-id-534'>
       <data-member access='public' layout-offset-in-bits='0'>
@@ -10639,10 +13278,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-543' visibility='default' filepath='./Include/internal/pycore_ast.h' line='62' column='1' id='type-id-544'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='63' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='63' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-545' visibility='default' filepath='./Include/internal/pycore_ast.h' line='64' column='1'/>
@@ -10656,16 +13295,16 @@
         <var-decl name='v' type-id='type-id-548' visibility='default' filepath='./Include/internal/pycore_ast.h' line='325' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='326' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='326' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='480'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='327' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='327' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='328' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='328' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='544'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='329' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='329' column='1'/>
       </data-member>
     </class-decl>
     <enum-decl name='_stmt_kind' filepath='./Include/internal/pycore_ast.h' line='177' column='1' id='type-id-547'>
@@ -10788,7 +13427,7 @@
         <var-decl name='type_comment' type-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_ast.h' line='194' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='identifier' type-id='type-id-15' filepath='./Include/internal/pycore_asdl.h' line='13' column='1' id='type-id-566'/>
+    <typedef-decl name='identifier' type-id='type-id-16' filepath='./Include/internal/pycore_asdl.h' line='13' column='1' id='type-id-566'/>
     <class-decl name='_arguments' size-in-bits='448' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='513' column='1' id='type-id-571'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='posonlyargs' type-id='type-id-572' visibility='default' filepath='./Include/internal/pycore_ast.h' line='514' column='1'/>
@@ -10814,10 +13453,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-574' visibility='default' filepath='./Include/internal/pycore_ast.h' line='99' column='1' id='type-id-575'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='100' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='100' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='100' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='100' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-576' visibility='default' filepath='./Include/internal/pycore_ast.h' line='101' column='1'/>
@@ -10834,16 +13473,16 @@
         <var-decl name='type_comment' type-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_ast.h' line='526' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='527' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='527' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='528' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='528' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='529' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='529' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='530' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='530' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='_expr' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='340' column='1' id='type-id-578'>
@@ -10854,16 +13493,16 @@
         <var-decl name='v' type-id='type-id-580' visibility='default' filepath='./Include/internal/pycore_ast.h' line='482' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='483' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='483' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='484' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='484' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='485' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='485' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='486' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='486' column='1'/>
       </data-member>
     </class-decl>
     <enum-decl name='_expr_kind' filepath='./Include/internal/pycore_ast.h' line='332' column='1' id='type-id-579'>
@@ -10995,10 +13634,10 @@
     <typedef-decl name='boolop_ty' type-id='type-id-603' filepath='./Include/internal/pycore_ast.h' line='23' column='1' id='type-id-602'/>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-604' visibility='default' filepath='./Include/internal/pycore_ast.h' line='69' column='1' id='type-id-605'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='70' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='70' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-606' visibility='default' filepath='./Include/internal/pycore_ast.h' line='71' column='1'/>
@@ -11008,7 +13647,7 @@
     <typedef-decl name='expr_ty' type-id='type-id-607' filepath='./Include/internal/pycore_ast.h' line='19' column='1' id='type-id-569'/>
 
     <array-type-def dimensions='1' type-id='type-id-569' size-in-bits='64' id='type-id-606'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_expr_seq' type-id='type-id-605' filepath='./Include/internal/pycore_ast.h' line='72' column='1' id='type-id-604'/>
@@ -11109,10 +13748,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-614' visibility='default' filepath='./Include/internal/pycore_ast.h' line='76' column='1' id='type-id-615'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='77' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='77' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='77' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='77' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-616' visibility='default' filepath='./Include/internal/pycore_ast.h' line='78' column='1'/>
@@ -11129,14 +13768,14 @@
         <var-decl name='ifs' type-id='type-id-568' visibility='default' filepath='./Include/internal/pycore_ast.h' line='492' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='is_async' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='493' column='1'/>
+        <var-decl name='is_async' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='493' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-617' size-in-bits='64' id='type-id-618'/>
     <typedef-decl name='comprehension_ty' type-id='type-id-618' filepath='./Include/internal/pycore_ast.h' line='34' column='1' id='type-id-619'/>
 
     <array-type-def dimensions='1' type-id='type-id-619' size-in-bits='64' id='type-id-616'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_comprehension_seq' type-id='type-id-615' filepath='./Include/internal/pycore_ast.h' line='79' column='1' id='type-id-614'/>
@@ -11170,18 +13809,18 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-621' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='42' column='1' id='type-id-622'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='43' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-623' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='44' column='1'/>
       </data-member>
     </class-decl>
 
-    <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='32' id='type-id-623'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+    <array-type-def dimensions='1' type-id='type-id-9' size-in-bits='32' id='type-id-623'>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_int_seq' type-id='type-id-622' filepath='./Include/internal/pycore_asdl.h' line='45' column='1' id='type-id-621'/>
@@ -11199,10 +13838,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-625' visibility='default' filepath='./Include/internal/pycore_ast.h' line='106' column='1' id='type-id-626'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='107' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='107' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='107' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-627' visibility='default' filepath='./Include/internal/pycore_ast.h' line='108' column='1'/>
@@ -11216,23 +13855,23 @@
         <var-decl name='value' type-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_ast.h' line='535' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='536' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='536' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='537' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='537' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='538' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='538' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='539' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='539' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-628' size-in-bits='64' id='type-id-629'/>
     <typedef-decl name='keyword_ty' type-id='type-id-629' filepath='./Include/internal/pycore_ast.h' line='42' column='1' id='type-id-630'/>
 
     <array-type-def dimensions='1' type-id='type-id-630' size-in-bits='64' id='type-id-627'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_keyword_seq' type-id='type-id-626' filepath='./Include/internal/pycore_ast.h' line='109' column='1' id='type-id-625'/>
@@ -11242,7 +13881,7 @@
         <var-decl name='value' type-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_ast.h' line='430' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='conversion' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='431' column='1'/>
+        <var-decl name='conversion' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='431' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='format_spec' type-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_ast.h' line='432' column='1'/>
@@ -11261,8 +13900,8 @@
         <var-decl name='kind' type-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_ast.h' line='441' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='constant' type-id='type-id-15' filepath='./Include/internal/pycore_asdl.h' line='16' column='1' id='type-id-631'/>
-    <typedef-decl name='string' type-id='type-id-15' filepath='./Include/internal/pycore_asdl.h' line='14' column='1' id='type-id-570'/>
+    <typedef-decl name='constant' type-id='type-id-16' filepath='./Include/internal/pycore_asdl.h' line='16' column='1' id='type-id-631'/>
+    <typedef-decl name='string' type-id='type-id-16' filepath='./Include/internal/pycore_asdl.h' line='14' column='1' id='type-id-570'/>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='444' column='1' id='type-id-596'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='value' type-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_ast.h' line='445' column='1'/>
@@ -11331,7 +13970,7 @@
     <typedef-decl name='arg_ty' type-id='type-id-634' filepath='./Include/internal/pycore_ast.h' line='40' column='1' id='type-id-573'/>
 
     <array-type-def dimensions='1' type-id='type-id-573' size-in-bits='64' id='type-id-576'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_arg_seq' type-id='type-id-575' filepath='./Include/internal/pycore_ast.h' line='102' column='1' id='type-id-574'/>
@@ -11393,7 +14032,7 @@
         <var-decl name='value' type-id='type-id-569' visibility='default' filepath='./Include/internal/pycore_ast.h' line='237' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='simple' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='238' column='1'/>
+        <var-decl name='simple' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='238' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='320' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='241' column='1' id='type-id-556'>
@@ -11437,10 +14076,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-636' visibility='default' filepath='./Include/internal/pycore_ast.h' line='120' column='1' id='type-id-637'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='121' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='121' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='121' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='121' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-638' visibility='default' filepath='./Include/internal/pycore_ast.h' line='122' column='1'/>
@@ -11458,7 +14097,7 @@
     <typedef-decl name='withitem_ty' type-id='type-id-640' filepath='./Include/internal/pycore_ast.h' line='46' column='1' id='type-id-641'/>
 
     <array-type-def dimensions='1' type-id='type-id-641' size-in-bits='64' id='type-id-638'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_withitem_seq' type-id='type-id-637' filepath='./Include/internal/pycore_ast.h' line='123' column='1' id='type-id-636'/>
@@ -11473,10 +14112,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-643' visibility='default' filepath='./Include/internal/pycore_ast.h' line='127' column='1' id='type-id-644'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='128' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='128' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='128' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='128' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-645' visibility='default' filepath='./Include/internal/pycore_ast.h' line='129' column='1'/>
@@ -11501,16 +14140,16 @@
         <var-decl name='v' type-id='type-id-650' visibility='default' filepath='./Include/internal/pycore_ast.h' line='607' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='608' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='608' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='609' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='609' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='610' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='610' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='416'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='611' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='611' column='1'/>
       </data-member>
     </class-decl>
     <enum-decl name='_pattern_kind' filepath='./Include/internal/pycore_ast.h' line='562' column='1' id='type-id-649'>
@@ -11562,10 +14201,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-658' visibility='default' filepath='./Include/internal/pycore_ast.h' line='135' column='1' id='type-id-659'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='136' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='136' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='136' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-660' visibility='default' filepath='./Include/internal/pycore_ast.h' line='137' column='1'/>
@@ -11575,7 +14214,7 @@
     <typedef-decl name='pattern_ty' type-id='type-id-661' filepath='./Include/internal/pycore_ast.h' line='50' column='1' id='type-id-647'/>
 
     <array-type-def dimensions='1' type-id='type-id-647' size-in-bits='64' id='type-id-660'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_pattern_seq' type-id='type-id-659' filepath='./Include/internal/pycore_ast.h' line='138' column='1' id='type-id-658'/>
@@ -11607,10 +14246,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-663' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='37' column='1' id='type-id-664'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='38' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='38' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='38' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-337' visibility='default' filepath='./Include/internal/pycore_asdl.h' line='39' column='1'/>
@@ -11635,7 +14274,7 @@
     <typedef-decl name='match_case_ty' type-id='type-id-665' filepath='./Include/internal/pycore_ast.h' line='48' column='1' id='type-id-666'/>
 
     <array-type-def dimensions='1' type-id='type-id-666' size-in-bits='64' id='type-id-645'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_match_case_seq' type-id='type-id-644' filepath='./Include/internal/pycore_ast.h' line='130' column='1' id='type-id-643'/>
@@ -11664,10 +14303,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-668' visibility='default' filepath='./Include/internal/pycore_ast.h' line='84' column='1' id='type-id-669'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='85' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='85' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='85' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-670' visibility='default' filepath='./Include/internal/pycore_ast.h' line='86' column='1'/>
@@ -11681,16 +14320,16 @@
         <var-decl name='v' type-id='type-id-673' visibility='default' filepath='./Include/internal/pycore_ast.h' line='506' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='507' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='507' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='508' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='508' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='509' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='509' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='510' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='510' column='1'/>
       </data-member>
     </class-decl>
     <enum-decl name='_excepthandler_kind' filepath='./Include/internal/pycore_ast.h' line='496' column='1' id='type-id-672'>
@@ -11717,7 +14356,7 @@
     <typedef-decl name='excepthandler_ty' type-id='type-id-675' filepath='./Include/internal/pycore_ast.h' line='36' column='1' id='type-id-676'/>
 
     <array-type-def dimensions='1' type-id='type-id-676' size-in-bits='64' id='type-id-670'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_excepthandler_seq' type-id='type-id-669' filepath='./Include/internal/pycore_ast.h' line='87' column='1' id='type-id-668'/>
@@ -11737,10 +14376,10 @@
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-678' visibility='default' filepath='./Include/internal/pycore_ast.h' line='113' column='1' id='type-id-679'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='114' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='114' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='114' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-680' visibility='default' filepath='./Include/internal/pycore_ast.h' line='115' column='1'/>
@@ -11754,23 +14393,23 @@
         <var-decl name='asname' type-id='type-id-566' visibility='default' filepath='./Include/internal/pycore_ast.h' line='544' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='545' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='545' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='546' column='1'/>
+        <var-decl name='col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='546' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='547' column='1'/>
+        <var-decl name='end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='547' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='548' column='1'/>
+        <var-decl name='end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='548' column='1'/>
       </data-member>
     </class-decl>
     <pointer-type-def type-id='type-id-681' size-in-bits='64' id='type-id-682'/>
     <typedef-decl name='alias_ty' type-id='type-id-682' filepath='./Include/internal/pycore_ast.h' line='44' column='1' id='type-id-683'/>
 
     <array-type-def dimensions='1' type-id='type-id-683' size-in-bits='64' id='type-id-680'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_alias_seq' type-id='type-id-679' filepath='./Include/internal/pycore_ast.h' line='116' column='1' id='type-id-678'/>
@@ -11783,7 +14422,7 @@
         <var-decl name='names' type-id='type-id-677' visibility='default' filepath='./Include/internal/pycore_ast.h' line='309' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='level' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='310' column='1'/>
+        <var-decl name='level' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='310' column='1'/>
       </data-member>
     </class-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='313' column='1' id='type-id-565'>
@@ -11795,15 +14434,15 @@
     <typedef-decl name='stmt_ty' type-id='type-id-684' filepath='./Include/internal/pycore_ast.h' line='17' column='1' id='type-id-685'/>
 
     <array-type-def dimensions='1' type-id='type-id-685' size-in-bits='64' id='type-id-545'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-686' visibility='default' filepath='./Include/internal/pycore_ast.h' line='142' column='1' id='type-id-687'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='size' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_ast.h' line='143' column='1'/>
+        <var-decl name='size' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_ast.h' line='143' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='elements' type-id='type-id-197' visibility='default' filepath='./Include/internal/pycore_ast.h' line='143' column='1'/>
+        <var-decl name='elements' type-id='type-id-195' visibility='default' filepath='./Include/internal/pycore_ast.h' line='143' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='typed_elements' type-id='type-id-688' visibility='default' filepath='./Include/internal/pycore_ast.h' line='144' column='1'/>
@@ -11828,7 +14467,7 @@
     </union-decl>
     <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/internal/pycore_ast.h' line='618' column='1' id='type-id-692'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_ast.h' line='619' column='1'/>
+        <var-decl name='lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_ast.h' line='619' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
         <var-decl name='tag' type-id='type-id-570' visibility='default' filepath='./Include/internal/pycore_ast.h' line='620' column='1'/>
@@ -11838,7 +14477,7 @@
     <typedef-decl name='type_ignore_ty' type-id='type-id-693' filepath='./Include/internal/pycore_ast.h' line='52' column='1' id='type-id-694'/>
 
     <array-type-def dimensions='1' type-id='type-id-694' size-in-bits='64' id='type-id-688'>
-      <subrange length='1' type-id='type-id-18' id='type-id-182'/>
+      <subrange length='1' type-id='type-id-19' id='type-id-182'/>
 
     </array-type-def>
     <typedef-decl name='asdl_type_ignore_seq' type-id='type-id-687' filepath='./Include/internal/pycore_ast.h' line='145' column='1' id='type-id-686'/>
@@ -11868,901 +14507,312 @@
     <pointer-type-def type-id='type-id-698' size-in-bits='64' id='type-id-699'/>
     <function-decl name='_PyAST_Compile' mangled-name='_PyAST_Compile' filepath='Python/compile.c' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyAST_Compile'>
       <parameter type-id='type-id-696' name='mod' filepath='Python/compile.c' line='401' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/compile.c' line='401' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/compile.c' line='401' column='1'/>
       <parameter type-id='type-id-522' name='flags' filepath='Python/compile.c' line='401' column='1'/>
-      <parameter type-id='type-id-8' name='optimize' filepath='Python/compile.c' line='402' column='1'/>
+      <parameter type-id='type-id-9' name='optimize' filepath='Python/compile.c' line='402' column='1'/>
       <parameter type-id='type-id-699' name='arena' filepath='Python/compile.c' line='402' column='1'/>
       <return type-id='type-id-334'/>
     </function-decl>
+    <function-decl name='PyList_GetSlice' mangled-name='PyList_GetSlice' filepath='./Include/listobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FindChar' mangled-name='PyUnicode_FindChar' filepath='./Include/unicodeobject.h' line='952' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_CopyCharacters' mangled-name='PyUnicode_CopyCharacters' filepath='./Include/cpython/unicodeobject.h' line='499' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_ExprAsUnicode' mangled-name='_PyAST_ExprAsUnicode' filepath='./Include/internal/pycore_ast.h' line='845' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyST_GetScope' mangled-name='_PyST_GetScope' filepath='./Include/internal/pycore_symtable.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCapsule_GetPointer' mangled-name='PyCapsule_GetPointer' filepath='./Include/pycapsule.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_DelItem' mangled-name='PySequence_DelItem' filepath='./Include/abstract.h' line='684' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCapsule_New' mangled-name='PyCapsule_New' filepath='./Include/pycapsule.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='./Include/internal/pycore_symtable.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySymtable_Free' mangled-name='_PySymtable_Free' filepath='./Include/internal/pycore_symtable.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFuture_FromAST' mangled-name='_PyFuture_FromAST' filepath='./Include/internal/pycore_compile.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Optimize' mangled-name='_PyAST_Optimize' filepath='./Include/internal/pycore_compile.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySymtable_Build' mangled-name='_PySymtable_Build' filepath='./Include/internal/pycore_symtable.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCode_ConstantKey' mangled-name='_PyCode_ConstantKey' filepath='./Include/cpython/code.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCode_NewWithPosOnlyArgs' mangled-name='PyCode_NewWithPosOnlyArgs' filepath='./Include/cpython/code.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/context.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyContext_Type' type-id='type-id-149' mangled-name='PyContext_Type' visibility='default' filepath='./Include/context.h' line='10' column='1' elf-symbol-id='PyContext_Type'/>
     <var-decl name='PyContextVar_Type' type-id='type-id-149' mangled-name='PyContextVar_Type' visibility='default' filepath='./Include/context.h' line='13' column='1' elf-symbol-id='PyContextVar_Type'/>
     <var-decl name='PyContextToken_Type' type-id='type-id-149' mangled-name='PyContextToken_Type' visibility='default' filepath='./Include/context.h' line='16' column='1' elf-symbol-id='PyContextToken_Type'/>
     <function-decl name='PyContextVar_Reset' mangled-name='PyContextVar_Reset' filepath='Python/context.c' line='295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Reset'>
-      <parameter type-id='type-id-15' name='ovar' filepath='Python/context.c' line='295' column='1'/>
-      <parameter type-id='type-id-15' name='otok' filepath='Python/context.c' line='295' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyContextVar_Set' mangled-name='PyContextVar_Set' filepath='Python/context.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Set'>
-      <parameter type-id='type-id-15' name='ovar' filepath='Python/context.c' line='259' column='1'/>
-      <parameter type-id='type-id-15' name='val' filepath='Python/context.c' line='259' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='ovar' filepath='Python/context.c' line='295' column='1'/>
+      <parameter type-id='type-id-16' name='otok' filepath='Python/context.c' line='295' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyContextVar_Get' mangled-name='PyContextVar_Get' filepath='Python/context.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Get'>
-      <parameter type-id='type-id-15' name='ovar' filepath='Python/context.c' line='196' column='1'/>
-      <parameter type-id='type-id-15' name='def' filepath='Python/context.c' line='196' column='1'/>
+      <parameter type-id='type-id-16' name='ovar' filepath='Python/context.c' line='196' column='1'/>
+      <parameter type-id='type-id-16' name='def' filepath='Python/context.c' line='196' column='1'/>
       <parameter type-id='type-id-86' name='val' filepath='Python/context.c' line='196' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyContextVar_New' mangled-name='PyContextVar_New' filepath='Python/context.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_New'>
       <parameter type-id='type-id-3' name='name' filepath='Python/context.c' line='183' column='1'/>
-      <parameter type-id='type-id-15' name='def' filepath='Python/context.c' line='183' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='def' filepath='Python/context.c' line='183' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyContext_Exit' mangled-name='PyContext_Exit' filepath='Python/context.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Exit'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='octx' filepath='Python/context.c' line='174' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyContext_Enter' mangled-name='PyContext_Enter' filepath='Python/context.c' line='136' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Enter'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-16' name='octx' filepath='Python/context.c' line='174' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyContext_CopyCurrent' mangled-name='PyContext_CopyCurrent' filepath='Python/context.c' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_CopyCurrent'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyContext_Copy' mangled-name='PyContext_Copy' filepath='Python/context.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_Copy'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2473' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='iter' filepath='Objects/abstract.c' line='2863' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyContext_New' mangled-name='PyContext_New' filepath='Python/context.c' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContext_New'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='_PyContext_NewHamtForTests' mangled-name='_PyContext_NewHamtForTests' filepath='Python/context.c' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyContext_NewHamtForTests'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyContextVar_Set' mangled-name='PyContextVar_Set' filepath='Python/context.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyContextVar_Set'>
+      <parameter type-id='type-id-16' name='ovar' filepath='Python/context.c' line='259' column='1'/>
+      <parameter type-id='type-id-16' name='val' filepath='Python/context.c' line='259' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Init' mangled-name='_PyHamt_Init' filepath='./Include/internal/pycore_hamt.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Fini' mangled-name='_PyHamt_Fini' filepath='./Include/internal/pycore_hamt.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Assoc' mangled-name='_PyHamt_Assoc' filepath='./Include/internal/pycore_hamt.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Find' mangled-name='_PyHamt_Find' filepath='./Include/internal/pycore_hamt.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Len' mangled-name='_PyHamt_Len' filepath='./Include/internal/pycore_hamt.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_NewIterKeys' mangled-name='_PyHamt_NewIterKeys' filepath='./Include/internal/pycore_hamt.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Without' mangled-name='_PyHamt_Without' filepath='./Include/internal/pycore_hamt.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_New' mangled-name='_PyHamt_New' filepath='./Include/internal/pycore_hamt.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_NewIterValues' mangled-name='_PyHamt_NewIterValues' filepath='./Include/internal/pycore_hamt.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_NewIterItems' mangled-name='_PyHamt_NewIterItems' filepath='./Include/internal/pycore_hamt.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHamt_Eq' mangled-name='_PyHamt_Eq' filepath='./Include/internal/pycore_hamt.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Size' mangled-name='PyDict_Size' filepath='./Include/dictobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/errors.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyErr_ProgramTextObject' mangled-name='PyErr_ProgramTextObject' filepath='Python/errors.c' line='1781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramTextObject'>
-      <parameter type-id='type-id-15' name='n' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Objects/abstract.c' line='1702' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-16' name='n' filepath='Objects/abstract.c' line='1702' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Objects/abstract.c' line='1702' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyErr_ProgramText' mangled-name='PyErr_ProgramText' filepath='Python/errors.c' line='1764' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ProgramText'>
       <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1764' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1764' column='1'/>
-      <return type-id='type-id-15'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1764' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyErr_SyntaxLocationEx' mangled-name='PyErr_SyntaxLocationEx' filepath='Python/errors.c' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationEx'>
       <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1703' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1703' column='1'/>
-      <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1703' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1703' column='1'/>
+      <parameter type-id='type-id-9' name='col_offset' filepath='Python/errors.c' line='1703' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_RangedSyntaxLocationObject' mangled-name='PyErr_RangedSyntaxLocationObject' filepath='Python/errors.c' line='1697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_RangedSyntaxLocationObject'>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/errors.c' line='1697' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1697' column='1'/>
-      <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1697' column='1'/>
-      <parameter type-id='type-id-8' name='end_lineno' filepath='Python/errors.c' line='1698' column='1'/>
-      <parameter type-id='type-id-8' name='end_col_offset' filepath='Python/errors.c' line='1698' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/errors.c' line='1697' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1697' column='1'/>
+      <parameter type-id='type-id-9' name='col_offset' filepath='Python/errors.c' line='1697' column='1'/>
+      <parameter type-id='type-id-9' name='end_lineno' filepath='Python/errors.c' line='1698' column='1'/>
+      <parameter type-id='type-id-9' name='end_col_offset' filepath='Python/errors.c' line='1698' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='Python/errors.c' line='1692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocationObject'>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/errors.c' line='1692' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1692' column='1'/>
-      <parameter type-id='type-id-8' name='col_offset' filepath='Python/errors.c' line='1692' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/errors.c' line='1692' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1692' column='1'/>
+      <parameter type-id='type-id-9' name='col_offset' filepath='Python/errors.c' line='1692' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_SyntaxLocation' mangled-name='PyErr_SyntaxLocation' filepath='Python/errors.c' line='1564' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SyntaxLocation'>
       <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1564' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1564' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1564' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_WriteUnraisable' mangled-name='PyErr_WriteUnraisable' filepath='Python/errors.c' line='1557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_WriteUnraisable'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='1891' column='1'/>
-      <return type-id='type-id-69'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/errors.c' line='1557' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='_PyErr_WriteUnraisableMsg' mangled-name='_PyErr_WriteUnraisableMsg' filepath='Python/errors.c' line='1454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_WriteUnraisableMsg'>
       <parameter type-id='type-id-3' name='err_msg_str' filepath='Python/errors.c' line='1454' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/errors.c' line='1454' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_NewExceptionWithDoc' mangled-name='PyErr_NewExceptionWithDoc' filepath='Python/errors.c' line='1164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewExceptionWithDoc'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1164' column='1'/>
-      <parameter type-id='type-id-3' name='doc' filepath='Python/errors.c' line='1164' column='1'/>
-      <parameter type-id='type-id-15' name='base' filepath='Python/errors.c' line='1165' column='1'/>
-      <parameter type-id='type-id-15' name='dict' filepath='Python/errors.c' line='1165' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='Python/errors.c' line='1107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewException'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1107' column='1'/>
-      <parameter type-id='type-id-15' name='base' filepath='Python/errors.c' line='1107' column='1'/>
-      <parameter type-id='type-id-15' name='dict' filepath='Python/errors.c' line='1107' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='Python/errors.c' line='1091' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Format'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='1091' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1091' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='Python/errors.c' line='1075' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Format'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='1075' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='1075' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1076' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_FormatV' mangled-name='PyErr_FormatV' filepath='Python/errors.c' line='1067' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_FormatV'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='1067' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1067' column='1'/>
-      <parameter type-id='type-id-217' name='vargs' filepath='Python/errors.c' line='1067' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_BadInternalCall' mangled-name='PyErr_BadInternalCall' filepath='Python/errors.c' line='1038' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadInternalCall'>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='Python/errors.c' line='1026' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_BadInternalCall'>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1026' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/errors.c' line='1026' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='Python/errors.c' line='1020' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportError'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <parameter type-id='type-id-15' name='z' filepath='Objects/abstract.c' line='1328' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetImportErrorSubclass' mangled-name='PyErr_SetImportErrorSubclass' filepath='Python/errors.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportErrorSubclass'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='967' column='1'/>
-      <parameter type-id='type-id-15' name='msg' filepath='Python/errors.c' line='967' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Python/errors.c' line='968' column='1'/>
-      <parameter type-id='type-id-15' name='path' filepath='Python/errors.c' line='968' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='Python/errors.c' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrno'>
-      <parameter type-id='type-id-15' name='input' filepath='Objects/bytearrayobject.c' line='80' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='Python/errors.c' line='797' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilename'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2349' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='Python/errors.c' line='698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObjects'>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/errors.c' line='698' column='1'/>
-      <parameter type-id='type-id-15' name='filenameObject' filepath='Python/errors.c' line='698' column='1'/>
-      <parameter type-id='type-id-15' name='filenameObject2' filepath='Python/errors.c' line='698' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='Python/errors.c' line='692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObject'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <parameter type-id='type-id-15' name='w' filepath='Objects/abstract.c' line='1321' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='Python/errors.c' line='685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NoMemory'>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='Python/errors.c' line='672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NoMemory'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='672' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='Python/errors.c' line='663' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadArgument'>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='Python/errors.c' line='646' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCause'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='1091' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1091' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='Python/errors.c' line='631' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCauseTstate'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='1075' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='1075' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1076' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='Python/errors.c' line='555' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainStackItem'>
-      <parameter type-id='type-id-17' name='exc_info' filepath='Python/errors.c' line='555' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='Python/errors.c' line='513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainExceptions'>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/errors.c' line='513' column='1'/>
-      <parameter type-id='type-id-15' name='val' filepath='Python/errors.c' line='513' column='1'/>
-      <parameter type-id='type-id-15' name='tb' filepath='Python/errors.c' line='513' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_SetExcInfo' mangled-name='PyErr_SetExcInfo' filepath='Python/errors.c' line='489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetExcInfo'>
-      <parameter type-id='type-id-15' name='p_type' filepath='Python/errors.c' line='489' column='1'/>
-      <parameter type-id='type-id-15' name='p_value' filepath='Python/errors.c' line='489' column='1'/>
-      <parameter type-id='type-id-15' name='p_traceback' filepath='Python/errors.c' line='489' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_GetExcInfo' mangled-name='PyErr_GetExcInfo' filepath='Python/errors.c' line='482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GetExcInfo'>
-      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='482' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_GetExcInfo' mangled-name='_PyErr_GetExcInfo' filepath='Python/errors.c' line='467' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetExcInfo'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='467' column='1'/>
-      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='468' column='1'/>
-      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='468' column='1'/>
-      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='468' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_Clear' mangled-name='PyErr_Clear' filepath='Python/errors.c' line='459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Clear'>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='Python/errors.c' line='452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Clear'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='452' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='Python/errors.c' line='444' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Fetch'>
-      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='482' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='Python/errors.c' line='430' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Fetch'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='430' column='1'/>
-      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='430' column='1'/>
-      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='430' column='1'/>
-      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='431' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='Python/errors.c' line='422' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NormalizeException'>
-      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='482' column='1'/>
-      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='482' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='Python/errors.c' line='315' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NormalizeException'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='315' column='1'/>
-      <parameter type-id='type-id-86' name='exc' filepath='Python/errors.c' line='315' column='1'/>
-      <parameter type-id='type-id-86' name='val' filepath='Python/errors.c' line='316' column='1'/>
-      <parameter type-id='type-id-86' name='tb' filepath='Python/errors.c' line='316' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='Python/errors.c' line='297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ExceptionMatches'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='Python/errors.c' line='290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ExceptionMatches'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='290' column='1'/>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/errors.c' line='290' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='Python/errors.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GivenExceptionMatches'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <parameter type-id='type-id-15' name='annotations' filepath='Objects/funcobject.c' line='235' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='Python/errors.c' line='247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Occurred'>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='Python/errors.c' line='239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetString'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='239' column='1'/>
-      <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='239' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='Python/errors.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetString'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='230' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='230' column='1'/>
-      <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='231' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='Python/errors.c' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetNone'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='Python/errors.c' line='215' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetNone'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='215' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='215' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='Python/errors.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetKeyError'>
-      <parameter type-id='type-id-15' name='op' filepath='Objects/object.c' line='2100' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='Python/errors.c' line='192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetObject'>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='192' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/errors.c' line='192' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='Python/errors.c' line='114' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetObject'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='114' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/errors.c' line='114' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/errors.c' line='114' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='Python/errors.c' line='76' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetTopmostException'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='76' column='1'/>
-      <return type-id='type-id-17'/>
-    </function-decl>
-    <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='Python/errors.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Restore'>
-      <parameter type-id='type-id-15' name='type' filepath='Python/errors.c' line='68' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/errors.c' line='68' column='1'/>
-      <parameter type-id='type-id-15' name='traceback' filepath='Python/errors.c' line='68' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='Python/errors.c' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Restore'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='40' column='1'/>
-      <parameter type-id='type-id-15' name='type' filepath='Python/errors.c' line='40' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/errors.c' line='40' column='1'/>
-      <parameter type-id='type-id-15' name='traceback' filepath='Python/errors.c' line='41' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/frozenmain.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_FrozenMain' mangled-name='Py_FrozenMain' filepath='Python/frozenmain.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FrozenMain'>
-      <parameter type-id='type-id-8' name='argc' filepath='Python/frozenmain.c' line='17' column='1'/>
-      <parameter type-id='type-id-215' name='argv' filepath='Python/frozenmain.c' line='17' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/getargs.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_PyArg_NoKwnames' mangled-name='_PyArg_NoKwnames' filepath='Python/getargs.c' line='2761' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKwnames'>
-      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2761' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='2761' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_NoPositional' mangled-name='_PyArg_NoPositional' filepath='Python/getargs.c' line='2744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoPositional'>
-      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2761' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='2761' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='Python/getargs.c' line='2725' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKeywords'>
-      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2761' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='2761' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='Python/getargs.c' line='2698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackStack'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='2698' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='2698' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2698' column='1'/>
-      <parameter type-id='type-id-30' name='min' filepath='Python/getargs.c' line='2699' column='1'/>
-      <parameter type-id='type-id-30' name='max' filepath='Python/getargs.c' line='2699' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/errors.c' line='1454' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_NewExceptionWithDoc' mangled-name='PyErr_NewExceptionWithDoc' filepath='Python/errors.c' line='1165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewExceptionWithDoc'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1165' column='1'/>
+      <parameter type-id='type-id-3' name='doc' filepath='Python/errors.c' line='1165' column='1'/>
+      <parameter type-id='type-id-16' name='base' filepath='Python/errors.c' line='1166' column='1'/>
+      <parameter type-id='type-id-16' name='dict' filepath='Python/errors.c' line='1166' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='Python/errors.c' line='1108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NewException'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/errors.c' line='1108' column='1'/>
+      <parameter type-id='type-id-16' name='base' filepath='Python/errors.c' line='1108' column='1'/>
+      <parameter type-id='type-id-16' name='dict' filepath='Python/errors.c' line='1108' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_Format' mangled-name='PyErr_Format' filepath='Python/errors.c' line='1092' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Format'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='1092' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1092' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyArg_UnpackTuple' mangled-name='PyArg_UnpackTuple' filepath='Python/getargs.c' line='2672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_UnpackTuple'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='2672' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2672' column='1'/>
-      <parameter type-id='type-id-30' name='min' filepath='Python/getargs.c' line='2672' column='1'/>
-      <parameter type-id='type-id-30' name='max' filepath='Python/getargs.c' line='2672' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='Python/getargs.c' line='2610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_CheckPositional'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2610' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='2610' column='1'/>
-      <parameter type-id='type-id-30' name='min' filepath='Python/getargs.c' line='2611' column='1'/>
-      <parameter type-id='type-id-30' name='max' filepath='Python/getargs.c' line='2611' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <class-decl name='_PyArg_Parser' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/modsupport.h' line='92' column='1' id='type-id-700'>
+    <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-700'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='format' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='93' column='1'/>
+        <var-decl name='prev' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='keywords' type-id='type-id-701' visibility='default' filepath='./Include/modsupport.h' line='94' column='1'/>
+        <var-decl name='next' type-id='type-id-11' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='fname' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='95' column='1'/>
+        <var-decl name='interp' type-id='type-id-222' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='custom_msg' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='96' column='1'/>
+        <var-decl name='frame' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='pos' type-id='type-id-8' visibility='default' filepath='./Include/modsupport.h' line='97' column='1'/>
+        <var-decl name='recursion_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='min' type-id='type-id-8' visibility='default' filepath='./Include/modsupport.h' line='98' column='1'/>
+        <var-decl name='recursion_headroom' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='max' type-id='type-id-8' visibility='default' filepath='./Include/modsupport.h' line='99' column='1'/>
+        <var-decl name='stackcheck_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='352'>
+        <var-decl name='tracing' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='kwtuple' type-id='type-id-15' visibility='default' filepath='./Include/modsupport.h' line='100' column='1'/>
+        <var-decl name='cframe' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='next' type-id='type-id-702' visibility='default' filepath='./Include/modsupport.h' line='101' column='1'/>
+        <var-decl name='c_profilefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
       </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-4' size-in-bits='64' id='type-id-701'/>
-    <pointer-type-def type-id='type-id-700' size-in-bits='64' id='type-id-702'/>
-    <function-decl name='_PyArg_UnpackKeywords' mangled-name='_PyArg_UnpackKeywords' filepath='Python/getargs.c' line='2268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackKeywords'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='2268' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='2268' column='1'/>
-      <parameter type-id='type-id-15' name='kwargs' filepath='Python/getargs.c' line='2269' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='2269' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='2270' column='1'/>
-      <parameter type-id='type-id-8' name='minpos' filepath='Python/getargs.c' line='2271' column='1'/>
-      <parameter type-id='type-id-8' name='maxpos' filepath='Python/getargs.c' line='2271' column='1'/>
-      <parameter type-id='type-id-8' name='minkw' filepath='Python/getargs.c' line='2271' column='1'/>
-      <parameter type-id='type-id-86' name='buf' filepath='Python/getargs.c' line='2272' column='1'/>
-      <return type-id='type-id-156'/>
-    </function-decl>
-    <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='Python/getargs.c' line='1557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ValidateKeywordArguments'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1543' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1543' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1544' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1544' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_VaParseTupleAndKeywordsFast' mangled-name='_PyArg_VaParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1543' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1543' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1544' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1544' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseStackAndKeywords_SizeT' mangled-name='_PyArg_ParseStackAndKeywords_SizeT' filepath='Python/getargs.c' line='1515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords_SizeT'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1516' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseStackAndKeywords' mangled-name='_PyArg_ParseStackAndKeywords' filepath='Python/getargs.c' line='1502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-15' name='kwnames' filepath='Python/getargs.c' line='1515' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1516' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_ParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1489' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1489' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1490' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseTupleAndKeywordsFast' mangled-name='_PyArg_ParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1489' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1489' column='1'/>
-      <parameter type-id='type-id-702' name='parser' filepath='Python/getargs.c' line='1490' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_VaParseTupleAndKeywords_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywords_SizeT' filepath='Python/getargs.c' line='1450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywords_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1450' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1451' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1452' column='1'/>
-      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1453' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1453' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyArg_VaParseTupleAndKeywords' mangled-name='PyArg_VaParseTupleAndKeywords' filepath='Python/getargs.c' line='1425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParseTupleAndKeywords'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1450' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1451' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1452' column='1'/>
-      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1453' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1453' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseTupleAndKeywords_SizeT' mangled-name='_PyArg_ParseTupleAndKeywords_SizeT' filepath='Python/getargs.c' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywords_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1399' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1400' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1401' column='1'/>
-      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1402' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyArg_ParseTupleAndKeywords' mangled-name='PyArg_ParseTupleAndKeywords' filepath='Python/getargs.c' line='1375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTupleAndKeywords'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='1399' column='1'/>
-      <parameter type-id='type-id-15' name='keywords' filepath='Python/getargs.c' line='1400' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1401' column='1'/>
-      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1402' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_BadArgument' mangled-name='_PyArg_BadArgument' filepath='Python/getargs.c' line='617' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_BadArgument'>
-      <parameter type-id='type-id-3' name='fname' filepath='Python/getargs.c' line='617' column='1'/>
-      <parameter type-id='type-id-3' name='displayname' filepath='Python/getargs.c' line='617' column='1'/>
-      <parameter type-id='type-id-3' name='expected' filepath='Python/getargs.c' line='618' column='1'/>
-      <parameter type-id='type-id-15' name='arg' filepath='Python/getargs.c' line='618' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyArg_VaParse_SizeT' mangled-name='_PyArg_VaParse_SizeT' filepath='Python/getargs.c' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParse_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='186' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='186' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='186' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyArg_VaParse' mangled-name='PyArg_VaParse' filepath='Python/getargs.c' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParse'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='186' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='186' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='186' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseStack_SizeT' mangled-name='_PyArg_ParseStack_SizeT' filepath='Python/getargs.c' line='160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack_SizeT'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseStack' mangled-name='_PyArg_ParseStack' filepath='Python/getargs.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack'>
-      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter type-id='type-id-30' name='nargs' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='160' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_ParseTuple_SizeT' mangled-name='_PyArg_ParseTuple_SizeT' filepath='Python/getargs.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTuple_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyArg_ParseTuple' mangled-name='PyArg_ParseTuple' filepath='Python/getargs.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTuple'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArg_Parse_SizeT' mangled-name='_PyArg_Parse_SizeT' filepath='Python/getargs.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_Parse_SizeT'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyArg_Parse' mangled-name='PyArg_Parse' filepath='Python/getargs.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_Parse'>
-      <parameter type-id='type-id-15' name='args' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/getcompiler.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='Python/getcompiler.c' line='24' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCompiler'>
-      <return type-id='type-id-3'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/getcopyright.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_GetCopyright' mangled-name='Py_GetCopyright' filepath='Python/getcopyright.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCopyright'>
-      <return type-id='type-id-3'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='./Python/getplatform.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='./Python/getplatform.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPlatform'>
-      <return type-id='type-id-3'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/getversion.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='Python/getversion.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetVersion'>
-      <return type-id='type-id-3'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/hamt.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='_PyHamtItems_Type' type-id='type-id-149' mangled-name='_PyHamtItems_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='70' column='1' elf-symbol-id='_PyHamtItems_Type'/>
-    <var-decl name='_PyHamtKeys_Type' type-id='type-id-149' mangled-name='_PyHamtKeys_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='68' column='1' elf-symbol-id='_PyHamtKeys_Type'/>
-    <var-decl name='_PyHamtValues_Type' type-id='type-id-149' mangled-name='_PyHamtValues_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='69' column='1' elf-symbol-id='_PyHamtValues_Type'/>
-    <var-decl name='_PyHamt_Type' type-id='type-id-149' mangled-name='_PyHamt_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='64' column='1' elf-symbol-id='_PyHamt_Type'/>
-    <var-decl name='_PyHamt_ArrayNode_Type' type-id='type-id-149' mangled-name='_PyHamt_ArrayNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='65' column='1' elf-symbol-id='_PyHamt_ArrayNode_Type'/>
-    <var-decl name='_PyHamt_BitmapNode_Type' type-id='type-id-149' mangled-name='_PyHamt_BitmapNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='66' column='1' elf-symbol-id='_PyHamt_BitmapNode_Type'/>
-    <var-decl name='_PyHamt_CollisionNode_Type' type-id='type-id-149' mangled-name='_PyHamt_CollisionNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='67' column='1' elf-symbol-id='_PyHamt_CollisionNode_Type'/>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/hashtable.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_Py_hashtable_t' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='60' column='1' id='type-id-703'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='nentries' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='61' column='1'/>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='c_tracefunc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='nbuckets' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='62' column='1'/>
+      <data-member access='public' layout-offset-in-bits='576'>
+        <var-decl name='c_profileobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='buckets' type-id='type-id-704' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='63' column='1'/>
+      <data-member access='public' layout-offset-in-bits='640'>
+        <var-decl name='c_traceobj' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='get_entry_func' type-id='type-id-705' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='65' column='1'/>
+      <data-member access='public' layout-offset-in-bits='704'>
+        <var-decl name='curexc_type' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='hash_func' type-id='type-id-706' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='66' column='1'/>
+      <data-member access='public' layout-offset-in-bits='768'>
+        <var-decl name='curexc_value' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='compare_func' type-id='type-id-707' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='67' column='1'/>
+      <data-member access='public' layout-offset-in-bits='832'>
+        <var-decl name='curexc_traceback' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='key_destroy_func' type-id='type-id-708' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='68' column='1'/>
+      <data-member access='public' layout-offset-in-bits='896'>
+        <var-decl name='exc_state' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='value_destroy_func' type-id='type-id-708' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='69' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1152'>
+        <var-decl name='exc_info' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='alloc' type-id='type-id-709' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='70' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1216'>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
       </data-member>
-    </class-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-710' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='17' column='1' id='type-id-711'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='head' type-id='type-id-712' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='18' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1280'>
+        <var-decl name='gilstate_counter' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
       </data-member>
-    </class-decl>
-    <class-decl name='_Py_slist_item_s' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='13' column='1' id='type-id-713'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='next' type-id='type-id-714' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='14' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1344'>
+        <var-decl name='async_exc' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
       </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-713' size-in-bits='64' id='type-id-714'/>
-    <typedef-decl name='_Py_slist_item_t' type-id='type-id-713' filepath='./Include/internal/pycore_hashtable.h' line='15' column='1' id='type-id-715'/>
-    <pointer-type-def type-id='type-id-715' size-in-bits='64' id='type-id-712'/>
-    <typedef-decl name='_Py_slist_t' type-id='type-id-711' filepath='./Include/internal/pycore_hashtable.h' line='19' column='1' id='type-id-710'/>
-    <pointer-type-def type-id='type-id-710' size-in-bits='64' id='type-id-704'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-716' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='28' column='1' id='type-id-717'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_Py_slist_item' type-id='type-id-715' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='30' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1408'>
+        <var-decl name='thread_id' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='key_hash' type-id='type-id-718' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='32' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1472'>
+        <var-decl name='trash_delete_nesting' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='key' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='33' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1536'>
+        <var-decl name='trash_delete_later' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='value' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='34' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1600'>
+        <var-decl name='on_delete' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
       </data-member>
-    </class-decl>
-    <typedef-decl name='Py_uhash_t' type-id='type-id-157' filepath='./Include/pyport.h' line='119' column='1' id='type-id-718'/>
-    <typedef-decl name='_Py_hashtable_entry_t' type-id='type-id-717' filepath='./Include/internal/pycore_hashtable.h' line='35' column='1' id='type-id-716'/>
-    <pointer-type-def type-id='type-id-716' size-in-bits='64' id='type-id-719'/>
-    <typedef-decl name='_Py_hashtable_t' type-id='type-id-703' filepath='./Include/internal/pycore_hashtable.h' line='42' column='1' id='type-id-720'/>
-    <pointer-type-def type-id='type-id-720' size-in-bits='64' id='type-id-721'/>
-    <pointer-type-def type-id='type-id-722' size-in-bits='64' id='type-id-723'/>
-    <typedef-decl name='_Py_hashtable_get_entry_func' type-id='type-id-723' filepath='./Include/internal/pycore_hashtable.h' line='47' column='1' id='type-id-705'/>
-    <pointer-type-def type-id='type-id-724' size-in-bits='64' id='type-id-725'/>
-    <typedef-decl name='_Py_hashtable_hash_func' type-id='type-id-725' filepath='./Include/internal/pycore_hashtable.h' line='44' column='1' id='type-id-706'/>
-    <pointer-type-def type-id='type-id-726' size-in-bits='64' id='type-id-727'/>
-    <typedef-decl name='_Py_hashtable_compare_func' type-id='type-id-727' filepath='./Include/internal/pycore_hashtable.h' line='45' column='1' id='type-id-707'/>
-    <typedef-decl name='_Py_hashtable_destroy_func' type-id='type-id-19' filepath='./Include/internal/pycore_hashtable.h' line='46' column='1' id='type-id-708'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-709' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='50' column='1' id='type-id-728'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='malloc' type-id='type-id-729' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='52' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1664'>
+        <var-decl name='on_delete_data' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='free' type-id='type-id-19' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='55' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1728'>
+        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
       </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-730' size-in-bits='64' id='type-id-729'/>
-    <typedef-decl name='_Py_hashtable_allocator_t' type-id='type-id-728' filepath='./Include/internal/pycore_hashtable.h' line='56' column='1' id='type-id-709'/>
-    <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='Python/hashtable.c' line='404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_destroy'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='404' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='Python/hashtable.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_clear'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='404' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_new' mangled-name='_Py_hashtable_new' filepath='Python/hashtable.c' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new'>
-      <parameter type-id='type-id-706' name='hash_func' filepath='Python/hashtable.c' line='363' column='1'/>
-      <parameter type-id='type-id-707' name='compare_func' filepath='Python/hashtable.c' line='364' column='1'/>
-      <return type-id='type-id-721'/>
-    </function-decl>
-    <pointer-type-def type-id='type-id-709' size-in-bits='64' id='type-id-731'/>
-    <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='Python/hashtable.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new_full'>
-      <parameter type-id='type-id-706' name='hash_func' filepath='Python/hashtable.c' line='316' column='1'/>
-      <parameter type-id='type-id-707' name='compare_func' filepath='Python/hashtable.c' line='317' column='1'/>
-      <parameter type-id='type-id-708' name='key_destroy_func' filepath='Python/hashtable.c' line='318' column='1'/>
-      <parameter type-id='type-id-708' name='value_destroy_func' filepath='Python/hashtable.c' line='319' column='1'/>
-      <parameter type-id='type-id-731' name='allocator' filepath='Python/hashtable.c' line='320' column='1'/>
-      <return type-id='type-id-721'/>
-    </function-decl>
-    <pointer-type-def type-id='type-id-732' size-in-bits='64' id='type-id-733'/>
-    <typedef-decl name='_Py_hashtable_foreach_func' type-id='type-id-733' filepath='./Include/internal/pycore_hashtable.h' line='96' column='1' id='type-id-734'/>
-    <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='Python/hashtable.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_foreach'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='261' column='1'/>
-      <parameter type-id='type-id-734' name='func' filepath='Python/hashtable.c' line='262' column='1'/>
-      <parameter type-id='type-id-20' name='user_data' filepath='Python/hashtable.c' line='263' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='Python/hashtable.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='248' column='1'/>
-      <parameter type-id='type-id-20' name='key' filepath='Python/hashtable.c' line='248' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='Python/hashtable.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_set'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='209' column='1'/>
-      <parameter type-id='type-id-20' name='key' filepath='Python/hashtable.c' line='209' column='1'/>
-      <parameter type-id='type-id-20' name='value' filepath='Python/hashtable.c' line='209' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_steal' mangled-name='_Py_hashtable_steal' filepath='Python/hashtable.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_steal'>
-      <parameter type-id='type-id-721' name='ht' filepath='Python/hashtable.c' line='174' column='1'/>
-      <parameter type-id='type-id-20' name='key' filepath='Python/hashtable.c' line='174' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <qualified-type-def type-id='type-id-720' const='yes' id='type-id-735'/>
-    <pointer-type-def type-id='type-id-735' size-in-bits='64' id='type-id-736'/>
-    <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='Python/hashtable.c' line='120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_size'>
-      <parameter type-id='type-id-736' name='ht' filepath='Python/hashtable.c' line='120' column='1'/>
-      <return type-id='type-id-157'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_compare_direct' mangled-name='_Py_hashtable_compare_direct' filepath='Python/hashtable.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_compare_direct'>
-      <parameter type-id='type-id-20' name='key1' filepath='Python/hashtable.c' line='99' column='1'/>
-      <parameter type-id='type-id-20' name='key2' filepath='Python/hashtable.c' line='99' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_hashtable_hash_ptr' mangled-name='_Py_hashtable_hash_ptr' filepath='Python/hashtable.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_hash_ptr'>
-      <parameter type-id='type-id-20' name='key' filepath='Python/hashtable.c' line='92' column='1'/>
-      <return type-id='type-id-718'/>
-    </function-decl>
-    <function-type size-in-bits='64' id='type-id-722'>
-      <parameter type-id='type-id-721'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-719'/>
-    </function-type>
-    <function-type size-in-bits='64' id='type-id-732'>
-      <parameter type-id='type-id-721'/>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
-    </function-type>
-    <function-type size-in-bits='64' id='type-id-726'>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-8'/>
-    </function-type>
-    <function-type size-in-bits='64' id='type-id-724'>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-718'/>
-    </function-type>
-    <function-type size-in-bits='64' id='type-id-730'>
-      <parameter type-id='type-id-157'/>
-      <return type-id='type-id-20'/>
-    </function-type>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/import.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='24' column='1' id='type-id-737'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/import.h' line='25' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1792'>
+        <var-decl name='async_gen_firstiter' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='initfunc' type-id='type-id-462' visibility='default' filepath='./Include/cpython/import.h' line='26' column='1'/>
+      <data-member access='public' layout-offset-in-bits='1856'>
+        <var-decl name='async_gen_finalizer' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='1920'>
+        <var-decl name='context' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='1984'>
+        <var-decl name='context_ver' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='2048'>
+        <var-decl name='id' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='2112'>
+        <var-decl name='root_cframe' type-id='type-id-23' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-737' size-in-bits='64' id='type-id-738'/>
-    <var-decl name='PyImport_Inittab' type-id='type-id-738' mangled-name='PyImport_Inittab' visibility='default' filepath='./Include/cpython/import.h' line='28' column='1' elf-symbol-id='PyImport_Inittab'/>
-    <function-decl name='PyImport_AppendInittab' mangled-name='PyImport_AppendInittab' filepath='Python/import.c' line='2266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AppendInittab'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='2266' column='1'/>
-      <parameter type-id='type-id-462' name='initfunc' filepath='Python/import.c' line='2266' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyImport_ExtendInittab' mangled-name='PyImport_ExtendInittab' filepath='Python/import.c' line='2220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExtendInittab'>
-      <parameter type-id='type-id-738' name='newtab' filepath='Python/import.c' line='2220' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='Python/import.c' line='2159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__imp'>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='Python/import.c' line='1746' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Import'>
-      <parameter type-id='type-id-15' name='module_name' filepath='Python/import.c' line='1746' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ReloadModule' mangled-name='PyImport_ReloadModule' filepath='Python/import.c' line='1713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ReloadModule'>
-      <parameter type-id='type-id-15' name='m' filepath='Python/import.c' line='1713' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='Python/import.c' line='1695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevel'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1695' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/import.c' line='1695' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/import.c' line='1695' column='1'/>
-      <parameter type-id='type-id-15' name='fromlist' filepath='Python/import.c' line='1696' column='1'/>
-      <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1696' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='Python/import.c' line='1543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevelObject'>
-      <parameter type-id='type-id-15' name='name' filepath='Python/import.c' line='1543' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/import.c' line='1543' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/import.c' line='1544' column='1'/>
-      <parameter type-id='type-id-15' name='fromlist' filepath='Python/import.c' line='1544' column='1'/>
-      <parameter type-id='type-id-8' name='level' filepath='Python/import.c' line='1545' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='Python/import.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModule'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='Python/import.c' line='1231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleNoBlock'>
-      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='355' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='Python/import.c' line='1207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'>
-      <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='Python/import.c' line='1190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModule'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1190' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyImport_ImportFrozenModuleObject' mangled-name='PyImport_ImportFrozenModuleObject' filepath='Python/import.c' line='1121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModuleObject'>
-      <parameter type-id='type-id-15' name='name' filepath='Python/import.c' line='1121' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='Python/import.c' line='966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetImporter'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='Python/import.c' line='792' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleObject'>
-      <parameter type-id='type-id-15' name='name' filepath='Python/import.c' line='792' column='1'/>
-      <parameter type-id='type-id-15' name='co' filepath='Python/import.c' line='792' column='1'/>
-      <parameter type-id='type-id-15' name='pathname' filepath='Python/import.c' line='792' column='1'/>
-      <parameter type-id='type-id-15' name='cpathname' filepath='Python/import.c' line='793' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ExecCodeModuleWithPathnames' mangled-name='PyImport_ExecCodeModuleWithPathnames' filepath='Python/import.c' line='687' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleWithPathnames'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='687' column='1'/>
-      <parameter type-id='type-id-15' name='co' filepath='Python/import.c' line='687' column='1'/>
-      <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='688' column='1'/>
-      <parameter type-id='type-id-3' name='cpathname' filepath='Python/import.c' line='689' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ExecCodeModuleEx' mangled-name='PyImport_ExecCodeModuleEx' filepath='Python/import.c' line='680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleEx'>
-      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='379' column='1'/>
-      <parameter type-id='type-id-15' name='stream' filepath='Python/codecs.c' line='380' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='Python/codecs.c' line='381' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_ExecCodeModule' mangled-name='PyImport_ExecCodeModule' filepath='Python/import.c' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModule'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='673' column='1'/>
-      <parameter type-id='type-id-15' name='co' filepath='Python/import.c' line='673' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='Python/import.c' line='624' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModule'>
-      <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='Python/import.c' line='606' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModuleObject'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2793' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='Python/import.c' line='484' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupBuiltin'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Objects/abstract.c' line='2366' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='Python/import.c' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupExtensionObject'>
-      <parameter type-id='type-id-15' name='mod' filepath='Python/import.c' line='421' column='1'/>
-      <parameter type-id='type-id-15' name='name' filepath='Python/import.c' line='421' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/import.c' line='422' column='1'/>
-      <parameter type-id='type-id-15' name='modules' filepath='Python/import.c' line='422' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyImport_GetMagicTag' mangled-name='PyImport_GetMagicTag' filepath='Python/import.c' line='398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicTag'>
-      <return type-id='type-id-3'/>
-    </function-decl>
-    <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/import.c' line='376' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicNumber'>
-      <return type-id='type-id-32'/>
-    </function-decl>
-    <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='Python/import.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModuleString'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='311' column='1'/>
-      <parameter type-id='type-id-15' name='m' filepath='Python/import.c' line='311' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyImport_SetModule' mangled-name='_PyImport_SetModule' filepath='Python/import.c' line='303' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModule'>
-      <parameter type-id='type-id-15' name='od' filepath='Objects/odictobject.c' line='1675' column='1'/>
-      <parameter type-id='type-id-15' name='key' filepath='Objects/odictobject.c' line='1675' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='Python/import.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_GetModuleId'>
-      <parameter type-id='type-id-219' name='nameid' filepath='Python/import.c' line='293' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <class-decl name='_is' size-in-bits='908160' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='220' column='1' id='type-id-739'>
+    <class-decl name='_is' size-in-bits='908160' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_interp.h' line='220' column='1' id='type-id-701'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='next' type-id='type-id-225' visibility='default' filepath='./Include/internal/pycore_interp.h' line='222' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tstate_head' type-id='type-id-10' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
+        <var-decl name='tstate_head' type-id='type-id-11' visibility='default' filepath='./Include/internal/pycore_interp.h' line='223' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
         <var-decl name='runtime' type-id='type-id-226' visibility='default' filepath='./Include/internal/pycore_interp.h' line='228' column='1'/>
@@ -12774,13 +14824,13 @@
         <var-decl name='id_refcount' type-id='type-id-227' visibility='default' filepath='./Include/internal/pycore_interp.h' line='231' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='requires_idref' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
+        <var-decl name='requires_idref' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='232' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='384'>
         <var-decl name='id_mutex' type-id='type-id-228' visibility='default' filepath='./Include/internal/pycore_interp.h' line='233' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='finalizing' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
+        <var-decl name='finalizing' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='235' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='512'>
         <var-decl name='ceval' type-id='type-id-229' visibility='default' filepath='./Include/internal/pycore_interp.h' line='237' column='1'/>
@@ -12789,73 +14839,73 @@
         <var-decl name='gc' type-id='type-id-230' visibility='default' filepath='./Include/internal/pycore_interp.h' line='238' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6848'>
-        <var-decl name='modules' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
+        <var-decl name='modules' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='241' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6912'>
-        <var-decl name='modules_by_index' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
+        <var-decl name='modules_by_index' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='242' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='6976'>
-        <var-decl name='sysdict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
+        <var-decl name='sysdict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='244' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7040'>
-        <var-decl name='builtins' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
+        <var-decl name='builtins' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='246' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7104'>
-        <var-decl name='importlib' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
+        <var-decl name='importlib' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='248' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7168'>
-        <var-decl name='num_threads' type-id='type-id-32' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
+        <var-decl name='num_threads' type-id='type-id-33' visibility='default' filepath='./Include/internal/pycore_interp.h' line='251' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7232'>
         <var-decl name='pythread_stacksize' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_interp.h' line='256' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7296'>
-        <var-decl name='codec_search_path' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
+        <var-decl name='codec_search_path' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='258' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7360'>
-        <var-decl name='codec_search_cache' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
+        <var-decl name='codec_search_cache' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='259' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7424'>
-        <var-decl name='codec_error_registry' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
+        <var-decl name='codec_error_registry' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='260' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7488'>
-        <var-decl name='codecs_initialized' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
+        <var-decl name='codecs_initialized' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='261' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='7552'>
         <var-decl name='config' type-id='type-id-231' visibility='default' filepath='./Include/internal/pycore_interp.h' line='263' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10688'>
-        <var-decl name='dlopenflags' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
+        <var-decl name='dlopenflags' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_interp.h' line='265' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10752'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
+        <var-decl name='dict' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='268' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10816'>
-        <var-decl name='builtins_copy' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
+        <var-decl name='builtins_copy' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='270' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10880'>
-        <var-decl name='import_func' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
+        <var-decl name='import_func' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='271' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='10944'>
         <var-decl name='eval_frame' type-id='type-id-232' visibility='default' filepath='./Include/internal/pycore_interp.h' line='273' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11008'>
-        <var-decl name='co_extra_user_count' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
+        <var-decl name='co_extra_user_count' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_interp.h' line='275' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='11072'>
         <var-decl name='co_extra_freefuncs' type-id='type-id-233' visibility='default' filepath='./Include/internal/pycore_interp.h' line='276' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27392'>
-        <var-decl name='before_forkers' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
+        <var-decl name='before_forkers' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='279' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27456'>
-        <var-decl name='after_forkers_parent' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
+        <var-decl name='after_forkers_parent' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='280' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27520'>
-        <var-decl name='after_forkers_child' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
+        <var-decl name='after_forkers_child' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='281' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27584'>
-        <var-decl name='tstate_next_unique_id' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
+        <var-decl name='tstate_next_unique_id' type-id='type-id-22' visibility='default' filepath='./Include/internal/pycore_interp.h' line='284' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='27648'>
         <var-decl name='warnings' type-id='type-id-234' visibility='default' filepath='./Include/internal/pycore_interp.h' line='286' column='1'/>
@@ -12864,7 +14914,7 @@
         <var-decl name='atexit' type-id='type-id-235' visibility='default' filepath='./Include/internal/pycore_interp.h' line='287' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28032'>
-        <var-decl name='audit_hooks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
+        <var-decl name='audit_hooks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_interp.h' line='289' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='28096'>
         <var-decl name='small_ints' type-id='type-id-236' visibility='default' filepath='./Include/internal/pycore_interp.h' line='296' column='1'/>
@@ -12909,2762 +14959,5581 @@
         <var-decl name='type_cache' type-id='type-id-249' visibility='default' filepath='./Include/internal/pycore_interp.h' line='313' column='1'/>
       </data-member>
     </class-decl>
-    <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='Python/import.c' line='285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_IsInitialized'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
-      <return type-id='type-id-8'/>
+    <typedef-decl name='PyThreadState' type-id='type-id-700' filepath='./Include/pystate.h' line='20' column='1' id='type-id-702'/>
+    <pointer-type-def type-id='type-id-702' size-in-bits='64' id='type-id-703'/>
+    <function-decl name='_PyErr_Format' mangled-name='_PyErr_Format' filepath='Python/errors.c' line='1076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Format'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='1076' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='1076' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1077' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_FormatV' mangled-name='PyErr_FormatV' filepath='Python/errors.c' line='1068' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_FormatV'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='1068' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='1068' column='1'/>
+      <parameter type-id='type-id-217' name='vargs' filepath='Python/errors.c' line='1068' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_BadInternalCall' mangled-name='PyErr_BadInternalCall' filepath='Python/errors.c' line='1039' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadInternalCall'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_BadInternalCall' mangled-name='_PyErr_BadInternalCall' filepath='Python/errors.c' line='1027' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_BadInternalCall'>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/errors.c' line='1027' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/errors.c' line='1027' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetImportError' mangled-name='PyErr_SetImportError' filepath='Python/errors.c' line='1021' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportError'>
+      <parameter type-id='type-id-16' name='msg' filepath='Python/errors.c' line='1021' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Python/errors.c' line='1021' column='1'/>
+      <parameter type-id='type-id-16' name='path' filepath='Python/errors.c' line='1021' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetImportErrorSubclass' mangled-name='PyErr_SetImportErrorSubclass' filepath='Python/errors.c' line='968' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetImportErrorSubclass'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='968' column='1'/>
+      <parameter type-id='type-id-16' name='msg' filepath='Python/errors.c' line='968' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Python/errors.c' line='969' column='1'/>
+      <parameter type-id='type-id-16' name='path' filepath='Python/errors.c' line='969' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrno' mangled-name='PyErr_SetFromErrno' filepath='Python/errors.c' line='818' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrno'>
+      <parameter type-id='type-id-16' name='im' filepath='Objects/classobject.c' line='25' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilename' mangled-name='PyErr_SetFromErrnoWithFilename' filepath='Python/errors.c' line='798' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilename'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/dictobject.c' line='3582' column='1'/>
+      <parameter type-id='type-id-3' name='key' filepath='Objects/dictobject.c' line='3582' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='Python/errors.c' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObjects'>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/errors.c' line='699' column='1'/>
+      <parameter type-id='type-id-16' name='filenameObject' filepath='Python/errors.c' line='699' column='1'/>
+      <parameter type-id='type-id-16' name='filenameObject2' filepath='Python/errors.c' line='699' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='Python/errors.c' line='693' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetFromErrnoWithFilenameObject'>
+      <parameter type-id='type-id-16' name='code' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Objects/funcobject.c' line='96' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_NoMemory' mangled-name='PyErr_NoMemory' filepath='Python/errors.c' line='686' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NoMemory'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_BadArgument' mangled-name='PyErr_BadArgument' filepath='Python/errors.c' line='664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_BadArgument'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyErr_FormatFromCause' mangled-name='_PyErr_FormatFromCause' filepath='Python/errors.c' line='647' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCause'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='647' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='647' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='Python/import.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModuleDict'>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyErr_FormatFromCauseTstate' mangled-name='_PyErr_FormatFromCauseTstate' filepath='Python/errors.c' line='632' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_FormatFromCauseTstate'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='632' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='632' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/errors.c' line='633' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyErr_ChainStackItem' mangled-name='_PyErr_ChainStackItem' filepath='Python/errors.c' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainStackItem'>
+      <parameter type-id='type-id-18' name='exc_info' filepath='Python/errors.c' line='556' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_ChainExceptions' mangled-name='_PyErr_ChainExceptions' filepath='Python/errors.c' line='514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ChainExceptions'>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/errors.c' line='514' column='1'/>
+      <parameter type-id='type-id-16' name='val' filepath='Python/errors.c' line='514' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Python/errors.c' line='514' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetExcInfo' mangled-name='PyErr_SetExcInfo' filepath='Python/errors.c' line='490' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetExcInfo'>
+      <parameter type-id='type-id-16' name='p_type' filepath='Python/errors.c' line='490' column='1'/>
+      <parameter type-id='type-id-16' name='p_value' filepath='Python/errors.c' line='490' column='1'/>
+      <parameter type-id='type-id-16' name='p_traceback' filepath='Python/errors.c' line='490' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_GetExcInfo' mangled-name='PyErr_GetExcInfo' filepath='Python/errors.c' line='483' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GetExcInfo'>
+      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='483' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_GetExcInfo' mangled-name='_PyErr_GetExcInfo' filepath='Python/errors.c' line='468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetExcInfo'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='468' column='1'/>
+      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='469' column='1'/>
+      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='469' column='1'/>
+      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='469' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Clear' mangled-name='_PyErr_Clear' filepath='Python/errors.c' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Clear'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='453' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Fetch' mangled-name='PyErr_Fetch' filepath='Python/errors.c' line='445' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Fetch'>
+      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='483' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Fetch' mangled-name='_PyErr_Fetch' filepath='Python/errors.c' line='431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Fetch'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='431' column='1'/>
+      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='431' column='1'/>
+      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='431' column='1'/>
+      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='432' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_NormalizeException' mangled-name='PyErr_NormalizeException' filepath='Python/errors.c' line='423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_NormalizeException'>
+      <parameter type-id='type-id-86' name='p_type' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_value' filepath='Python/errors.c' line='483' column='1'/>
+      <parameter type-id='type-id-86' name='p_traceback' filepath='Python/errors.c' line='483' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_NormalizeException' mangled-name='_PyErr_NormalizeException' filepath='Python/errors.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NormalizeException'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='316' column='1'/>
+      <parameter type-id='type-id-86' name='exc' filepath='Python/errors.c' line='316' column='1'/>
+      <parameter type-id='type-id-86' name='val' filepath='Python/errors.c' line='317' column='1'/>
+      <parameter type-id='type-id-86' name='tb' filepath='Python/errors.c' line='317' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_ExceptionMatches' mangled-name='PyErr_ExceptionMatches' filepath='Python/errors.c' line='298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_ExceptionMatches'>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/errors.c' line='298' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyErr_ExceptionMatches' mangled-name='_PyErr_ExceptionMatches' filepath='Python/errors.c' line='291' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_ExceptionMatches'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='291' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/errors.c' line='291' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyErr_Occurred' mangled-name='PyErr_Occurred' filepath='Python/errors.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Occurred'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_SetString' mangled-name='PyErr_SetString' filepath='Python/errors.c' line='240' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetString'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='240' column='1'/>
+      <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='240' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetString' mangled-name='_PyErr_SetString' filepath='Python/errors.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetString'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='231' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='231' column='1'/>
+      <parameter type-id='type-id-3' name='string' filepath='Python/errors.c' line='232' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetNone' mangled-name='PyErr_SetNone' filepath='Python/errors.c' line='223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetNone'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='223' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetNone' mangled-name='_PyErr_SetNone' filepath='Python/errors.c' line='216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetNone'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='216' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='216' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetKeyError' mangled-name='_PyErr_SetKeyError' filepath='Python/errors.c' line='203' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetKeyError'>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/errors.c' line='203' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetObject' mangled-name='PyErr_SetObject' filepath='Python/errors.c' line='193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetObject'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='193' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/errors.c' line='193' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_GetTopmostException' mangled-name='_PyErr_GetTopmostException' filepath='Python/errors.c' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_GetTopmostException'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='77' column='1'/>
+      <return type-id='type-id-18'/>
     </function-decl>
-    <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='Python/import.c' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_ReleaseLock'>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyErr_Restore' mangled-name='PyErr_Restore' filepath='Python/errors.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Restore'>
+      <parameter type-id='type-id-16' name='type' filepath='Python/errors.c' line='69' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/errors.c' line='69' column='1'/>
+      <parameter type-id='type-id-16' name='traceback' filepath='Python/errors.c' line='69' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyImport_AcquireLock' mangled-name='_PyImport_AcquireLock' filepath='Python/import.c' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_AcquireLock'>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyErr_Restore' mangled-name='_PyErr_Restore' filepath='Python/errors.c' line='41' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Restore'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='41' column='1'/>
+      <parameter type-id='type-id-16' name='type' filepath='Python/errors.c' line='41' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/errors.c' line='41' column='1'/>
+      <parameter type-id='type-id-16' name='traceback' filepath='Python/errors.c' line='42' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='./Python/initconfig.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='Py_UTF8Mode' type-id='type-id-8' mangled-name='Py_UTF8Mode' visibility='default' filepath='./Include/fileobject.h' line='29' column='1' elf-symbol-id='Py_UTF8Mode'/>
-    <var-decl name='Py_DebugFlag' type-id='type-id-8' mangled-name='Py_DebugFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='8' column='1' elf-symbol-id='Py_DebugFlag'/>
-    <var-decl name='Py_VerboseFlag' type-id='type-id-8' mangled-name='Py_VerboseFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='9' column='1' elf-symbol-id='Py_VerboseFlag'/>
-    <var-decl name='Py_QuietFlag' type-id='type-id-8' mangled-name='Py_QuietFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='10' column='1' elf-symbol-id='Py_QuietFlag'/>
-    <var-decl name='Py_InteractiveFlag' type-id='type-id-8' mangled-name='Py_InteractiveFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='11' column='1' elf-symbol-id='Py_InteractiveFlag'/>
-    <var-decl name='Py_InspectFlag' type-id='type-id-8' mangled-name='Py_InspectFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='12' column='1' elf-symbol-id='Py_InspectFlag'/>
-    <var-decl name='Py_OptimizeFlag' type-id='type-id-8' mangled-name='Py_OptimizeFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='13' column='1' elf-symbol-id='Py_OptimizeFlag'/>
-    <var-decl name='Py_NoSiteFlag' type-id='type-id-8' mangled-name='Py_NoSiteFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='14' column='1' elf-symbol-id='Py_NoSiteFlag'/>
-    <var-decl name='Py_BytesWarningFlag' type-id='type-id-8' mangled-name='Py_BytesWarningFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='15' column='1' elf-symbol-id='Py_BytesWarningFlag'/>
-    <var-decl name='Py_FrozenFlag' type-id='type-id-8' mangled-name='Py_FrozenFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='16' column='1' elf-symbol-id='Py_FrozenFlag'/>
-    <var-decl name='Py_IgnoreEnvironmentFlag' type-id='type-id-8' mangled-name='Py_IgnoreEnvironmentFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='17' column='1' elf-symbol-id='Py_IgnoreEnvironmentFlag'/>
-    <var-decl name='Py_DontWriteBytecodeFlag' type-id='type-id-8' mangled-name='Py_DontWriteBytecodeFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='18' column='1' elf-symbol-id='Py_DontWriteBytecodeFlag'/>
-    <var-decl name='Py_NoUserSiteDirectory' type-id='type-id-8' mangled-name='Py_NoUserSiteDirectory' visibility='default' filepath='./Include/cpython/pydebug.h' line='19' column='1' elf-symbol-id='Py_NoUserSiteDirectory'/>
-    <var-decl name='Py_UnbufferedStdioFlag' type-id='type-id-8' mangled-name='Py_UnbufferedStdioFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='20' column='1' elf-symbol-id='Py_UnbufferedStdioFlag'/>
-    <var-decl name='Py_HashRandomizationFlag' type-id='type-id-8' mangled-name='Py_HashRandomizationFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='21' column='1' elf-symbol-id='Py_HashRandomizationFlag'/>
-    <var-decl name='Py_IsolatedFlag' type-id='type-id-8' mangled-name='Py_IsolatedFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='22' column='1' elf-symbol-id='Py_IsolatedFlag'/>
-    <function-decl name='_Py_GetConfigsAsDict' mangled-name='_Py_GetConfigsAsDict' filepath='./Python/initconfig.c' line='2898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfigsAsDict'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyErr_GivenExceptionMatches' mangled-name='PyErr_GivenExceptionMatches' filepath='Python/errors.c' line='259' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_GivenExceptionMatches'>
+      <parameter type-id='type-id-16' name='self' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Objects/exceptions.c' line='330' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-740' visibility='default' filepath='./Include/cpython/initconfig.h' line='7' column='1' id='type-id-741'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='_type' type-id='type-id-742' visibility='default' filepath='./Include/cpython/initconfig.h' line='12' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='func' type-id='type-id-3' visibility='default' filepath='./Include/cpython/initconfig.h' line='13' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='err_msg' type-id='type-id-3' visibility='default' filepath='./Include/cpython/initconfig.h' line='14' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='exitcode' type-id='type-id-8' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/>
-      </data-member>
-    </class-decl>
-    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='8' column='1' id='type-id-742'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='_PyStatus_TYPE_OK' value='0'/>
-      <enumerator name='_PyStatus_TYPE_ERROR' value='1'/>
-      <enumerator name='_PyStatus_TYPE_EXIT' value='2'/>
-    </enum-decl>
-    <typedef-decl name='PyStatus' type-id='type-id-741' filepath='./Include/cpython/initconfig.h' line='16' column='1' id='type-id-740'/>
-    <pointer-type-def type-id='type-id-231' size-in-bits='64' id='type-id-743'/>
-    <function-decl name='PyConfig_Read' mangled-name='PyConfig_Read' filepath='./Python/initconfig.c' line='2891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Read'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='2891' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyErr_SetObject' mangled-name='_PyErr_SetObject' filepath='Python/errors.c' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_SetObject'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='115' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/errors.c' line='115' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/errors.c' line='115' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-744'/>
-    <function-decl name='PyConfig_SetWideStringList' mangled-name='PyConfig_SetWideStringList' filepath='./Python/initconfig.c' line='2808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetWideStringList'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='2808' column='1'/>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='2808' column='1'/>
-      <parameter type-id='type-id-30' name='length' filepath='./Python/initconfig.c' line='2809' column='1'/>
-      <parameter type-id='type-id-329' name='items' filepath='./Python/initconfig.c' line='2809' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyErr_NoMemory' mangled-name='_PyErr_NoMemory' filepath='Python/errors.c' line='673' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_NoMemory'>
+      <parameter type-id='type-id-703' name='tstate' filepath='Python/errors.c' line='673' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <qualified-type-def type-id='type-id-325' const='yes' id='type-id-745'/>
-    <pointer-type-def type-id='type-id-745' size-in-bits='64' id='type-id-746'/>
-    <function-decl name='PyConfig_SetArgv' mangled-name='PyConfig_SetArgv' filepath='./Python/initconfig.c' line='2796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetArgv'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='2796' column='1'/>
-      <parameter type-id='type-id-30' name='argc' filepath='./Python/initconfig.c' line='2796' column='1'/>
-      <parameter type-id='type-id-746' name='argv' filepath='./Python/initconfig.c' line='2796' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='./Include/cpython/fileutils.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_SetBytesArgv' mangled-name='PyConfig_SetBytesArgv' filepath='./Python/initconfig.c' line='2784' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesArgv'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='2784' column='1'/>
-      <parameter type-id='type-id-30' name='argc' filepath='./Python/initconfig.c' line='2784' column='1'/>
-      <parameter type-id='type-id-192' name='argv' filepath='./Python/initconfig.c' line='2784' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyTraceBack_FromFrame' mangled-name='_PyTraceBack_FromFrame' filepath='./Include/internal/pycore_traceback.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyConfig_FromDict' mangled-name='_PyConfig_FromDict' filepath='./Python/initconfig.c' line='1211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_FromDict'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='1211' column='1'/>
-      <parameter type-id='type-id-15' name='dict' filepath='./Python/initconfig.c' line='1211' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_FatalError_TstateNULL' mangled-name='_Py_FatalError_TstateNULL' filepath='./Include/internal/pycore_pystate.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <qualified-type-def type-id='type-id-231' const='yes' id='type-id-747'/>
-    <pointer-type-def type-id='type-id-747' size-in-bits='64' id='type-id-748'/>
-    <function-decl name='_PyConfig_AsDict' mangled-name='_PyConfig_AsDict' filepath='./Python/initconfig.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_AsDict'>
-      <parameter type-id='type-id-748' name='config' filepath='./Python/initconfig.c' line='949' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyTraceBack_Print' mangled-name='PyTraceBack_Print' filepath='./Include/traceback.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_SetBytesString' mangled-name='PyConfig_SetBytesString' filepath='./Python/initconfig.c' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesString'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='847' column='1'/>
-      <parameter type-id='type-id-329' name='config_str' filepath='./Python/initconfig.c' line='847' column='1'/>
-      <parameter type-id='type-id-3' name='str' filepath='./Python/initconfig.c' line='848' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyType_GetQualName' mangled-name='_PyType_GetQualName' filepath='./Include/internal/pycore_object.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_SetString' mangled-name='PyConfig_SetString' filepath='./Python/initconfig.c' line='785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetString'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='785' column='1'/>
-      <parameter type-id='type-id-329' name='config_str' filepath='./Python/initconfig.c' line='785' column='1'/>
-      <parameter type-id='type-id-478' name='str' filepath='./Python/initconfig.c' line='785' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='strerror' mangled-name='strerror' filepath='/usr/include/string.h' line='397' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_InitIsolatedConfig' mangled-name='PyConfig_InitIsolatedConfig' filepath='./Python/initconfig.c' line='763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitIsolatedConfig'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='./Include/unicodeobject.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_InitPythonConfig' mangled-name='PyConfig_InitPythonConfig' filepath='./Python/initconfig.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitPythonConfig'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyException_SetContext' mangled-name='PyException_SetContext' filepath='./Include/pyerrors.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyConfig_InitCompatConfig' mangled-name='_PyConfig_InitCompatConfig' filepath='./Python/initconfig.c' line='688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_InitCompatConfig'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyException_GetContext' mangled-name='PyException_GetContext' filepath='./Include/pyerrors.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyConfig_Clear' mangled-name='PyConfig_Clear' filepath='./Python/initconfig.c' line='646' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Clear'>
-      <parameter type-id='type-id-743' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
-      <return type-id='type-id-69'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/frozenmain.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_FrozenMain' mangled-name='Py_FrozenMain' filepath='Python/frozenmain.c' line='17' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FrozenMain'>
+      <parameter type-id='type-id-9' name='argc' filepath='Python/frozenmain.c' line='17' column='1'/>
+      <parameter type-id='type-id-215' name='argv' filepath='Python/frozenmain.c' line='17' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-329' size-in-bits='64' id='type-id-749'/>
-    <function-decl name='Py_GetArgcArgv' mangled-name='Py_GetArgcArgv' filepath='./Python/initconfig.c' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetArgcArgv'>
-      <parameter type-id='type-id-452' name='argc' filepath='./Python/initconfig.c' line='569' column='1'/>
-      <parameter type-id='type-id-749' name='argv' filepath='./Python/initconfig.c' line='569' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='./Include/internal/pycore_runtime.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_ClearArgcArgv' mangled-name='_Py_ClearArgcArgv' filepath='./Python/initconfig.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClearArgcArgv'>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyStatus_Exception' mangled-name='PyStatus_Exception' filepath='./Include/cpython/initconfig.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_ClearStandardStreamEncoding' mangled-name='_Py_ClearStandardStreamEncoding' filepath='./Python/initconfig.c' line='513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClearStandardStreamEncoding'>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyConfig_InitPythonConfig' mangled-name='PyConfig_InitPythonConfig' filepath='./Include/cpython/initconfig.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_SetStandardStreamEncoding' mangled-name='Py_SetStandardStreamEncoding' filepath='./Python/initconfig.c' line='458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetStandardStreamEncoding'>
-      <parameter type-id='type-id-3' name='encoding' filepath='./Python/initconfig.c' line='458' column='1'/>
-      <parameter type-id='type-id-3' name='errors' filepath='./Python/initconfig.c' line='458' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='setlocale' mangled-name='setlocale' filepath='/usr/include/locale.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <qualified-type-def type-id='type-id-326' const='yes' id='type-id-750'/>
-    <pointer-type-def type-id='type-id-750' size-in-bits='64' id='type-id-751'/>
-    <function-decl name='_PyWideStringList_AsList' mangled-name='_PyWideStringList_AsList' filepath='./Python/initconfig.c' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_AsList'>
-      <parameter type-id='type-id-751' name='list' filepath='./Python/initconfig.c' line='427' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyMem_RawStrdup' mangled-name='_PyMem_RawStrdup' filepath='./Include/cpython/pymem.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyWideStringList_Extend' mangled-name='_PyWideStringList_Extend' filepath='./Python/initconfig.c' line='402' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Extend'>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='402' column='1'/>
-      <parameter type-id='type-id-751' name='list2' filepath='./Python/initconfig.c' line='402' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='./Include/fileutils.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyWideStringList_Append' mangled-name='PyWideStringList_Append' filepath='./Python/initconfig.c' line='395' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Append'>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='395' column='1'/>
-      <parameter type-id='type-id-478' name='item' filepath='./Python/initconfig.c' line='395' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='setbuf' mangled-name='setbuf' filepath='/usr/include/stdio.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyWideStringList_Insert' mangled-name='PyWideStringList_Insert' filepath='./Python/initconfig.c' line='354' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Insert'>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='354' column='1'/>
-      <parameter type-id='type-id-30' name='index' filepath='./Python/initconfig.c' line='355' column='1'/>
-      <parameter type-id='type-id-478' name='item' filepath='./Python/initconfig.c' line='355' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='Py_SetProgramName' mangled-name='Py_SetProgramName' filepath='./Include/pylifecycle.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyWideStringList_Copy' mangled-name='_PyWideStringList_Copy' filepath='./Python/initconfig.c' line='319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Copy'>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='319' column='1'/>
-      <parameter type-id='type-id-751' name='list2' filepath='./Python/initconfig.c' line='319' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='./Include/cpython/pylifecycle.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyWideStringList_Clear' mangled-name='_PyWideStringList_Clear' filepath='./Python/initconfig.c' line='306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Clear'>
-      <parameter type-id='type-id-744' name='list' filepath='./Python/initconfig.c' line='306' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyConfig_Clear' mangled-name='PyConfig_Clear' filepath='./Include/cpython/initconfig.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_Exception' mangled-name='PyStatus_Exception' filepath='./Python/initconfig.c' line='266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exception'>
-      <parameter type-id='type-id-740' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PySys_SetArgv' mangled-name='PySys_SetArgv' filepath='./Include/sysmodule.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_IsExit' mangled-name='PyStatus_IsExit' filepath='./Python/initconfig.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsExit'>
-      <parameter type-id='type-id-740' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='./Include/import.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_IsError' mangled-name='PyStatus_IsError' filepath='./Python/initconfig.c' line='260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsError'>
-      <parameter type-id='type-id-740' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='./Include/pylifecycle.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_Exit' mangled-name='PyStatus_Exit' filepath='./Python/initconfig.c' line='256' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exit'>
-      <parameter type-id='type-id-8' name='exitcode' filepath='./Python/initconfig.c' line='256' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='Py_GetCopyright' mangled-name='Py_GetCopyright' filepath='./Include/pylifecycle.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_NoMemory' mangled-name='PyStatus_NoMemory' filepath='./Python/initconfig.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_NoMemory'>
-      <return type-id='type-id-740'/>
+    <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='./Include/pylifecycle.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_Error' mangled-name='PyStatus_Error' filepath='./Python/initconfig.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Error'>
-      <parameter type-id='type-id-3' name='err_msg' filepath='./Python/initconfig.c' line='246' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='./Include/cpython/pythonrun.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyStatus_Ok' mangled-name='PyStatus_Ok' filepath='./Python/initconfig.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Ok'>
-      <return type-id='type-id-740'/>
+    <function-decl name='Py_ExitStatusException' mangled-name='Py_ExitStatusException' filepath='./Include/cpython/pylifecycle.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/marshal.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyMarshal_Init' mangled-name='PyMarshal_Init' filepath='Python/marshal.c' line='1821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_Init'>
-      <return type-id='type-id-15'/>
+  <abi-instr version='1.0' address-size='64' path='Python/future.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyErr_SyntaxLocationObject' mangled-name='PyErr_SyntaxLocationObject' filepath='./Include/cpython/pyerrors.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyMarshal_WriteObjectToString' mangled-name='PyMarshal_WriteObjectToString' filepath='Python/marshal.c' line='1570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToString'>
-      <parameter type-id='type-id-15' name='x' filepath='Python/marshal.c' line='1570' column='1'/>
-      <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='1570' column='1'/>
-      <return type-id='type-id-15'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/getargs.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyArg_NoKwnames' mangled-name='_PyArg_NoKwnames' filepath='Python/getargs.c' line='2761' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKwnames'>
+      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2761' column='1'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Python/getargs.c' line='2761' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='Python/marshal.c' line='1549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromString'>
-      <parameter type-id='type-id-3' name='bytes' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Objects/bytearrayobject.c' line='106' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyArg_NoPositional' mangled-name='_PyArg_NoPositional' filepath='Python/getargs.c' line='2744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoPositional'>
+      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2744' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='2744' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_ReadObjectFromFile' mangled-name='PyMarshal_ReadObjectFromFile' filepath='Python/marshal.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1529' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyArg_NoKeywords' mangled-name='_PyArg_NoKeywords' filepath='Python/getargs.c' line='2725' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_NoKeywords'>
+      <parameter type-id='type-id-3' name='funcname' filepath='Python/getargs.c' line='2744' column='1'/>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='2744' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='Python/marshal.c' line='1504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLastObjectFromFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1504' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyArg_UnpackStack' mangled-name='_PyArg_UnpackStack' filepath='Python/getargs.c' line='2698' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackStack'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='2698' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='2698' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2698' column='1'/>
+      <parameter type-id='type-id-31' name='min' filepath='Python/getargs.c' line='2699' column='1'/>
+      <parameter type-id='type-id-31' name='max' filepath='Python/getargs.c' line='2699' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='Python/marshal.c' line='1468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLongFromFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1468' column='1'/>
-      <return type-id='type-id-32'/>
+    <function-decl name='PyArg_UnpackTuple' mangled-name='PyArg_UnpackTuple' filepath='Python/getargs.c' line='2672' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_UnpackTuple'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='2672' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2672' column='1'/>
+      <parameter type-id='type-id-31' name='min' filepath='Python/getargs.c' line='2672' column='1'/>
+      <parameter type-id='type-id-31' name='max' filepath='Python/getargs.c' line='2672' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_ReadShortFromFile' mangled-name='PyMarshal_ReadShortFromFile' filepath='Python/marshal.c' line='1452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadShortFromFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1452' column='1'/>
-      <return type-id='type-id-8'/>
+    <class-decl name='_PyArg_Parser' size-in-bits='512' is-struct='yes' visibility='default' filepath='./Include/modsupport.h' line='92' column='1' id='type-id-704'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='format' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='93' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='keywords' type-id='type-id-705' visibility='default' filepath='./Include/modsupport.h' line='94' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='fname' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='95' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='custom_msg' type-id='type-id-3' visibility='default' filepath='./Include/modsupport.h' line='96' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='pos' type-id='type-id-9' visibility='default' filepath='./Include/modsupport.h' line='97' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='288'>
+        <var-decl name='min' type-id='type-id-9' visibility='default' filepath='./Include/modsupport.h' line='98' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='max' type-id='type-id-9' visibility='default' filepath='./Include/modsupport.h' line='99' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='kwtuple' type-id='type-id-16' visibility='default' filepath='./Include/modsupport.h' line='100' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='next' type-id='type-id-706' visibility='default' filepath='./Include/modsupport.h' line='101' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-5' size-in-bits='64' id='type-id-705'/>
+    <pointer-type-def type-id='type-id-704' size-in-bits='64' id='type-id-706'/>
+    <function-decl name='_PyArg_UnpackKeywords' mangled-name='_PyArg_UnpackKeywords' filepath='Python/getargs.c' line='2268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_UnpackKeywords'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='2268' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='2268' column='1'/>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Python/getargs.c' line='2269' column='1'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Python/getargs.c' line='2269' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='2270' column='1'/>
+      <parameter type-id='type-id-9' name='minpos' filepath='Python/getargs.c' line='2271' column='1'/>
+      <parameter type-id='type-id-9' name='maxpos' filepath='Python/getargs.c' line='2271' column='1'/>
+      <parameter type-id='type-id-9' name='minkw' filepath='Python/getargs.c' line='2271' column='1'/>
+      <parameter type-id='type-id-86' name='buf' filepath='Python/getargs.c' line='2272' column='1'/>
+      <return type-id='type-id-156'/>
     </function-decl>
-    <function-decl name='PyMarshal_WriteObjectToFile' mangled-name='PyMarshal_WriteObjectToFile' filepath='Python/marshal.c' line='595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToFile'>
-      <parameter type-id='type-id-15' name='x' filepath='Python/marshal.c' line='595' column='1'/>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='595' column='1'/>
-      <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='595' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyArg_ValidateKeywordArguments' mangled-name='PyArg_ValidateKeywordArguments' filepath='Python/getargs.c' line='1557' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ValidateKeywordArguments'>
+      <parameter type-id='type-id-16' name='kwargs' filepath='Python/getargs.c' line='1557' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyMarshal_WriteLongToFile' mangled-name='PyMarshal_WriteLongToFile' filepath='Python/marshal.c' line='580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteLongToFile'>
-      <parameter type-id='type-id-32' name='x' filepath='Python/marshal.c' line='580' column='1'/>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='580' column='1'/>
-      <parameter type-id='type-id-8' name='version' filepath='Python/marshal.c' line='580' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1543' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1543' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1544' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1544' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/modsupport.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='_Py_PackageContext' type-id='type-id-3' mangled-name='_Py_PackageContext' visibility='default' filepath='./Include/modsupport.h' line='257' column='1' elf-symbol-id='_Py_PackageContext'/>
-    <function-decl name='PyModule_AddType' mangled-name='PyModule_AddType' filepath='Python/modsupport.c' line='704' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddType'>
-      <parameter type-id='type-id-15' name='module' filepath='Python/modsupport.c' line='704' column='1'/>
-      <parameter type-id='type-id-31' name='type' filepath='Python/modsupport.c' line='704' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_VaParseTupleAndKeywordsFast' mangled-name='_PyArg_VaParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywordsFast'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1543' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1543' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1544' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1544' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyModule_AddStringConstant' mangled-name='PyModule_AddStringConstant' filepath='Python/modsupport.c' line='692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddStringConstant'>
-      <parameter type-id='type-id-15' name='m' filepath='Python/modsupport.c' line='692' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='692' column='1'/>
-      <parameter type-id='type-id-3' name='value' filepath='Python/modsupport.c' line='692' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_ParseStackAndKeywords_SizeT' mangled-name='_PyArg_ParseStackAndKeywords_SizeT' filepath='Python/getargs.c' line='1515' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords_SizeT'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1516' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyModule_AddIntConstant' mangled-name='PyModule_AddIntConstant' filepath='Python/modsupport.c' line='680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddIntConstant'>
-      <parameter type-id='type-id-15' name='m' filepath='Python/modsupport.c' line='680' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='680' column='1'/>
-      <parameter type-id='type-id-32' name='value' filepath='Python/modsupport.c' line='680' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_ParseStackAndKeywords' mangled-name='_PyArg_ParseStackAndKeywords' filepath='Python/getargs.c' line='1502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStackAndKeywords'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-16' name='kwnames' filepath='Python/getargs.c' line='1515' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1516' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyModule_AddObject' mangled-name='PyModule_AddObject' filepath='Python/modsupport.c' line='670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddObject'>
-      <parameter type-id='type-id-15' name='mod' filepath='Python/modsupport.c' line='670' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='670' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/modsupport.c' line='670' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_ParseTupleAndKeywordsFast_SizeT' mangled-name='_PyArg_ParseTupleAndKeywordsFast_SizeT' filepath='Python/getargs.c' line='1489' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1489' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1489' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1490' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyModule_AddObjectRef' mangled-name='PyModule_AddObjectRef' filepath='Python/modsupport.c' line='637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddObjectRef'>
-      <parameter type-id='type-id-15' name='mod' filepath='Python/modsupport.c' line='670' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='670' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/modsupport.c' line='670' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_ParseTupleAndKeywordsFast' mangled-name='_PyArg_ParseTupleAndKeywordsFast' filepath='Python/getargs.c' line='1476' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywordsFast'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1489' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1489' column='1'/>
+      <parameter type-id='type-id-706' name='parser' filepath='Python/getargs.c' line='1490' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_VaBuildStack_SizeT' mangled-name='_Py_VaBuildStack_SizeT' filepath='Python/modsupport.c' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack_SizeT'>
-      <parameter type-id='type-id-86' name='small_stack' filepath='Python/modsupport.c' line='581' column='1'/>
-      <parameter type-id='type-id-30' name='small_stack_len' filepath='Python/modsupport.c' line='581' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='582' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='582' column='1'/>
-      <parameter type-id='type-id-125' name='p_nargs' filepath='Python/modsupport.c' line='582' column='1'/>
-      <return type-id='type-id-86'/>
+    <function-decl name='_PyArg_VaParseTupleAndKeywords_SizeT' mangled-name='_PyArg_VaParseTupleAndKeywords_SizeT' filepath='Python/getargs.c' line='1450' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParseTupleAndKeywords_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1450' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1451' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1452' column='1'/>
+      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1453' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1453' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_VaBuildStack' mangled-name='_Py_VaBuildStack' filepath='Python/modsupport.c' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack'>
-      <parameter type-id='type-id-86' name='small_stack' filepath='Python/modsupport.c' line='581' column='1'/>
-      <parameter type-id='type-id-30' name='small_stack_len' filepath='Python/modsupport.c' line='581' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='582' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='582' column='1'/>
-      <parameter type-id='type-id-125' name='p_nargs' filepath='Python/modsupport.c' line='582' column='1'/>
-      <return type-id='type-id-86'/>
+    <function-decl name='PyArg_VaParseTupleAndKeywords' mangled-name='PyArg_VaParseTupleAndKeywords' filepath='Python/getargs.c' line='1425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParseTupleAndKeywords'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1450' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1451' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1452' column='1'/>
+      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1453' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='1453' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_VaBuildValue_SizeT' mangled-name='_Py_VaBuildValue_SizeT' filepath='Python/modsupport.c' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildValue_SizeT'>
-      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='545' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='545' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyArg_ParseTupleAndKeywords_SizeT' mangled-name='_PyArg_ParseTupleAndKeywords_SizeT' filepath='Python/getargs.c' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTupleAndKeywords_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1399' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1400' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1401' column='1'/>
+      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1402' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_VaBuildValue' mangled-name='Py_VaBuildValue' filepath='Python/modsupport.c' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_VaBuildValue'>
-      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='545' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='545' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyArg_ParseTupleAndKeywords' mangled-name='PyArg_ParseTupleAndKeywords' filepath='Python/getargs.c' line='1375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTupleAndKeywords'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='1399' column='1'/>
+      <parameter type-id='type-id-16' name='keywords' filepath='Python/getargs.c' line='1400' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='1401' column='1'/>
+      <parameter type-id='type-id-215' name='kwlist' filepath='Python/getargs.c' line='1402' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_BuildValue_SizeT' mangled-name='_Py_BuildValue_SizeT' filepath='Python/modsupport.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BuildValue_SizeT'>
-      <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
+    <function-decl name='_PyArg_BadArgument' mangled-name='_PyArg_BadArgument' filepath='Python/getargs.c' line='617' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_BadArgument'>
+      <parameter type-id='type-id-3' name='fname' filepath='Python/getargs.c' line='617' column='1'/>
+      <parameter type-id='type-id-3' name='displayname' filepath='Python/getargs.c' line='617' column='1'/>
+      <parameter type-id='type-id-3' name='expected' filepath='Python/getargs.c' line='618' column='1'/>
+      <parameter type-id='type-id-16' name='arg' filepath='Python/getargs.c' line='618' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_VaParse_SizeT' mangled-name='_PyArg_VaParse_SizeT' filepath='Python/getargs.c' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_VaParse_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='186' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='186' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='186' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyArg_VaParse' mangled-name='PyArg_VaParse' filepath='Python/getargs.c' line='173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_VaParse'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='186' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='186' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/getargs.c' line='186' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseStack_SizeT' mangled-name='_PyArg_ParseStack_SizeT' filepath='Python/getargs.c' line='160' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack_SizeT'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='160' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='160' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='160' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_BuildValue' mangled-name='Py_BuildValue' filepath='Python/modsupport.c' line='517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BuildValue'>
-      <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
+    <function-decl name='_PyArg_ParseStack' mangled-name='_PyArg_ParseStack' filepath='Python/getargs.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseStack'>
+      <parameter type-id='type-id-156' name='args' filepath='Python/getargs.c' line='160' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='160' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='160' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='Python/modsupport.c' line='18' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_convert_optional_to_ssize_t'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/capsule.c' line='181' column='1'/>
-      <parameter type-id='type-id-20' name='context' filepath='Objects/capsule.c' line='181' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArg_ParseTuple_SizeT' mangled-name='_PyArg_ParseTuple_SizeT' filepath='Python/getargs.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_ParseTuple_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/mysnprintf.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='Python/mysnprintf.c' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_vsnprintf'>
-      <parameter type-id='type-id-72' name='str' filepath='Python/mysnprintf.c' line='52' column='1'/>
-      <parameter type-id='type-id-157' name='size' filepath='Python/mysnprintf.c' line='52' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/mysnprintf.c' line='52' column='1'/>
-      <parameter type-id='type-id-217' name='va' filepath='Python/mysnprintf.c' line='52' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyArg_ParseTuple' mangled-name='PyArg_ParseTuple' filepath='Python/getargs.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_ParseTuple'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyOS_snprintf' mangled-name='PyOS_snprintf' filepath='Python/mysnprintf.c' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_snprintf'>
-      <parameter type-id='type-id-72' name='str' filepath='Python/mysnprintf.c' line='40' column='1'/>
-      <parameter type-id='type-id-157' name='size' filepath='Python/mysnprintf.c' line='40' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/mysnprintf.c' line='40' column='1'/>
+    <function-decl name='_PyArg_Parse_SizeT' mangled-name='_PyArg_Parse_SizeT' filepath='Python/getargs.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_Parse_SizeT'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyArg_Parse' mangled-name='PyArg_Parse' filepath='Python/getargs.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyArg_Parse'>
+      <parameter type-id='type-id-16' name='args' filepath='Python/getargs.c' line='135' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/getargs.c' line='135' column='1'/>
       <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyArg_CheckPositional' mangled-name='_PyArg_CheckPositional' filepath='Python/getargs.c' line='2610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArg_CheckPositional'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/getargs.c' line='2610' column='1'/>
+      <parameter type-id='type-id-31' name='nargs' filepath='Python/getargs.c' line='2610' column='1'/>
+      <parameter type-id='type-id-31' name='min' filepath='Python/getargs.c' line='2611' column='1'/>
+      <parameter type-id='type-id-31' name='max' filepath='Python/getargs.c' line='2611' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyDict_HasOnlyStringKeys' mangled-name='_PyDict_HasOnlyStringKeys' filepath='./Include/cpython/dictobject.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyByteArray_Size' mangled-name='PyByteArray_Size' filepath='./Include/bytearrayobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUnicodeAndSize' mangled-name='PyUnicode_AsUnicodeAndSize' filepath='./Include/cpython/unicodeobject.h' line='595' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsUnsignedLongMask' mangled-name='PyLong_AsUnsignedLongMask' filepath='./Include/longobject.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_AsUnsignedLongLongMask' mangled-name='PyLong_AsUnsignedLongLongMask' filepath='./Include/longobject.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/mystrtoul.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='Python/mystrtoul.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtol'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/mystrtoul.c' line='263' column='1'/>
-      <parameter type-id='type-id-215' name='ptr' filepath='Python/mystrtoul.c' line='263' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Python/mystrtoul.c' line='263' column='1'/>
-      <return type-id='type-id-32'/>
+  <abi-instr version='1.0' address-size='64' path='Python/getcompiler.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='Python/getcompiler.c' line='24' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCompiler'>
+      <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='PyOS_strtoul' mangled-name='PyOS_strtoul' filepath='Python/mystrtoul.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtoul'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/mystrtoul.c' line='95' column='1'/>
-      <parameter type-id='type-id-215' name='ptr' filepath='Python/mystrtoul.c' line='95' column='1'/>
-      <parameter type-id='type-id-8' name='base' filepath='Python/mystrtoul.c' line='95' column='1'/>
-      <return type-id='type-id-18'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/getcopyright.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_GetCopyright' mangled-name='Py_GetCopyright' filepath='Python/getcopyright.c' line='20' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetCopyright'>
+      <return type-id='type-id-3'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pathconfig.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_PyPathConfig' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='11' column='1' id='type-id-752'>
+  <abi-instr version='1.0' address-size='64' path='./Python/getplatform.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='./Python/getplatform.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPlatform'>
+      <return type-id='type-id-3'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/getversion.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_GetVersion' mangled-name='Py_GetVersion' filepath='Python/getversion.c' line='9' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetVersion'>
+      <return type-id='type-id-3'/>
+    </function-decl>
+    <function-decl name='Py_GetCompiler' mangled-name='Py_GetCompiler' filepath='./Include/pylifecycle.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_GetBuildInfo' mangled-name='Py_GetBuildInfo' filepath='./Include/pylifecycle.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/hamt.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='_PyHamtItems_Type' type-id='type-id-149' mangled-name='_PyHamtItems_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='70' column='1' elf-symbol-id='_PyHamtItems_Type'/>
+    <var-decl name='_PyHamtKeys_Type' type-id='type-id-149' mangled-name='_PyHamtKeys_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='68' column='1' elf-symbol-id='_PyHamtKeys_Type'/>
+    <var-decl name='_PyHamtValues_Type' type-id='type-id-149' mangled-name='_PyHamtValues_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='69' column='1' elf-symbol-id='_PyHamtValues_Type'/>
+    <var-decl name='_PyHamt_Type' type-id='type-id-149' mangled-name='_PyHamt_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='64' column='1' elf-symbol-id='_PyHamt_Type'/>
+    <var-decl name='_PyHamt_ArrayNode_Type' type-id='type-id-149' mangled-name='_PyHamt_ArrayNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='65' column='1' elf-symbol-id='_PyHamt_ArrayNode_Type'/>
+    <var-decl name='_PyHamt_BitmapNode_Type' type-id='type-id-149' mangled-name='_PyHamt_BitmapNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='66' column='1' elf-symbol-id='_PyHamt_BitmapNode_Type'/>
+    <var-decl name='_PyHamt_CollisionNode_Type' type-id='type-id-149' mangled-name='_PyHamt_CollisionNode_Type' visibility='default' filepath='./Include/internal/pycore_hamt.h' line='67' column='1' elf-symbol-id='_PyHamt_CollisionNode_Type'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/hashtable.c' comp-dir-path='/src' language='LANG_C99'>
+    <class-decl name='_Py_hashtable_t' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='60' column='1' id='type-id-707'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='program_full_path' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='13' column='1'/>
+        <var-decl name='nentries' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='61' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='prefix' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='14' column='1'/>
+        <var-decl name='nbuckets' type-id='type-id-157' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='62' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='exec_prefix' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='15' column='1'/>
+        <var-decl name='buckets' type-id='type-id-708' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='63' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='module_search_path' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='17' column='1'/>
+        <var-decl name='get_entry_func' type-id='type-id-709' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='65' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='program_name' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='19' column='1'/>
+        <var-decl name='hash_func' type-id='type-id-710' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='66' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='home' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='21' column='1'/>
+        <var-decl name='compare_func' type-id='type-id-711' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='67' column='1'/>
       </data-member>
-    </class-decl>
-    <typedef-decl name='_PyPathConfig' type-id='type-id-752' filepath='./Include/internal/pycore_pathconfig.h' line='31' column='1' id='type-id-753'/>
-    <var-decl name='_Py_path_config' type-id='type-id-753' mangled-name='_Py_path_config' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='44' column='1' elf-symbol-id='_Py_path_config'/>
-    <function-decl name='Py_GetProgramName' mangled-name='Py_GetProgramName' filepath='Python/pathconfig.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramName'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='Py_GetPythonHome' mangled-name='Py_GetPythonHome' filepath='Python/pathconfig.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPythonHome'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='Py_GetProgramFullPath' mangled-name='Py_GetProgramFullPath' filepath='Python/pathconfig.c' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramFullPath'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='Py_GetExecPrefix' mangled-name='Py_GetExecPrefix' filepath='Python/pathconfig.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetExecPrefix'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='Py_GetPrefix' mangled-name='Py_GetPrefix' filepath='Python/pathconfig.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPrefix'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='Py_GetPath' mangled-name='Py_GetPath' filepath='Python/pathconfig.c' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPath'>
-      <return type-id='type-id-325'/>
-    </function-decl>
-    <function-decl name='_Py_SetProgramFullPath' mangled-name='_Py_SetProgramFullPath' filepath='Python/pathconfig.c' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetProgramFullPath'>
-      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='Py_SetProgramName' mangled-name='Py_SetProgramName' filepath='Python/pathconfig.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetProgramName'>
-      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='Py_SetPythonHome' mangled-name='Py_SetPythonHome' filepath='Python/pathconfig.c' line='507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPythonHome'>
-      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='Py_SetPath' mangled-name='Py_SetPath' filepath='Python/pathconfig.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPath'>
-      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/preconfig.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='Py_FileSystemDefaultEncoding' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncoding' visibility='default' filepath='./Include/fileobject.h' line='22' column='1' elf-symbol-id='Py_FileSystemDefaultEncoding'/>
-    <var-decl name='Py_HasFileSystemDefaultEncoding' type-id='type-id-8' mangled-name='Py_HasFileSystemDefaultEncoding' visibility='default' filepath='./Include/fileobject.h' line='26' column='1' elf-symbol-id='Py_HasFileSystemDefaultEncoding'/>
-    <var-decl name='Py_FileSystemDefaultEncodeErrors' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncodeErrors' visibility='default' filepath='./Include/fileobject.h' line='24' column='1' elf-symbol-id='Py_FileSystemDefaultEncodeErrors'/>
-    <function-decl name='_Py_get_xoption' mangled-name='_Py_get_xoption' filepath='Python/preconfig.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_xoption'>
-      <parameter type-id='type-id-751' name='xoptions' filepath='Python/preconfig.c' line='583' column='1'/>
-      <parameter type-id='type-id-478' name='name' filepath='Python/preconfig.c' line='583' column='1'/>
-      <return type-id='type-id-478'/>
-    </function-decl>
-    <function-decl name='_Py_get_env_flag' mangled-name='_Py_get_env_flag' filepath='Python/preconfig.c' line='565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_env_flag'>
-      <parameter type-id='type-id-8' name='use_environment' filepath='Python/preconfig.c' line='565' column='1'/>
-      <parameter type-id='type-id-452' name='flag' filepath='Python/preconfig.c' line='565' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/preconfig.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_Py_str_to_int' mangled-name='_Py_str_to_int' filepath='Python/preconfig.c' line='547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_str_to_int'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/preconfig.c' line='547' column='1'/>
-      <parameter type-id='type-id-452' name='result' filepath='Python/preconfig.c' line='547' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_GetEnv' mangled-name='_Py_GetEnv' filepath='Python/preconfig.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetEnv'>
-      <parameter type-id='type-id-8' name='use_environment' filepath='Python/preconfig.c' line='528' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/preconfig.c' line='528' column='1'/>
-      <return type-id='type-id-3'/>
-    </function-decl>
-    <pointer-type-def type-id='type-id-257' size-in-bits='64' id='type-id-754'/>
-    <function-decl name='PyPreConfig_InitIsolatedConfig' mangled-name='PyPreConfig_InitIsolatedConfig' filepath='Python/preconfig.c' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitIsolatedConfig'>
-      <parameter type-id='type-id-754' name='config' filepath='Python/preconfig.c' line='340' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyPreConfig_InitPythonConfig' mangled-name='PyPreConfig_InitPythonConfig' filepath='Python/preconfig.c' line='319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitPythonConfig'>
-      <parameter type-id='type-id-754' name='config' filepath='Python/preconfig.c' line='340' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyPreConfig_InitCompatConfig' mangled-name='_PyPreConfig_InitCompatConfig' filepath='Python/preconfig.c' line='281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPreConfig_InitCompatConfig'>
-      <parameter type-id='type-id-754' name='config' filepath='Python/preconfig.c' line='340' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <class-decl name='_PyArgv' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='66' column='1' id='type-id-755'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='argc' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='67' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='use_bytes_argv' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='68' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='bytes_argv' type-id='type-id-192' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='69' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='wchar_argv' type-id='type-id-746' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='70' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='_PyArgv' type-id='type-id-755' filepath='./Include/internal/pycore_initconfig.h' line='71' column='1' id='type-id-756'/>
-    <qualified-type-def type-id='type-id-756' const='yes' id='type-id-757'/>
-    <pointer-type-def type-id='type-id-757' size-in-bits='64' id='type-id-758'/>
-    <function-decl name='_PyArgv_AsWstrList' mangled-name='_PyArgv_AsWstrList' filepath='Python/preconfig.c' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArgv_AsWstrList'>
-      <parameter type-id='type-id-758' name='args' filepath='Python/preconfig.c' line='75' column='1'/>
-      <parameter type-id='type-id-744' name='list' filepath='Python/preconfig.c' line='75' column='1'/>
-      <return type-id='type-id-740'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pyarena.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_arena' size-in-bits='192' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='46' column='1' id='type-id-697'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='a_head' type-id='type-id-759' visibility='default' filepath='Python/pyarena.c' line='51' column='1'/>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='key_destroy_func' type-id='type-id-712' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='68' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='a_cur' type-id='type-id-759' visibility='default' filepath='Python/pyarena.c' line='58' column='1'/>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='value_destroy_func' type-id='type-id-712' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='69' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='a_objects' type-id='type-id-15' visibility='default' filepath='Python/pyarena.c' line='64' column='1'/>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='alloc' type-id='type-id-713' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='70' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='_block' size-in-bits='256' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='17' column='1' id='type-id-760'>
+    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-714' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='17' column='1' id='type-id-715'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ab_size' type-id='type-id-157' visibility='default' filepath='Python/pyarena.c' line='22' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='ab_offset' type-id='type-id-157' visibility='default' filepath='Python/pyarena.c' line='27' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='ab_next' type-id='type-id-761' visibility='default' filepath='Python/pyarena.c' line='33' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='ab_mem' type-id='type-id-20' visibility='default' filepath='Python/pyarena.c' line='38' column='1'/>
+        <var-decl name='head' type-id='type-id-716' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='18' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-760' size-in-bits='64' id='type-id-761'/>
-    <typedef-decl name='block' type-id='type-id-760' filepath='Python/pyarena.c' line='39' column='1' id='type-id-762'/>
-    <pointer-type-def type-id='type-id-762' size-in-bits='64' id='type-id-759'/>
-    <function-decl name='_PyArena_AddPyObject' mangled-name='_PyArena_AddPyObject' filepath='Python/pyarena.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_AddPyObject'>
-      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='204' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pyarena.c' line='204' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyArena_Malloc' mangled-name='_PyArena_Malloc' filepath='Python/pyarena.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_Malloc'>
-      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='181' column='1'/>
-      <parameter type-id='type-id-157' name='size' filepath='Python/pyarena.c' line='181' column='1'/>
-      <return type-id='type-id-20'/>
-    </function-decl>
-    <function-decl name='_PyArena_Free' mangled-name='_PyArena_Free' filepath='Python/pyarena.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_Free'>
-      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='158' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyArena_New' mangled-name='_PyArena_New' filepath='Python/pyarena.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_New'>
-      <return type-id='type-id-699'/>
-    </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pyctype.c' comp-dir-path='/src' language='LANG_C99'>
-    <qualified-type-def type-id='type-id-65' const='yes' id='type-id-763'/>
-
-    <array-type-def dimensions='1' type-id='type-id-763' size-in-bits='8192' id='type-id-764'>
-      <subrange length='256' type-id='type-id-18' id='type-id-362'/>
-
-    </array-type-def>
-    <qualified-type-def type-id='type-id-764' const='yes' id='type-id-765'/>
-    <var-decl name='_Py_ctype_table' type-id='type-id-765' mangled-name='_Py_ctype_table' visibility='default' filepath='./Include/cpython/pyctype.h' line='16' column='1' elf-symbol-id='_Py_ctype_table'/>
-
-    <array-type-def dimensions='1' type-id='type-id-439' size-in-bits='2048' id='type-id-766'>
-      <subrange length='256' type-id='type-id-18' id='type-id-362'/>
-
-    </array-type-def>
-    <qualified-type-def type-id='type-id-766' const='yes' id='type-id-767'/>
-    <var-decl name='_Py_ctype_tolower' type-id='type-id-767' mangled-name='_Py_ctype_tolower' visibility='default' filepath='./Include/cpython/pyctype.h' line='29' column='1' elf-symbol-id='_Py_ctype_tolower'/>
-    <var-decl name='_Py_ctype_toupper' type-id='type-id-767' mangled-name='_Py_ctype_toupper' visibility='default' filepath='./Include/cpython/pyctype.h' line='30' column='1' elf-symbol-id='_Py_ctype_toupper'/>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pyhash.c' comp-dir-path='/src' language='LANG_C99'>
-    <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='55' column='1' id='type-id-768'>
-      <data-member access='private'>
-        <var-decl name='uc' type-id='type-id-769' visibility='default' filepath='./Include/pyhash.h' line='57' column='1'/>
-      </data-member>
-      <data-member access='private'>
-        <var-decl name='fnv' type-id='type-id-770' visibility='default' filepath='./Include/pyhash.h' line='62' column='1'/>
-      </data-member>
-      <data-member access='private'>
-        <var-decl name='siphash' type-id='type-id-771' visibility='default' filepath='./Include/pyhash.h' line='67' column='1'/>
-      </data-member>
-      <data-member access='private'>
-        <var-decl name='djbx33a' type-id='type-id-772' visibility='default' filepath='./Include/pyhash.h' line='72' column='1'/>
-      </data-member>
-      <data-member access='private'>
-        <var-decl name='expat' type-id='type-id-773' visibility='default' filepath='./Include/pyhash.h' line='76' column='1'/>
-      </data-member>
-    </union-decl>
-
-    <array-type-def dimensions='1' type-id='type-id-341' size-in-bits='192' id='type-id-769'>
-      <subrange length='24' type-id='type-id-18' id='type-id-774'/>
-
-    </array-type-def>
-    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='59' column='1' id='type-id-770'>
+    <class-decl name='_Py_slist_item_s' size-in-bits='64' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='13' column='1' id='type-id-717'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='prefix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='60' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='suffix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='61' column='1'/>
+        <var-decl name='next' type-id='type-id-718' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='14' column='1'/>
       </data-member>
     </class-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='64' column='1' id='type-id-771'>
+    <pointer-type-def type-id='type-id-717' size-in-bits='64' id='type-id-718'/>
+    <typedef-decl name='_Py_slist_item_t' type-id='type-id-717' filepath='./Include/internal/pycore_hashtable.h' line='15' column='1' id='type-id-719'/>
+    <pointer-type-def type-id='type-id-719' size-in-bits='64' id='type-id-716'/>
+    <typedef-decl name='_Py_slist_t' type-id='type-id-715' filepath='./Include/internal/pycore_hashtable.h' line='19' column='1' id='type-id-714'/>
+    <pointer-type-def type-id='type-id-714' size-in-bits='64' id='type-id-708'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-720' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='28' column='1' id='type-id-721'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='k0' type-id='type-id-21' visibility='default' filepath='./Include/pyhash.h' line='65' column='1'/>
+        <var-decl name='_Py_slist_item' type-id='type-id-719' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='30' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='k1' type-id='type-id-21' visibility='default' filepath='./Include/pyhash.h' line='66' column='1'/>
-      </data-member>
-    </class-decl>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='69' column='1' id='type-id-772'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='padding' type-id='type-id-775' visibility='default' filepath='./Include/pyhash.h' line='70' column='1'/>
+        <var-decl name='key_hash' type-id='type-id-722' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='32' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='suffix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='71' column='1'/>
-      </data-member>
-    </class-decl>
-
-    <array-type-def dimensions='1' type-id='type-id-341' size-in-bits='128' id='type-id-775'>
-      <subrange length='16' type-id='type-id-18' id='type-id-776'/>
-
-    </array-type-def>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='73' column='1' id='type-id-773'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='padding' type-id='type-id-775' visibility='default' filepath='./Include/pyhash.h' line='74' column='1'/>
+        <var-decl name='key' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='33' column='1'/>
       </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='hashsalt' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='75' column='1'/>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='value' type-id='type-id-21' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='34' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='_Py_HashSecret_t' type-id='type-id-768' filepath='./Include/pyhash.h' line='77' column='1' id='type-id-777'/>
-    <var-decl name='_Py_HashSecret' type-id='type-id-777' mangled-name='_Py_HashSecret' visibility='default' filepath='./Include/pyhash.h' line='78' column='1' elf-symbol-id='_Py_HashSecret'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-778' visibility='default' filepath='./Include/pyhash.h' line='86' column='1' id='type-id-779'>
+    <typedef-decl name='Py_uhash_t' type-id='type-id-157' filepath='./Include/pyport.h' line='119' column='1' id='type-id-722'/>
+    <typedef-decl name='_Py_hashtable_entry_t' type-id='type-id-721' filepath='./Include/internal/pycore_hashtable.h' line='35' column='1' id='type-id-720'/>
+    <pointer-type-def type-id='type-id-720' size-in-bits='64' id='type-id-723'/>
+    <typedef-decl name='_Py_hashtable_t' type-id='type-id-707' filepath='./Include/internal/pycore_hashtable.h' line='42' column='1' id='type-id-724'/>
+    <pointer-type-def type-id='type-id-724' size-in-bits='64' id='type-id-725'/>
+    <pointer-type-def type-id='type-id-726' size-in-bits='64' id='type-id-727'/>
+    <typedef-decl name='_Py_hashtable_get_entry_func' type-id='type-id-727' filepath='./Include/internal/pycore_hashtable.h' line='47' column='1' id='type-id-709'/>
+    <pointer-type-def type-id='type-id-728' size-in-bits='64' id='type-id-729'/>
+    <typedef-decl name='_Py_hashtable_hash_func' type-id='type-id-729' filepath='./Include/internal/pycore_hashtable.h' line='44' column='1' id='type-id-710'/>
+    <pointer-type-def type-id='type-id-730' size-in-bits='64' id='type-id-731'/>
+    <typedef-decl name='_Py_hashtable_compare_func' type-id='type-id-731' filepath='./Include/internal/pycore_hashtable.h' line='45' column='1' id='type-id-711'/>
+    <typedef-decl name='_Py_hashtable_destroy_func' type-id='type-id-20' filepath='./Include/internal/pycore_hashtable.h' line='46' column='1' id='type-id-712'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-713' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='50' column='1' id='type-id-732'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='hash' type-id='type-id-780' visibility='default' filepath='./Include/pyhash.h' line='87' column='1'/>
+        <var-decl name='malloc' type-id='type-id-733' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='52' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/pyhash.h' line='88' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='hash_bits' type-id='type-id-781' visibility='default' filepath='./Include/pyhash.h' line='89' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='seed_bits' type-id='type-id-781' visibility='default' filepath='./Include/pyhash.h' line='90' column='1'/>
+        <var-decl name='free' type-id='type-id-20' visibility='default' filepath='./Include/internal/pycore_hashtable.h' line='55' column='1'/>
       </data-member>
     </class-decl>
-    <pointer-type-def type-id='type-id-782' size-in-bits='64' id='type-id-783'/>
-    <qualified-type-def type-id='type-id-783' const='yes' id='type-id-780'/>
-    <qualified-type-def type-id='type-id-8' const='yes' id='type-id-781'/>
-    <typedef-decl name='PyHash_FuncDef' type-id='type-id-779' filepath='./Include/pyhash.h' line='91' column='1' id='type-id-778'/>
-    <pointer-type-def type-id='type-id-778' size-in-bits='64' id='type-id-784'/>
-    <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='Python/pyhash.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyHash_GetFuncDef'>
-      <return type-id='type-id-784'/>
+    <pointer-type-def type-id='type-id-734' size-in-bits='64' id='type-id-733'/>
+    <typedef-decl name='_Py_hashtable_allocator_t' type-id='type-id-732' filepath='./Include/internal/pycore_hashtable.h' line='56' column='1' id='type-id-713'/>
+    <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='Python/hashtable.c' line='404' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_destroy'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='404' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='Python/pyhash.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashBytes'>
-      <parameter type-id='type-id-20' name='src' filepath='Python/pyhash.c' line='158' column='1'/>
-      <parameter type-id='type-id-30' name='len' filepath='Python/pyhash.c' line='158' column='1'/>
-      <return type-id='type-id-117'/>
+    <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='Python/hashtable.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_clear'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='404' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_HashPointer' mangled-name='_Py_HashPointer' filepath='Python/pyhash.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointer'>
-      <parameter type-id='type-id-20' name='p' filepath='Python/pyhash.c' line='148' column='1'/>
-      <return type-id='type-id-117'/>
+    <function-decl name='_Py_hashtable_new' mangled-name='_Py_hashtable_new' filepath='Python/hashtable.c' line='363' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new'>
+      <parameter type-id='type-id-710' name='hash_func' filepath='Python/hashtable.c' line='363' column='1'/>
+      <parameter type-id='type-id-711' name='compare_func' filepath='Python/hashtable.c' line='364' column='1'/>
+      <return type-id='type-id-725'/>
     </function-decl>
-    <function-decl name='_Py_HashPointerRaw' mangled-name='_Py_HashPointerRaw' filepath='Python/pyhash.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointerRaw'>
-      <parameter type-id='type-id-20' name='p' filepath='Python/pyhash.c' line='148' column='1'/>
-      <return type-id='type-id-117'/>
+    <pointer-type-def type-id='type-id-713' size-in-bits='64' id='type-id-735'/>
+    <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='Python/hashtable.c' line='316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_new_full'>
+      <parameter type-id='type-id-710' name='hash_func' filepath='Python/hashtable.c' line='316' column='1'/>
+      <parameter type-id='type-id-711' name='compare_func' filepath='Python/hashtable.c' line='317' column='1'/>
+      <parameter type-id='type-id-712' name='key_destroy_func' filepath='Python/hashtable.c' line='318' column='1'/>
+      <parameter type-id='type-id-712' name='value_destroy_func' filepath='Python/hashtable.c' line='319' column='1'/>
+      <parameter type-id='type-id-735' name='allocator' filepath='Python/hashtable.c' line='320' column='1'/>
+      <return type-id='type-id-725'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-736' size-in-bits='64' id='type-id-737'/>
+    <typedef-decl name='_Py_hashtable_foreach_func' type-id='type-id-737' filepath='./Include/internal/pycore_hashtable.h' line='96' column='1' id='type-id-738'/>
+    <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='Python/hashtable.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_foreach'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='261' column='1'/>
+      <parameter type-id='type-id-738' name='func' filepath='Python/hashtable.c' line='262' column='1'/>
+      <parameter type-id='type-id-21' name='user_data' filepath='Python/hashtable.c' line='263' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='Python/pyhash.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashDouble'>
-      <parameter type-id='type-id-15' name='inst' filepath='Python/pyhash.c' line='92' column='1'/>
-      <parameter type-id='type-id-371' name='v' filepath='Python/pyhash.c' line='92' column='1'/>
-      <return type-id='type-id-117'/>
+    <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='Python/hashtable.c' line='248' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_get'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='248' column='1'/>
+      <parameter type-id='type-id-21' name='key' filepath='Python/hashtable.c' line='248' column='1'/>
+      <return type-id='type-id-21'/>
     </function-decl>
-    <function-type size-in-bits='64' id='type-id-782'>
-      <parameter type-id='type-id-20'/>
-      <parameter type-id='type-id-30'/>
-      <return type-id='type-id-117'/>
+    <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='Python/hashtable.c' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_set'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='209' column='1'/>
+      <parameter type-id='type-id-21' name='key' filepath='Python/hashtable.c' line='209' column='1'/>
+      <parameter type-id='type-id-21' name='value' filepath='Python/hashtable.c' line='209' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_steal' mangled-name='_Py_hashtable_steal' filepath='Python/hashtable.c' line='174' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_steal'>
+      <parameter type-id='type-id-725' name='ht' filepath='Python/hashtable.c' line='174' column='1'/>
+      <parameter type-id='type-id-21' name='key' filepath='Python/hashtable.c' line='174' column='1'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-724' const='yes' id='type-id-739'/>
+    <pointer-type-def type-id='type-id-739' size-in-bits='64' id='type-id-740'/>
+    <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='Python/hashtable.c' line='120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_size'>
+      <parameter type-id='type-id-740' name='ht' filepath='Python/hashtable.c' line='120' column='1'/>
+      <return type-id='type-id-157'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_compare_direct' mangled-name='_Py_hashtable_compare_direct' filepath='Python/hashtable.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_compare_direct'>
+      <parameter type-id='type-id-21' name='key1' filepath='Python/hashtable.c' line='99' column='1'/>
+      <parameter type-id='type-id-21' name='key2' filepath='Python/hashtable.c' line='99' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_hash_ptr' mangled-name='_Py_hashtable_hash_ptr' filepath='Python/hashtable.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_hashtable_hash_ptr'>
+      <parameter type-id='type-id-21' name='key' filepath='Python/hashtable.c' line='92' column='1'/>
+      <return type-id='type-id-722'/>
+    </function-decl>
+    <function-decl name='_Py_HashPointerRaw' mangled-name='_Py_HashPointerRaw' filepath='./Include/pyhash.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-type size-in-bits='64' id='type-id-726'>
+      <parameter type-id='type-id-725'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-723'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-736'>
+      <parameter type-id='type-id-725'/>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-730'>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-9'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-728'>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-722'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-734'>
+      <parameter type-id='type-id-157'/>
+      <return type-id='type-id-21'/>
     </function-type>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pylifecycle.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='_Py_UnhandledKeyboardInterrupt' type-id='type-id-8' mangled-name='_Py_UnhandledKeyboardInterrupt' visibility='default' filepath='./Include/internal/pycore_pylifecycle.h' line='35' column='1' elf-symbol-id='_Py_UnhandledKeyboardInterrupt'/>
-    <typedef-decl name='_PyRuntimeState' type-id='type-id-530' filepath='./Include/internal/pycore_runtime.h' line='121' column='1' id='type-id-785'/>
-    <var-decl name='_PyRuntime' type-id='type-id-785' mangled-name='_PyRuntime' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='128' column='1' elf-symbol-id='_PyRuntime'/>
-    <pointer-type-def type-id='type-id-786' size-in-bits='64' id='type-id-787'/>
-    <typedef-decl name='PyOS_sighandler_t' type-id='type-id-787' filepath='./Include/pylifecycle.h' line='61' column='1' id='type-id-788'/>
-    <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='Python/pylifecycle.c' line='2942' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_setsig'>
-      <parameter type-id='type-id-8' name='sig' filepath='Python/pylifecycle.c' line='2942' column='1'/>
-      <parameter type-id='type-id-788' name='handler' filepath='Python/pylifecycle.c' line='2942' column='1'/>
-      <return type-id='type-id-788'/>
+  <abi-instr version='1.0' address-size='64' path='Python/import.c' comp-dir-path='/src' language='LANG_C99'>
+    <class-decl name='_inittab' size-in-bits='128' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='27' column='1' id='type-id-741'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/import.h' line='28' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='initfunc' type-id='type-id-462' visibility='default' filepath='./Include/cpython/import.h' line='29' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-741' size-in-bits='64' id='type-id-742'/>
+    <var-decl name='PyImport_Inittab' type-id='type-id-742' mangled-name='PyImport_Inittab' visibility='default' filepath='./Include/cpython/import.h' line='31' column='1' elf-symbol-id='PyImport_Inittab'/>
+    <function-decl name='PyImport_AppendInittab' mangled-name='PyImport_AppendInittab' filepath='Python/import.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AppendInittab'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='2285' column='1'/>
+      <parameter type-id='type-id-462' name='initfunc' filepath='Python/import.c' line='2285' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyImport_ExtendInittab' mangled-name='PyImport_ExtendInittab' filepath='Python/import.c' line='2239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExtendInittab'>
+      <parameter type-id='type-id-742' name='newtab' filepath='Python/import.c' line='2239' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyInit__imp' mangled-name='PyInit__imp' filepath='Python/import.c' line='2178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__imp'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_Import' mangled-name='PyImport_Import' filepath='Python/import.c' line='1765' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_Import'>
+      <parameter type-id='type-id-16' name='module_name' filepath='Python/import.c' line='1765' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ReloadModule' mangled-name='PyImport_ReloadModule' filepath='Python/import.c' line='1732' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ReloadModule'>
+      <parameter type-id='type-id-16' name='m' filepath='Python/import.c' line='1732' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='Python/import.c' line='1714' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevel'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1714' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Python/import.c' line='1714' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Python/import.c' line='1714' column='1'/>
+      <parameter type-id='type-id-16' name='fromlist' filepath='Python/import.c' line='1715' column='1'/>
+      <parameter type-id='type-id-9' name='level' filepath='Python/import.c' line='1715' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModuleLevelObject' mangled-name='PyImport_ImportModuleLevelObject' filepath='Python/import.c' line='1562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleLevelObject'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='1562' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Python/import.c' line='1562' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Python/import.c' line='1563' column='1'/>
+      <parameter type-id='type-id-16' name='fromlist' filepath='Python/import.c' line='1563' column='1'/>
+      <parameter type-id='type-id-9' name='level' filepath='Python/import.c' line='1564' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_GetModule' mangled-name='PyImport_GetModule' filepath='Python/import.c' line='1545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModule'>
+      <parameter type-id='type-id-16' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModuleNoBlock' mangled-name='PyImport_ImportModuleNoBlock' filepath='Python/import.c' line='1250' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModuleNoBlock'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1250' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportModule' mangled-name='PyImport_ImportModule' filepath='Python/import.c' line='1226' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportModule'>
+      <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportFrozenModule' mangled-name='PyImport_ImportFrozenModule' filepath='Python/import.c' line='1209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModule'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='1209' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyImport_ImportFrozenModuleObject' mangled-name='PyImport_ImportFrozenModuleObject' filepath='Python/import.c' line='1140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ImportFrozenModuleObject'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='1140' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='Python/import.c' line='985' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetImporter'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='2819' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='Python/import.c' line='811' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleObject'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='811' column='1'/>
+      <parameter type-id='type-id-16' name='co' filepath='Python/import.c' line='811' column='1'/>
+      <parameter type-id='type-id-16' name='pathname' filepath='Python/import.c' line='811' column='1'/>
+      <parameter type-id='type-id-16' name='cpathname' filepath='Python/import.c' line='812' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ExecCodeModuleWithPathnames' mangled-name='PyImport_ExecCodeModuleWithPathnames' filepath='Python/import.c' line='706' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleWithPathnames'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='706' column='1'/>
+      <parameter type-id='type-id-16' name='co' filepath='Python/import.c' line='706' column='1'/>
+      <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='707' column='1'/>
+      <parameter type-id='type-id-3' name='cpathname' filepath='Python/import.c' line='708' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ExecCodeModuleEx' mangled-name='PyImport_ExecCodeModuleEx' filepath='Python/import.c' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModuleEx'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='699' column='1'/>
+      <parameter type-id='type-id-16' name='co' filepath='Python/import.c' line='699' column='1'/>
+      <parameter type-id='type-id-3' name='pathname' filepath='Python/import.c' line='699' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_ExecCodeModule' mangled-name='PyImport_ExecCodeModule' filepath='Python/import.c' line='692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_ExecCodeModule'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='692' column='1'/>
+      <parameter type-id='type-id-16' name='co' filepath='Python/import.c' line='692' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='Python/import.c' line='643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModule'>
+      <parameter type-id='type-id-3' name='utf8path' filepath='Objects/fileobject.c' line='562' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='Python/pylifecycle.c' line='2903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_getsig'>
-      <parameter type-id='type-id-8' name='sig' filepath='Python/pylifecycle.c' line='2903' column='1'/>
-      <return type-id='type-id-788'/>
+    <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='Python/import.c' line='625' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_AddModuleObject'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='625' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_Py_FdIsInteractive' mangled-name='_Py_FdIsInteractive' filepath='Python/pylifecycle.c' line='2886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FdIsInteractive'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2886' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pylifecycle.c' line='2886' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyImport_FindExtensionObject' mangled-name='_PyImport_FindExtensionObject' filepath='Python/import.c' line='562' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FindExtensionObject'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='562' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/import.c' line='562' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='Py_FdIsInteractive' mangled-name='Py_FdIsInteractive' filepath='Python/pylifecycle.c' line='2873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FdIsInteractive'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='Python/import.c' line='486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupBuiltin'>
+      <parameter type-id='type-id-16' name='mod' filepath='Python/import.c' line='486' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='486' column='1'/>
+      <parameter type-id='type-id-16' name='modules' filepath='Python/import.c' line='486' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_Exit' mangled-name='Py_Exit' filepath='Python/pylifecycle.c' line='2856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Exit'>
-      <parameter type-id='type-id-8' name='sts' filepath='Python/pylifecycle.c' line='2856' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='Python/import.c' line='421' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_FixupExtensionObject'>
+      <parameter type-id='type-id-16' name='mod' filepath='Python/import.c' line='421' column='1'/>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='421' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/import.c' line='422' column='1'/>
+      <parameter type-id='type-id-16' name='modules' filepath='Python/import.c' line='422' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_AtExit' mangled-name='Py_AtExit' filepath='Python/pylifecycle.c' line='2831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_AtExit'>
-      <parameter type-id='type-id-275' name='func' filepath='Python/pylifecycle.c' line='2831' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyImport_GetMagicTag' mangled-name='PyImport_GetMagicTag' filepath='Python/import.c' line='398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicTag'>
+      <return type-id='type-id-3'/>
     </function-decl>
-    <function-decl name='Py_ExitStatusException' mangled-name='Py_ExitStatusException' filepath='Python/pylifecycle.c' line='2789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ExitStatusException'>
-      <parameter type-id='type-id-740' name='status' filepath='Python/pylifecycle.c' line='2789' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/import.c' line='376' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetMagicNumber'>
+      <return type-id='type-id-33'/>
     </function-decl>
-    <function-decl name='_Py_FatalErrorFormat' mangled-name='_Py_FatalErrorFormat' filepath='Python/pylifecycle.c' line='2755' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFormat'>
-      <parameter type-id='type-id-3' name='func' filepath='Python/pylifecycle.c' line='2755' column='1'/>
-      <parameter type-id='type-id-3' name='format' filepath='Python/pylifecycle.c' line='2755' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='Python/import.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModuleString'>
+      <parameter type-id='type-id-3' name='name' filepath='Python/import.c' line='311' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Python/import.c' line='311' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='Python/pylifecycle.c' line='2748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFunc'>
-      <parameter type-id='type-id-3' name='func' filepath='Python/pylifecycle.c' line='2748' column='1'/>
-      <parameter type-id='type-id-3' name='msg' filepath='Python/pylifecycle.c' line='2748' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyImport_SetModule' mangled-name='_PyImport_SetModule' filepath='Python/import.c' line='303' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_SetModule'>
+      <parameter type-id='type-id-16' name='name' filepath='Python/import.c' line='303' column='1'/>
+      <parameter type-id='type-id-16' name='m' filepath='Python/import.c' line='303' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_FatalError' mangled-name='Py_FatalError' filepath='Python/pylifecycle.c' line='2741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FatalError'>
-      <parameter type-id='type-id-3' name='func' filepath='Python/ceval.c' line='269' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='Python/import.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_GetModuleId'>
+      <parameter type-id='type-id-219' name='nameid' filepath='Python/import.c' line='293' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_Py_DumpExtensionModules' mangled-name='_Py_DumpExtensionModules' filepath='Python/pylifecycle.c' line='2568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpExtensionModules'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/pylifecycle.c' line='2568' column='1'/>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pylifecycle.c' line='2568' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyImport_IsInitialized' mangled-name='_PyImport_IsInitialized' filepath='Python/import.c' line='285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_IsInitialized'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='Py_EndInterpreter' mangled-name='Py_EndInterpreter' filepath='Python/pylifecycle.c' line='2004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EndInterpreter'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pylifecycle.c' line='2004' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='Python/import.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyImport_GetModuleDict'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='Py_NewInterpreter' mangled-name='Py_NewInterpreter' filepath='Python/pylifecycle.c' line='1986' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewInterpreter'>
-      <return type-id='type-id-166'/>
+    <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='Python/import.c' line='145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_ReleaseLock'>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_Py_NewInterpreter' mangled-name='_Py_NewInterpreter' filepath='Python/pylifecycle.c' line='1974' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_NewInterpreter'>
-      <parameter type-id='type-id-8' name='isolated_subinterpreter' filepath='Python/pylifecycle.c' line='1974' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='_PyImport_AcquireLock' mangled-name='_PyImport_AcquireLock' filepath='Python/import.c' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyImport_AcquireLock'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_Finalize' mangled-name='Py_Finalize' filepath='Python/pylifecycle.c' line='1868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Finalize'>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyMem_SetDefaultAllocator' mangled-name='_PyMem_SetDefaultAllocator' filepath='./Include/internal/pycore_pymem.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='Python/pylifecycle.c' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FinalizeEx'>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMem_SetAllocator' mangled-name='PyMem_SetAllocator' filepath='./Include/cpython/pymem.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_InitializeMain' mangled-name='_Py_InitializeMain' filepath='Python/pylifecycle.c' line='1271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeMain'>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyModule_GetDef' mangled-name='PyModule_GetDef' filepath='./Include/moduleobject.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_Initialize' mangled-name='Py_Initialize' filepath='Python/pylifecycle.c' line='1264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Initialize'>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyModule_GetState' mangled-name='PyModule_GetState' filepath='./Include/moduleobject.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_InitializeEx' mangled-name='Py_InitializeEx' filepath='Python/pylifecycle.c' line='1237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeEx'>
-      <parameter type-id='type-id-8' name='install_sigs' filepath='Python/pylifecycle.c' line='1237' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyModule_ExecDef' mangled-name='PyModule_ExecDef' filepath='./Include/modsupport.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='Python/pylifecycle.c' line='1204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeFromConfig'>
-      <parameter type-id='type-id-748' name='config' filepath='Python/pylifecycle.c' line='1204' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyNamespace_New' mangled-name='_PyNamespace_New' filepath='./Include/namespaceobject.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='Python/pylifecycle.c' line='948' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromConfig'>
-      <parameter type-id='type-id-748' name='config' filepath='Python/pylifecycle.c' line='948' column='1'/>
-      <parameter type-id='type-id-758' name='args' filepath='Python/pylifecycle.c' line='949' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyUnicode_FromWideChar' mangled-name='PyUnicode_FromWideChar' filepath='./Include/unicodeobject.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <qualified-type-def type-id='type-id-257' const='yes' id='type-id-789'/>
-    <pointer-type-def type-id='type-id-789' size-in-bits='64' id='type-id-790'/>
-    <function-decl name='Py_PreInitialize' mangled-name='Py_PreInitialize' filepath='Python/pylifecycle.c' line='941' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitialize'>
-      <parameter type-id='type-id-790' name='src_config' filepath='Python/pylifecycle.c' line='941' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyTime_GetPerfCounter' mangled-name='_PyTime_GetPerfCounter' filepath='./Include/cpython/pytime.h' line='230' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_PreInitializeFromArgs' mangled-name='Py_PreInitializeFromArgs' filepath='Python/pylifecycle.c' line='933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromArgs'>
-      <parameter type-id='type-id-790' name='src_config' filepath='Python/pylifecycle.c' line='933' column='1'/>
-      <parameter type-id='type-id-30' name='argc' filepath='Python/pylifecycle.c' line='933' column='1'/>
-      <parameter type-id='type-id-329' name='argv' filepath='Python/pylifecycle.c' line='933' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='./Include/cpython/pytime.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_PreInitializeFromBytesArgs' mangled-name='Py_PreInitializeFromBytesArgs' filepath='Python/pylifecycle.c' line='925' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromBytesArgs'>
-      <parameter type-id='type-id-790' name='src_config' filepath='Python/pylifecycle.c' line='925' column='1'/>
-      <parameter type-id='type-id-30' name='argc' filepath='Python/pylifecycle.c' line='925' column='1'/>
-      <parameter type-id='type-id-215' name='argv' filepath='Python/pylifecycle.c' line='925' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='./Include/marshal.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='Python/pylifecycle.c' line='878' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromPyArgv'>
-      <parameter type-id='type-id-790' name='src_config' filepath='Python/pylifecycle.c' line='878' column='1'/>
-      <parameter type-id='type-id-758' name='args' filepath='Python/pylifecycle.c' line='878' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyDict_Pop' mangled-name='_PyDict_Pop' filepath='./Include/cpython/dictobject.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_SetConfig' mangled-name='_PyInterpreterState_SetConfig' filepath='Python/pylifecycle.c' line='473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_SetConfig'>
-      <parameter type-id='type-id-748' name='src_config' filepath='Python/pylifecycle.c' line='473' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyWeakref_GetObject' mangled-name='PyWeakref_GetObject' filepath='./Include/weakrefobject.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='Python/pylifecycle.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetLocaleFromEnv'>
-      <parameter type-id='type-id-8' name='category' filepath='Python/pylifecycle.c' line='385' column='1'/>
-      <return type-id='type-id-72'/>
+    <function-decl name='PyModule_NewObject' mangled-name='PyModule_NewObject' filepath='./Include/moduleobject.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_CoerceLegacyLocale' mangled-name='_Py_CoerceLegacyLocale' filepath='Python/pylifecycle.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CoerceLegacyLocale'>
-      <parameter type-id='type-id-8' name='warn' filepath='Python/pylifecycle.c' line='335' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='./Include/internal/pycore_pystate.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_IsLocaleCoercionTarget' mangled-name='_Py_IsLocaleCoercionTarget' filepath='Python/pylifecycle.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsLocaleCoercionTarget'>
-      <parameter type-id='type-id-3' name='encoding' filepath='Python/codecs.c' line='213' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyList_Insert' mangled-name='PyList_Insert' filepath='./Include/listobject.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='Python/pylifecycle.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_LegacyLocaleDetected'>
-      <parameter type-id='type-id-8' name='warn' filepath='Python/pylifecycle.c' line='238' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_KeyedHash' mangled-name='_Py_KeyedHash' filepath='./Include/internal/pycore_pyhash.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_IsInitialized' mangled-name='Py_IsInitialized' filepath='Python/pylifecycle.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsInitialized'>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyImport_LoadDynamicModuleWithSpec' mangled-name='_PyImport_LoadDynamicModuleWithSpec' filepath='Python/importdl.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_IsCoreInitialized' mangled-name='_Py_IsCoreInitialized' filepath='Python/pylifecycle.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsCoreInitialized'>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyModule_FromDefAndSpec2' mangled-name='PyModule_FromDefAndSpec2' filepath='./Include/modsupport.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_IsFinalizing' mangled-name='_Py_IsFinalizing' filepath='Python/pylifecycle.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsFinalizing'>
-      <return type-id='type-id-8'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='./Python/importdl.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyObject_CallMethodId' mangled-name='_PyObject_CallMethodId' filepath='./Include/cpython/abstract.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyRuntime_Finalize' mangled-name='_PyRuntime_Finalize' filepath='Python/pylifecycle.c' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Finalize'>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyUnicode_EncodeFSDefault' mangled-name='PyUnicode_EncodeFSDefault' filepath='./Include/unicodeobject.h' line='807' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='Python/pylifecycle.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Initialize'>
-      <return type-id='type-id-740'/>
+    <function-decl name='_PyImport_FindSharedFuncptr' mangled-name='_PyImport_FindSharedFuncptr' filepath='./Python/importdl.c' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-type size-in-bits='64' id='type-id-786'>
-      <parameter type-id='type-id-8'/>
-      <return type-id='type-id-69'/>
-    </function-type>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pymath.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_Py_set_387controlword' mangled-name='_Py_set_387controlword' filepath='Python/pymath.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_387controlword'>
-      <parameter type-id='type-id-173' name='cw' filepath='Python/pymath.c' line='29' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyImport_GetModuleDict' mangled-name='PyImport_GetModuleDict' filepath='./Include/import.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_get_387controlword' mangled-name='_Py_get_387controlword' filepath='Python/pymath.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_387controlword'>
-      <return type-id='type-id-173'/>
+    <function-decl name='_PyImport_FixupExtensionObject' mangled-name='_PyImport_FixupExtensionObject' filepath='./Include/cpython/import.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pystate.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_Py_GetConfig' mangled-name='_Py_GetConfig' filepath='Python/pystate.c' line='1965' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfig'>
-      <return type-id='type-id-748'/>
+  <abi-instr version='1.0' address-size='64' path='./Python/initconfig.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='Py_UTF8Mode' type-id='type-id-9' mangled-name='Py_UTF8Mode' visibility='default' filepath='./Include/fileobject.h' line='29' column='1' elf-symbol-id='Py_UTF8Mode'/>
+    <var-decl name='Py_DebugFlag' type-id='type-id-9' mangled-name='Py_DebugFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='8' column='1' elf-symbol-id='Py_DebugFlag'/>
+    <var-decl name='Py_VerboseFlag' type-id='type-id-9' mangled-name='Py_VerboseFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='9' column='1' elf-symbol-id='Py_VerboseFlag'/>
+    <var-decl name='Py_QuietFlag' type-id='type-id-9' mangled-name='Py_QuietFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='10' column='1' elf-symbol-id='Py_QuietFlag'/>
+    <var-decl name='Py_InteractiveFlag' type-id='type-id-9' mangled-name='Py_InteractiveFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='11' column='1' elf-symbol-id='Py_InteractiveFlag'/>
+    <var-decl name='Py_InspectFlag' type-id='type-id-9' mangled-name='Py_InspectFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='12' column='1' elf-symbol-id='Py_InspectFlag'/>
+    <var-decl name='Py_OptimizeFlag' type-id='type-id-9' mangled-name='Py_OptimizeFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='13' column='1' elf-symbol-id='Py_OptimizeFlag'/>
+    <var-decl name='Py_NoSiteFlag' type-id='type-id-9' mangled-name='Py_NoSiteFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='14' column='1' elf-symbol-id='Py_NoSiteFlag'/>
+    <var-decl name='Py_BytesWarningFlag' type-id='type-id-9' mangled-name='Py_BytesWarningFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='15' column='1' elf-symbol-id='Py_BytesWarningFlag'/>
+    <var-decl name='Py_FrozenFlag' type-id='type-id-9' mangled-name='Py_FrozenFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='16' column='1' elf-symbol-id='Py_FrozenFlag'/>
+    <var-decl name='Py_IgnoreEnvironmentFlag' type-id='type-id-9' mangled-name='Py_IgnoreEnvironmentFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='17' column='1' elf-symbol-id='Py_IgnoreEnvironmentFlag'/>
+    <var-decl name='Py_DontWriteBytecodeFlag' type-id='type-id-9' mangled-name='Py_DontWriteBytecodeFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='18' column='1' elf-symbol-id='Py_DontWriteBytecodeFlag'/>
+    <var-decl name='Py_NoUserSiteDirectory' type-id='type-id-9' mangled-name='Py_NoUserSiteDirectory' visibility='default' filepath='./Include/cpython/pydebug.h' line='19' column='1' elf-symbol-id='Py_NoUserSiteDirectory'/>
+    <var-decl name='Py_UnbufferedStdioFlag' type-id='type-id-9' mangled-name='Py_UnbufferedStdioFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='20' column='1' elf-symbol-id='Py_UnbufferedStdioFlag'/>
+    <var-decl name='Py_HashRandomizationFlag' type-id='type-id-9' mangled-name='Py_HashRandomizationFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='21' column='1' elf-symbol-id='Py_HashRandomizationFlag'/>
+    <var-decl name='Py_IsolatedFlag' type-id='type-id-9' mangled-name='Py_IsolatedFlag' visibility='default' filepath='./Include/cpython/pydebug.h' line='22' column='1' elf-symbol-id='Py_IsolatedFlag'/>
+    <function-decl name='_Py_GetConfigsAsDict' mangled-name='_Py_GetConfigsAsDict' filepath='./Python/initconfig.c' line='2898' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfigsAsDict'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_GetConfigCopy' mangled-name='_PyInterpreterState_GetConfigCopy' filepath='Python/pystate.c' line='1951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetConfigCopy'>
-      <parameter type-id='type-id-743' name='config' filepath='Python/pystate.c' line='1951' column='1'/>
-      <return type-id='type-id-8'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-743' visibility='default' filepath='./Include/cpython/initconfig.h' line='7' column='1' id='type-id-744'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='_type' type-id='type-id-745' visibility='default' filepath='./Include/cpython/initconfig.h' line='12' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='func' type-id='type-id-3' visibility='default' filepath='./Include/cpython/initconfig.h' line='13' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='err_msg' type-id='type-id-3' visibility='default' filepath='./Include/cpython/initconfig.h' line='14' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='exitcode' type-id='type-id-9' visibility='default' filepath='./Include/cpython/initconfig.h' line='15' column='1'/>
+      </data-member>
+    </class-decl>
+    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/initconfig.h' line='8' column='1' id='type-id-745'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='_PyStatus_TYPE_OK' value='0'/>
+      <enumerator name='_PyStatus_TYPE_ERROR' value='1'/>
+      <enumerator name='_PyStatus_TYPE_EXIT' value='2'/>
+    </enum-decl>
+    <typedef-decl name='PyStatus' type-id='type-id-744' filepath='./Include/cpython/initconfig.h' line='16' column='1' id='type-id-743'/>
+    <pointer-type-def type-id='type-id-231' size-in-bits='64' id='type-id-746'/>
+    <function-decl name='PyConfig_Read' mangled-name='PyConfig_Read' filepath='./Python/initconfig.c' line='2891' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Read'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='2891' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_GetConfig' mangled-name='_PyInterpreterState_GetConfig' filepath='Python/pystate.c' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetConfig'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1944' column='1'/>
-      <return type-id='type-id-748'/>
+    <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-747'/>
+    <function-decl name='PyConfig_SetWideStringList' mangled-name='PyConfig_SetWideStringList' filepath='./Python/initconfig.c' line='2808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetWideStringList'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='2808' column='1'/>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='2808' column='1'/>
+      <parameter type-id='type-id-31' name='length' filepath='./Python/initconfig.c' line='2809' column='1'/>
+      <parameter type-id='type-id-329' name='items' filepath='./Python/initconfig.c' line='2809' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_SetEvalFrameFunc' mangled-name='_PyInterpreterState_SetEvalFrameFunc' filepath='Python/pystate.c' line='1936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_SetEvalFrameFunc'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1936' column='1'/>
-      <parameter type-id='type-id-232' name='eval_frame' filepath='Python/pystate.c' line='1937' column='1'/>
-      <return type-id='type-id-69'/>
+    <qualified-type-def type-id='type-id-325' const='yes' id='type-id-748'/>
+    <pointer-type-def type-id='type-id-748' size-in-bits='64' id='type-id-749'/>
+    <function-decl name='PyConfig_SetArgv' mangled-name='PyConfig_SetArgv' filepath='./Python/initconfig.c' line='2796' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetArgv'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='2796' column='1'/>
+      <parameter type-id='type-id-31' name='argc' filepath='./Python/initconfig.c' line='2796' column='1'/>
+      <parameter type-id='type-id-749' name='argv' filepath='./Python/initconfig.c' line='2796' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_GetEvalFrameFunc' mangled-name='_PyInterpreterState_GetEvalFrameFunc' filepath='Python/pystate.c' line='1929' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetEvalFrameFunc'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1929' column='1'/>
-      <return type-id='type-id-232'/>
+    <function-decl name='PyConfig_SetBytesArgv' mangled-name='PyConfig_SetBytesArgv' filepath='./Python/initconfig.c' line='2784' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesArgv'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='2784' column='1'/>
+      <parameter type-id='type-id-31' name='argc' filepath='./Python/initconfig.c' line='2784' column='1'/>
+      <parameter type-id='type-id-192' name='argv' filepath='./Python/initconfig.c' line='2784' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyCrossInterpreterData_Lookup' mangled-name='_PyCrossInterpreterData_Lookup' filepath='Python/pystate.c' line='1779' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_Lookup'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pystate.c' line='1779' column='1'/>
-      <return type-id='type-id-267'/>
+    <function-decl name='_PyConfig_FromDict' mangled-name='_PyConfig_FromDict' filepath='./Python/initconfig.c' line='1211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_FromDict'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='1211' column='1'/>
+      <parameter type-id='type-id-16' name='dict' filepath='./Python/initconfig.c' line='1211' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyCrossInterpreterData_RegisterClass' mangled-name='_PyCrossInterpreterData_RegisterClass' filepath='Python/pystate.c' line='1749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_RegisterClass'>
-      <parameter type-id='type-id-31' name='cls' filepath='Python/pystate.c' line='1749' column='1'/>
-      <parameter type-id='type-id-267' name='getdata' filepath='Python/pystate.c' line='1750' column='1'/>
-      <return type-id='type-id-8'/>
+    <qualified-type-def type-id='type-id-231' const='yes' id='type-id-750'/>
+    <pointer-type-def type-id='type-id-750' size-in-bits='64' id='type-id-751'/>
+    <function-decl name='_PyConfig_AsDict' mangled-name='_PyConfig_AsDict' filepath='./Python/initconfig.c' line='949' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_AsDict'>
+      <parameter type-id='type-id-751' name='config' filepath='./Python/initconfig.c' line='949' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <typedef-decl name='_PyCrossInterpreterData' type-id='type-id-268' filepath='./Include/cpython/pystate.h' line='294' column='1' id='type-id-791'/>
-    <pointer-type-def type-id='type-id-791' size-in-bits='64' id='type-id-792'/>
-    <function-decl name='_PyCrossInterpreterData_NewObject' mangled-name='_PyCrossInterpreterData_NewObject' filepath='Python/pystate.c' line='1719' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_NewObject'>
-      <parameter type-id='type-id-792' name='data' filepath='Python/pystate.c' line='1719' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyConfig_SetBytesString' mangled-name='PyConfig_SetBytesString' filepath='./Python/initconfig.c' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetBytesString'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='847' column='1'/>
+      <parameter type-id='type-id-329' name='config_str' filepath='./Python/initconfig.c' line='847' column='1'/>
+      <parameter type-id='type-id-3' name='str' filepath='./Python/initconfig.c' line='848' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyCrossInterpreterData_Release' mangled-name='_PyCrossInterpreterData_Release' filepath='Python/pystate.c' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_Release'>
-      <parameter type-id='type-id-792' name='data' filepath='Python/pystate.c' line='1696' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyConfig_InitIsolatedConfig' mangled-name='PyConfig_InitIsolatedConfig' filepath='./Python/initconfig.c' line='763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitIsolatedConfig'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GetCrossInterpreterData' mangled-name='_PyObject_GetCrossInterpreterData' filepath='Python/pystate.c' line='1627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetCrossInterpreterData'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pystate.c' line='1627' column='1'/>
-      <parameter type-id='type-id-792' name='data' filepath='Python/pystate.c' line='1627' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyConfig_InitPythonConfig' mangled-name='PyConfig_InitPythonConfig' filepath='./Python/initconfig.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_InitPythonConfig'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_CheckCrossInterpreterData' mangled-name='_PyObject_CheckCrossInterpreterData' filepath='Python/pystate.c' line='1595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CheckCrossInterpreterData'>
-      <parameter type-id='type-id-15' name='obj' filepath='Objects/abstract.c' line='2847' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyConfig_InitCompatConfig' mangled-name='_PyConfig_InitCompatConfig' filepath='./Python/initconfig.c' line='688' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyConfig_InitCompatConfig'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='763' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pystate.h' line='95' column='1' id='type-id-793'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='PyGILState_LOCKED' value='0'/>
-      <enumerator name='PyGILState_UNLOCKED' value='1'/>
-    </enum-decl>
-    <typedef-decl name='PyGILState_STATE' type-id='type-id-793' filepath='./Include/pystate.h' line='96' column='1' id='type-id-794'/>
-    <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='Python/pystate.c' line='1530' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Release'>
-      <parameter type-id='type-id-794' name='oldstate' filepath='Python/pystate.c' line='1530' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='PyConfig_Clear' mangled-name='PyConfig_Clear' filepath='./Python/initconfig.c' line='646' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_Clear'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='646' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='Python/pystate.c' line='1480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Ensure'>
-      <return type-id='type-id-794'/>
+    <pointer-type-def type-id='type-id-329' size-in-bits='64' id='type-id-752'/>
+    <function-decl name='Py_GetArgcArgv' mangled-name='Py_GetArgcArgv' filepath='./Python/initconfig.c' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetArgcArgv'>
+      <parameter type-id='type-id-452' name='argc' filepath='./Python/initconfig.c' line='569' column='1'/>
+      <parameter type-id='type-id-752' name='argv' filepath='./Python/initconfig.c' line='569' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='Python/pystate.c' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Check'>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_ClearArgcArgv' mangled-name='_Py_ClearArgcArgv' filepath='./Python/initconfig.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClearArgcArgv'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='Python/pystate.c' line='1454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_GetThisThreadState'>
-      <return type-id='type-id-166'/>
+    <function-decl name='_Py_ClearStandardStreamEncoding' mangled-name='_Py_ClearStandardStreamEncoding' filepath='./Python/initconfig.c' line='513' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ClearStandardStreamEncoding'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='Python/pystate.c' line='1367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_GetInterpreterStateUnsafe'>
-      <return type-id='type-id-222'/>
+    <function-decl name='Py_SetStandardStreamEncoding' mangled-name='Py_SetStandardStreamEncoding' filepath='./Python/initconfig.c' line='458' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetStandardStreamEncoding'>
+      <parameter type-id='type-id-3' name='encoding' filepath='./Python/initconfig.c' line='458' column='1'/>
+      <parameter type-id='type-id-3' name='errors' filepath='./Python/initconfig.c' line='458' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyThread_CurrentExceptions' mangled-name='_PyThread_CurrentExceptions' filepath='Python/pystate.c' line='1245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_CurrentExceptions'>
-      <return type-id='type-id-15'/>
+    <qualified-type-def type-id='type-id-326' const='yes' id='type-id-753'/>
+    <pointer-type-def type-id='type-id-753' size-in-bits='64' id='type-id-754'/>
+    <function-decl name='_PyWideStringList_AsList' mangled-name='_PyWideStringList_AsList' filepath='./Python/initconfig.c' line='427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_AsList'>
+      <parameter type-id='type-id-754' name='list' filepath='./Python/initconfig.c' line='427' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyThread_CurrentFrames' mangled-name='_PyThread_CurrentFrames' filepath='Python/pystate.c' line='1195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_CurrentFrames'>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyWideStringList_Extend' mangled-name='_PyWideStringList_Extend' filepath='./Python/initconfig.c' line='402' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Extend'>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='402' column='1'/>
+      <parameter type-id='type-id-754' name='list2' filepath='./Python/initconfig.c' line='402' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyThreadState_Next' mangled-name='PyThreadState_Next' filepath='Python/pystate.c' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Next'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1185' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='PyWideStringList_Append' mangled-name='PyWideStringList_Append' filepath='./Python/initconfig.c' line='395' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Append'>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='395' column='1'/>
+      <parameter type-id='type-id-478' name='item' filepath='./Python/initconfig.c' line='395' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_ThreadHead' mangled-name='PyInterpreterState_ThreadHead' filepath='Python/pystate.c' line='1180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_ThreadHead'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1180' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='PyWideStringList_Insert' mangled-name='PyWideStringList_Insert' filepath='./Python/initconfig.c' line='354' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyWideStringList_Insert'>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='354' column='1'/>
+      <parameter type-id='type-id-31' name='index' filepath='./Python/initconfig.c' line='355' column='1'/>
+      <parameter type-id='type-id-478' name='item' filepath='./Python/initconfig.c' line='355' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Next' mangled-name='PyInterpreterState_Next' filepath='Python/pystate.c' line='1175' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Next'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1175' column='1'/>
-      <return type-id='type-id-222'/>
+    <function-decl name='_PyWideStringList_Copy' mangled-name='_PyWideStringList_Copy' filepath='./Python/initconfig.c' line='319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Copy'>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='319' column='1'/>
+      <parameter type-id='type-id-754' name='list2' filepath='./Python/initconfig.c' line='319' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Main' mangled-name='PyInterpreterState_Main' filepath='Python/pystate.c' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Main'>
-      <return type-id='type-id-222'/>
+    <function-decl name='_PyWideStringList_Clear' mangled-name='_PyWideStringList_Clear' filepath='./Python/initconfig.c' line='306' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyWideStringList_Clear'>
+      <parameter type-id='type-id-747' name='list' filepath='./Python/initconfig.c' line='306' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Head' mangled-name='PyInterpreterState_Head' filepath='Python/pystate.c' line='1163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Head'>
-      <return type-id='type-id-222'/>
+    <function-decl name='PyStatus_Exception' mangled-name='PyStatus_Exception' filepath='./Python/initconfig.c' line='266' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exception'>
+      <parameter type-id='type-id-743' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyThreadState_SetAsyncExc' mangled-name='PyThreadState_SetAsyncExc' filepath='Python/pystate.c' line='1121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_SetAsyncExc'>
-      <parameter type-id='type-id-18' name='id' filepath='Python/pystate.c' line='1121' column='1'/>
-      <parameter type-id='type-id-15' name='exc' filepath='Python/pystate.c' line='1121' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyStatus_IsExit' mangled-name='PyStatus_IsExit' filepath='./Python/initconfig.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsExit'>
+      <parameter type-id='type-id-743' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyThreadState_GetID' mangled-name='PyThreadState_GetID' filepath='Python/pystate.c' line='1105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetID'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1105' column='1'/>
-      <return type-id='type-id-21'/>
+    <function-decl name='PyStatus_IsError' mangled-name='PyStatus_IsError' filepath='./Python/initconfig.c' line='260' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_IsError'>
+      <parameter type-id='type-id-743' name='status' filepath='./Python/initconfig.c' line='266' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='PyThreadState_GetFrame' mangled-name='PyThreadState_GetFrame' filepath='Python/pystate.c' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetFrame'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1095' column='1'/>
-      <return type-id='type-id-12'/>
+    <function-decl name='PyStatus_Exit' mangled-name='PyStatus_Exit' filepath='./Python/initconfig.c' line='256' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Exit'>
+      <parameter type-id='type-id-9' name='exitcode' filepath='./Python/initconfig.c' line='256' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyThreadState_GetInterpreter' mangled-name='PyThreadState_GetInterpreter' filepath='Python/pystate.c' line='1087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetInterpreter'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1087' column='1'/>
-      <return type-id='type-id-222'/>
+    <function-decl name='PyStatus_NoMemory' mangled-name='PyStatus_NoMemory' filepath='./Python/initconfig.c' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_NoMemory'>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='Python/pystate.c' line='1076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetDict'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyStatus_Error' mangled-name='PyStatus_Error' filepath='./Python/initconfig.c' line='246' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Error'>
+      <parameter type-id='type-id-3' name='err_msg' filepath='./Python/initconfig.c' line='246' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='_PyThreadState_GetDict' mangled-name='_PyThreadState_GetDict' filepath='Python/pystate.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_GetDict'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1062' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyStatus_Ok' mangled-name='PyStatus_Ok' filepath='./Python/initconfig.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyStatus_Ok'>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='Python/pystate.c' line='1050' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Swap'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='1185' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='PyConfig_SetString' mangled-name='PyConfig_SetString' filepath='./Python/initconfig.c' line='785' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyConfig_SetString'>
+      <parameter type-id='type-id-746' name='config' filepath='./Python/initconfig.c' line='785' column='1'/>
+      <parameter type-id='type-id-329' name='config_str' filepath='./Python/initconfig.c' line='785' column='1'/>
+      <parameter type-id='type-id-478' name='str' filepath='./Python/initconfig.c' line='785' column='1'/>
+      <return type-id='type-id-743'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-256' size-in-bits='64' id='type-id-795'/>
-    <function-decl name='_PyThreadState_Swap' mangled-name='_PyThreadState_Swap' filepath='Python/pystate.c' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Swap'>
-      <parameter type-id='type-id-795' name='gilstate' filepath='Python/pystate.c' line='1018' column='1'/>
-      <parameter type-id='type-id-166' name='newts' filepath='Python/pystate.c' line='1018' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='_PyPreConfig_AsDict' mangled-name='_PyPreConfig_AsDict' filepath='./Include/internal/pycore_initconfig.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThreadState_Get' mangled-name='PyThreadState_Get' filepath='Python/pystate.c' line='1009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Get'>
-      <return type-id='type-id-166'/>
+    <function-decl name='_PyPathConfig_AsDict' mangled-name='_PyPathConfig_AsDict' filepath='./Include/internal/pycore_pathconfig.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyThreadState_UncheckedGet' mangled-name='_PyThreadState_UncheckedGet' filepath='Python/pystate.c' line='1002' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_UncheckedGet'>
-      <return type-id='type-id-166'/>
+    <function-decl name='_PyPreConfig_InitFromPreConfig' mangled-name='_PyPreConfig_InitFromPreConfig' filepath='./Include/internal/pycore_initconfig.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <typedef-decl name='_PyRuntimeState' type-id='type-id-250' filepath='./Include/internal/pycore_runtime.h' line='121' column='1' id='type-id-796'/>
-    <pointer-type-def type-id='type-id-796' size-in-bits='64' id='type-id-797'/>
-    <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='Python/pystate.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteExcept'>
-      <parameter type-id='type-id-797' name='runtime' filepath='Python/pystate.c' line='959' column='1'/>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='959' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyPreConfig_GetConfig' mangled-name='_PyPreConfig_GetConfig' filepath='./Include/internal/pycore_initconfig.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThreadState_DeleteCurrent' mangled-name='PyThreadState_DeleteCurrent' filepath='Python/pystate.c' line='943' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_DeleteCurrent'>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyPreCmdline_Read' mangled-name='_PyPreCmdline_Read' filepath='./Include/internal/pycore_initconfig.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyThreadState_DeleteCurrent' mangled-name='_PyThreadState_DeleteCurrent' filepath='Python/pystate.c' line='932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteCurrent'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='932' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyPreCmdline_SetConfig' mangled-name='_PyPreCmdline_SetConfig' filepath='./Include/internal/pycore_initconfig.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThreadState_Delete' mangled-name='PyThreadState_Delete' filepath='Python/pystate.c' line='925' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Delete'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='452' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='./Include/internal/pycore_pylifecycle.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThreadState_Clear' mangled-name='PyThreadState_Clear' filepath='Python/pystate.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Clear'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='827' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyPreCmdline_Clear' mangled-name='_PyPreCmdline_Clear' filepath='./Include/internal/pycore_initconfig.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyState_RemoveModule' mangled-name='PyState_RemoveModule' filepath='Python/pystate.c' line='770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_RemoveModule'>
-      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='770' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PySys_ReadPreinitXOptions' mangled-name='_PySys_ReadPreinitXOptions' filepath='./Include/internal/pycore_pylifecycle.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyState_AddModule' mangled-name='PyState_AddModule' filepath='Python/pystate.c' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_AddModule'>
-      <parameter type-id='type-id-15' name='module' filepath='Python/pystate.c' line='749' column='1'/>
-      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='749' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyArgv_AsWstrList' mangled-name='_PyArgv_AsWstrList' filepath='./Include/internal/pycore_initconfig.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='Python/pystate.c' line='716' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_AddModule'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/pystate.c' line='716' column='1'/>
-      <parameter type-id='type-id-15' name='module' filepath='Python/pystate.c' line='716' column='1'/>
-      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='716' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyOS_GetOpt' mangled-name='_PyOS_GetOpt' filepath='./Include/internal/pycore_getopt.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='Python/pystate.c' line='697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_FindModule'>
-      <parameter type-id='type-id-505' name='module' filepath='Python/pystate.c' line='697' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyOS_ResetGetOpt' mangled-name='_PyOS_ResetGetOpt' filepath='./Include/internal/pycore_getopt.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='Python/pystate.c' line='691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Init'>
-      <parameter type-id='type-id-166' name='tstate' filepath='Python/errors.c' line='452' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='./Include/cpython/fileutils.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='Python/pystate.c' line='685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Prealloc'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1180' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='./Include/cpython/fileutils.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='Python/pystate.c' line='679' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_New'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1180' column='1'/>
-      <return type-id='type-id-166'/>
+    <function-decl name='wcstok' mangled-name='wcstok' filepath='/usr/include/wchar.h' line='217' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_GetDict' mangled-name='PyInterpreterState_GetDict' filepath='Python/pystate.c' line='598' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetDict'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='598' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PySys_ReadPreinitWarnOptions' mangled-name='_PySys_ReadPreinitWarnOptions' filepath='./Include/internal/pycore_pylifecycle.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_GetMainModule' mangled-name='_PyInterpreterState_GetMainModule' filepath='Python/pystate.c' line='588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetMainModule'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='598' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='setvbuf' mangled-name='setvbuf' filepath='/usr/include/stdio.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_RequireIDRef' mangled-name='_PyInterpreterState_RequireIDRef' filepath='Python/pystate.c' line='582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_RequireIDRef'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='582' column='1'/>
-      <parameter type-id='type-id-8' name='required' filepath='Python/pystate.c' line='582' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_GetEnv' mangled-name='_Py_GetEnv' filepath='./Include/internal/pycore_initconfig.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_RequiresIDRef' mangled-name='_PyInterpreterState_RequiresIDRef' filepath='Python/pystate.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_RequiresIDRef'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='strtoul' mangled-name='strtoul' filepath='/usr/include/stdlib.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='Python/pystate.c' line='554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDDecref'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='554' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_get_env_flag' mangled-name='_Py_get_env_flag' filepath='./Include/internal/pycore_initconfig.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_IDIncref' mangled-name='_PyInterpreterState_IDIncref' filepath='Python/pystate.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDIncref'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_get_xoption' mangled-name='_Py_get_xoption' filepath='./Include/internal/pycore_initconfig.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='Python/pystate.c' line='523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDInitref'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='wcstol' mangled-name='wcstol' filepath='/usr/include/wchar.h' line='428' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='Python/pystate.c' line='505' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_LookUpID'>
-      <parameter type-id='type-id-227' name='requested_id' filepath='Python/pystate.c' line='505' column='1'/>
-      <return type-id='type-id-222'/>
+    <function-decl name='wcschr' mangled-name='wcschr' filepath='/usr/include/wchar.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='Python/pystate.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetID'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='477' column='1'/>
-      <return type-id='type-id-227'/>
+    <function-decl name='_Py_str_to_int' mangled-name='_Py_str_to_int' filepath='./Include/internal/pycore_initconfig.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Get' mangled-name='PyInterpreterState_Get' filepath='Python/pystate.c' line='464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Get'>
-      <return type-id='type-id-222'/>
+    <function-decl name='_Py_IsLocaleCoercionTarget' mangled-name='_Py_IsLocaleCoercionTarget' filepath='./Include/internal/pycore_pylifecycle.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='Python/pystate.c' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Delete'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='375' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_GetLocaleEncoding' mangled-name='_Py_GetLocaleEncoding' filepath='./Include/internal/pycore_fileutils.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_Clear' mangled-name='PyInterpreterState_Clear' filepath='Python/pystate.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Clear'>
-      <parameter type-id='type-id-222' name='interp' filepath='Python/ceval.c' line='577' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='./Include/internal/pycore_fileutils.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInterpreterState_New' mangled-name='PyInterpreterState_New' filepath='Python/pystate.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_New'>
-      <return type-id='type-id-222'/>
+    <function-decl name='_PyConfig_InitPathConfig' mangled-name='_PyConfig_InitPathConfig' filepath='./Include/internal/pycore_initconfig.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='Python/pystate.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_Enable'>
-      <parameter type-id='type-id-797' name='runtime' filepath='Python/pystate.c' line='178' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyUnicode_AsWideCharString' mangled-name='PyUnicode_AsWideCharString' filepath='./Include/unicodeobject.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='Python/pystate.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Fini'>
-      <parameter type-id='type-id-797' name='runtime' filepath='Python/pystate.c' line='116' column='1'/>
-      <return type-id='type-id-69'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/marshal.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyMarshal_Init' mangled-name='PyMarshal_Init' filepath='Python/marshal.c' line='1821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_Init'>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='Python/pystate.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Init'>
-      <parameter type-id='type-id-797' name='runtime' filepath='Python/pystate.c' line='102' column='1'/>
-      <return type-id='type-id-740'/>
+    <function-decl name='PyMarshal_WriteObjectToString' mangled-name='PyMarshal_WriteObjectToString' filepath='Python/marshal.c' line='1570' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToString'>
+      <parameter type-id='type-id-16' name='x' filepath='Python/marshal.c' line='1570' column='1'/>
+      <parameter type-id='type-id-9' name='version' filepath='Python/marshal.c' line='1570' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pythonrun.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyRun_InteractiveLoop' mangled-name='PyRun_InteractiveLoop' filepath='Python/pythonrun.c' line='1580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoop'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMarshal_ReadObjectFromString' mangled-name='PyMarshal_ReadObjectFromString' filepath='Python/marshal.c' line='1549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromString'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/marshal.c' line='1549' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Python/marshal.c' line='1549' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='PyRun_InteractiveOne' mangled-name='PyRun_InteractiveOne' filepath='Python/pythonrun.c' line='1573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOne'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='Py_CompileStringFlags' mangled-name='Py_CompileStringFlags' filepath='Python/pythonrun.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringFlags'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1565' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1565' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1565' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1566' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1558' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileString'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1558' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1558' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1558' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_SimpleString' mangled-name='PyRun_SimpleString' filepath='Python/pythonrun.c' line='1551' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleString'>
-      <parameter type-id='type-id-3' name='where' filepath='Python/ceval.c' line='6513' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_String' mangled-name='PyRun_String' filepath='Python/pythonrun.c' line='1544' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_String'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1544' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1544' column='1'/>
-      <parameter type-id='type-id-15' name='g' filepath='Python/pythonrun.c' line='1544' column='1'/>
-      <parameter type-id='type-id-15' name='l' filepath='Python/pythonrun.c' line='1544' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_SimpleFileEx' mangled-name='PyRun_SimpleFileEx' filepath='Python/pythonrun.c' line='1536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileEx'>
-      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_SimpleFile' mangled-name='PyRun_SimpleFile' filepath='Python/pythonrun.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_FileFlags' mangled-name='PyRun_FileFlags' filepath='Python/pythonrun.c' line='1521' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1521' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1521' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1521' column='1'/>
-      <parameter type-id='type-id-15' name='g' filepath='Python/pythonrun.c' line='1521' column='1'/>
-      <parameter type-id='type-id-15' name='l' filepath='Python/pythonrun.c' line='1521' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1522' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_FileEx' mangled-name='PyRun_FileEx' filepath='Python/pythonrun.c' line='1514' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileEx'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <parameter type-id='type-id-15' name='g' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <parameter type-id='type-id-15' name='l' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1514' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_File' mangled-name='PyRun_File' filepath='Python/pythonrun.c' line='1507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_File'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1507' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1507' column='1'/>
-      <parameter type-id='type-id-8' name='s' filepath='Python/pythonrun.c' line='1507' column='1'/>
-      <parameter type-id='type-id-15' name='g' filepath='Python/pythonrun.c' line='1507' column='1'/>
-      <parameter type-id='type-id-15' name='l' filepath='Python/pythonrun.c' line='1507' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_AnyFileFlags' mangled-name='PyRun_AnyFileFlags' filepath='Python/pythonrun.c' line='1500' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1500' column='1'/>
-      <parameter type-id='type-id-3' name='name' filepath='Python/pythonrun.c' line='1500' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1500' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_AnyFileEx' mangled-name='PyRun_AnyFileEx' filepath='Python/pythonrun.c' line='1493' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileEx'>
-      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <parameter type-id='type-id-8' name='c' filepath='Python/pythonrun.c' line='1536' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_AnyFile' mangled-name='PyRun_AnyFile' filepath='Python/pythonrun.c' line='1486' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFile'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='Python/pythonrun.c' line='1397' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SourceAsString'>
-      <parameter type-id='type-id-15' name='cmd' filepath='Python/pythonrun.c' line='1397' column='1'/>
-      <parameter type-id='type-id-3' name='funcname' filepath='Python/pythonrun.c' line='1397' column='1'/>
-      <parameter type-id='type-id-3' name='what' filepath='Python/pythonrun.c' line='1397' column='1'/>
-      <parameter type-id='type-id-522' name='cf' filepath='Python/pythonrun.c' line='1397' column='1'/>
-      <parameter type-id='type-id-86' name='cmd_copy' filepath='Python/pythonrun.c' line='1397' column='1'/>
-      <return type-id='type-id-3'/>
+    <function-decl name='PyMarshal_ReadObjectFromFile' mangled-name='PyMarshal_ReadObjectFromFile' filepath='Python/marshal.c' line='1529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadObjectFromFile'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1529' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='Py_CompileStringExFlags' mangled-name='Py_CompileStringExFlags' filepath='Python/pythonrun.c' line='1384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringExFlags'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1384' column='1'/>
-      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1384' column='1'/>
-      <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1384' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1385' column='1'/>
-      <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1385' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='Python/pythonrun.c' line='1359' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringObject'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1359' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pythonrun.c' line='1359' column='1'/>
-      <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1359' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1360' column='1'/>
-      <parameter type-id='type-id-8' name='optimize' filepath='Python/pythonrun.c' line='1360' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_FileExFlags' mangled-name='PyRun_FileExFlags' filepath='Python/pythonrun.c' line='1218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileExFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1218' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1218' column='1'/>
-      <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1218' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/pythonrun.c' line='1218' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/pythonrun.c' line='1219' column='1'/>
-      <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='1219' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1219' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='Python/pythonrun.c' line='1162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_StringFlags'>
-      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1162' column='1'/>
-      <parameter type-id='type-id-8' name='start' filepath='Python/pythonrun.c' line='1162' column='1'/>
-      <parameter type-id='type-id-15' name='globals' filepath='Python/pythonrun.c' line='1162' column='1'/>
-      <parameter type-id='type-id-15' name='locals' filepath='Python/pythonrun.c' line='1163' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1163' column='1'/>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='Python/pythonrun.c' line='1145' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Display'>
-      <parameter type-id='type-id-15' name='type' filepath='Python/errors.c' line='68' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/errors.c' line='68' column='1'/>
-      <parameter type-id='type-id-15' name='traceback' filepath='Python/errors.c' line='68' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='Python/pythonrun.c' line='1107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Display'>
-      <parameter type-id='type-id-15' name='file' filepath='Python/pythonrun.c' line='1107' column='1'/>
-      <parameter type-id='type-id-15' name='exception' filepath='Python/pythonrun.c' line='1107' column='1'/>
-      <parameter type-id='type-id-15' name='value' filepath='Python/pythonrun.c' line='1107' column='1'/>
-      <parameter type-id='type-id-15' name='tb' filepath='Python/pythonrun.c' line='1107' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_Print' mangled-name='PyErr_Print' filepath='Python/pythonrun.c' line='883' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Print'>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='Python/pythonrun.c' line='876' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_PrintEx'>
-      <parameter type-id='type-id-8' name='new_limit' filepath='Python/ceval.c' line='848' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='Python/pythonrun.c' line='870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Print'>
-      <parameter type-id='type-id-331' name='tstate' filepath='Python/pythonrun.c' line='870' column='1'/>
-      <return type-id='type-id-69'/>
-    </function-decl>
-    <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='Python/pythonrun.c' line='699' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HandleSystemExit'>
-      <parameter type-id='type-id-452' name='exitcode_p' filepath='Python/pythonrun.c' line='699' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='Python/pythonrun.c' line='495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleStringFlags'>
-      <parameter type-id='type-id-3' name='command' filepath='Python/pythonrun.c' line='495' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='495' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line='481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileExFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='482' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyRun_SimpleFileObject' mangled-name='_PyRun_SimpleFileObject' filepath='Python/pythonrun.c' line='398' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_SimpleFileObject'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='398' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pythonrun.c' line='398' column='1'/>
-      <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='398' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='399' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_InteractiveOneFlags' mangled-name='PyRun_InteractiveOneFlags' filepath='Python/pythonrun.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_InteractiveOneObject' mangled-name='PyRun_InteractiveOneObject' filepath='Python/pythonrun.c' line='287' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneObject'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='287' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pythonrun.c' line='287' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='287' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_InteractiveLoopFlags' mangled-name='PyRun_InteractiveLoopFlags' filepath='Python/pythonrun.c' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoopFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='300' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyRun_InteractiveLoopObject' mangled-name='_PyRun_InteractiveLoopObject' filepath='Python/pythonrun.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_InteractiveLoopObject'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='122' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pythonrun.c' line='122' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='122' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='Python/pythonrun.c' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileExFlags'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='481' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='482' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyRun_AnyFileObject' mangled-name='_PyRun_AnyFileObject' filepath='Python/pythonrun.c' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_AnyFileObject'>
-      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='68' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/pythonrun.c' line='68' column='1'/>
-      <parameter type-id='type-id-8' name='closeit' filepath='Python/pythonrun.c' line='68' column='1'/>
-      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='69' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='Python/marshal.c' line='1504' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLastObjectFromFile'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1504' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pytime.c' comp-dir-path='/src' language='LANG_C99'>
-    <typedef-decl name='__time_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='160' column='1' id='type-id-798'/>
-    <typedef-decl name='time_t' type-id='type-id-798' filepath='/usr/include/x86_64-linux-gnu/bits/types/time_t.h' line='7' column='1' id='type-id-799'/>
-    <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='7' column='1' id='type-id-800'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='tm_sec' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='9' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='tm_min' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='10' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tm_hour' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='11' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='tm_mday' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='12' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='tm_mon' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='13' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='160'>
-        <var-decl name='tm_year' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='14' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='tm_wday' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='15' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='tm_yday' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='16' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='tm_isdst' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='17' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='tm_gmtoff' type-id='type-id-32' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='20' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='tm_zone' type-id='type-id-3' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='21' column='1'/>
-      </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-800' size-in-bits='64' id='type-id-801'/>
-    <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='Python/pytime.c' line='1125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_gmtime'>
-      <parameter type-id='type-id-799' name='t' filepath='Python/pytime.c' line='1125' column='1'/>
-      <parameter type-id='type-id-801' name='tm' filepath='Python/pytime.c' line='1125' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='Python/marshal.c' line='1468' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadLongFromFile'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1468' column='1'/>
+      <return type-id='type-id-33'/>
     </function-decl>
-    <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='Python/pytime.c' line='1087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_localtime'>
-      <parameter type-id='type-id-799' name='t' filepath='Python/pytime.c' line='1125' column='1'/>
-      <parameter type-id='type-id-801' name='tm' filepath='Python/pytime.c' line='1125' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMarshal_ReadShortFromFile' mangled-name='PyMarshal_ReadShortFromFile' filepath='Python/marshal.c' line='1452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_ReadShortFromFile'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='1452' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <typedef-decl name='_PyTime_t' type-id='type-id-227' filepath='./Include/cpython/pytime.h' line='16' column='1' id='type-id-802'/>
-    <function-decl name='_PyTime_GetPerfCounter' mangled-name='_PyTime_GetPerfCounter' filepath='Python/pytime.c' line='1068' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounter'>
-      <return type-id='type-id-802'/>
+    <function-decl name='PyMarshal_WriteObjectToFile' mangled-name='PyMarshal_WriteObjectToFile' filepath='Python/marshal.c' line='595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteObjectToFile'>
+      <parameter type-id='type-id-16' name='x' filepath='Python/marshal.c' line='595' column='1'/>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='595' column='1'/>
+      <parameter type-id='type-id-9' name='version' filepath='Python/marshal.c' line='595' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-802' size-in-bits='64' id='type-id-803'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-804' visibility='default' filepath='./Include/cpython/pytime.h' line='165' column='1' id='type-id-805'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='implementation' type-id='type-id-3' visibility='default' filepath='./Include/cpython/pytime.h' line='166' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='monotonic' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pytime.h' line='167' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='96'>
-        <var-decl name='adjustable' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pytime.h' line='168' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='resolution' type-id='type-id-371' visibility='default' filepath='./Include/cpython/pytime.h' line='169' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='_Py_clock_info_t' type-id='type-id-805' filepath='./Include/cpython/pytime.h' line='170' column='1' id='type-id-804'/>
-    <pointer-type-def type-id='type-id-804' size-in-bits='64' id='type-id-806'/>
-    <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='Python/pytime.c' line='1057' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounterWithInfo'>
-      <parameter type-id='type-id-803' name='t' filepath='Python/pytime.c' line='1057' column='1'/>
-      <parameter type-id='type-id-806' name='info' filepath='Python/pytime.c' line='1057' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyMarshal_WriteLongToFile' mangled-name='PyMarshal_WriteLongToFile' filepath='Python/marshal.c' line='580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMarshal_WriteLongToFile'>
+      <parameter type-id='type-id-33' name='x' filepath='Python/marshal.c' line='580' column='1'/>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/marshal.c' line='580' column='1'/>
+      <parameter type-id='type-id-9' name='version' filepath='Python/marshal.c' line='580' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='Python/pytime.c' line='966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClockWithInfo'>
-      <parameter type-id='type-id-803' name='t' filepath='Python/pytime.c' line='1057' column='1'/>
-      <parameter type-id='type-id-806' name='info' filepath='Python/pytime.c' line='1057' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_hashtable_new_full' mangled-name='_Py_hashtable_new_full' filepath='./Include/internal/pycore_hashtable.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='Python/pytime.c' line='954' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClock'>
-      <return type-id='type-id-802'/>
+    <function-decl name='_Py_hashtable_set' mangled-name='_Py_hashtable_set' filepath='./Include/internal/pycore_hashtable.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='Python/pytime.c' line='781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClockWithInfo'>
-      <parameter type-id='type-id-803' name='t' filepath='Python/pytime.c' line='1057' column='1'/>
-      <parameter type-id='type-id-806' name='info' filepath='Python/pytime.c' line='1057' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_hashtable_destroy' mangled-name='_Py_hashtable_destroy' filepath='./Include/internal/pycore_hashtable.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_GetSystemClock' mangled-name='_PyTime_GetSystemClock' filepath='Python/pytime.c' line='769' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClock'>
-      <return type-id='type-id-802'/>
+    <function-decl name='__fread_alias' mangled-name='fread' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='271' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='10' column='1' id='type-id-807'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='tv_sec' type-id='type-id-798' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='12' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tv_nsec' type-id='type-id-808' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='16' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='__syscall_slong_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='196' column='1' id='type-id-808'/>
-    <pointer-type-def type-id='type-id-807' size-in-bits='64' id='type-id-809'/>
-    <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='Python/pytime.c' line='636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimespec'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='636' column='1'/>
-      <parameter type-id='type-id-809' name='ts' filepath='Python/pytime.c' line='636' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='./Include/cpython/fileutils.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-799' size-in-bits='64' id='type-id-810'/>
-    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pytime.h' line='20' column='1' id='type-id-811'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='_PyTime_ROUND_FLOOR' value='0'/>
-      <enumerator name='_PyTime_ROUND_CEILING' value='1'/>
-      <enumerator name='_PyTime_ROUND_HALF_EVEN' value='2'/>
-      <enumerator name='_PyTime_ROUND_UP' value='3'/>
-      <enumerator name='_PyTime_ROUND_TIMEOUT' value='3'/>
-    </enum-decl>
-    <typedef-decl name='_PyTime_round_t' type-id='type-id-811' filepath='./Include/cpython/pytime.h' line='40' column='1' id='type-id-812'/>
-    <function-decl name='_PyTime_AsTimevalTime_t' mangled-name='_PyTime_AsTimevalTime_t' filepath='Python/pytime.c' line='616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimevalTime_t'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='616' column='1'/>
-      <parameter type-id='type-id-810' name='p_secs' filepath='Python/pytime.c' line='616' column='1'/>
-      <parameter type-id='type-id-452' name='us' filepath='Python/pytime.c' line='616' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='617' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='8' column='1' id='type-id-813'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='tv_sec' type-id='type-id-798' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='10' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='tv_usec' type-id='type-id-814' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='11' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='__suseconds_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='162' column='1' id='type-id-814'/>
-    <pointer-type-def type-id='type-id-813' size-in-bits='64' id='type-id-815'/>
-    <function-decl name='_PyTime_AsTimeval_noraise' mangled-name='_PyTime_AsTimeval_noraise' filepath='Python/pytime.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval_noraise'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='610' column='1'/>
-      <parameter type-id='type-id-815' name='tv' filepath='Python/pytime.c' line='610' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='610' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyFloat_Unpack8' mangled-name='_PyFloat_Unpack8' filepath='./Include/floatobject.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='Python/pytime.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='610' column='1'/>
-      <parameter type-id='type-id-815' name='tv' filepath='Python/pytime.c' line='610' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='610' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyLong_FromByteArray' mangled-name='_PyLong_FromByteArray' filepath='./Include/longobject.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='Python/pytime.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMicroseconds'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='533' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='533' column='1'/>
-      <return type-id='type-id-802'/>
+    <function-decl name='_PyLong_New' mangled-name='_PyLong_New' filepath='./Include/longintrepr.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_AsMilliseconds' mangled-name='_PyTime_AsMilliseconds' filepath='Python/pytime.c' line='527' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMilliseconds'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='533' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='533' column='1'/>
-      <return type-id='type-id-802'/>
+    <function-decl name='_PyFloat_Pack8' mangled-name='_PyFloat_Pack8' filepath='./Include/floatobject.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_AsNanosecondsObject' mangled-name='_PyTime_AsNanosecondsObject' filepath='Python/pytime.c' line='473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsNanosecondsObject'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='473' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyComplex_RealAsDouble' mangled-name='PyComplex_RealAsDouble' filepath='./Include/complexobject.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='Python/pytime.c' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsSecondsDouble'>
-      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='453' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='PyComplex_ImagAsDouble' mangled-name='PyComplex_ImagAsDouble' filepath='./Include/complexobject.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTime_FromMillisecondsObject' mangled-name='_PyTime_FromMillisecondsObject' filepath='Python/pytime.c' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromMillisecondsObject'>
-      <parameter type-id='type-id-803' name='t' filepath='Python/pytime.c' line='447' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='447' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='447' column='1'/>
-      <return type-id='type-id-8'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/modsupport.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='_Py_PackageContext' type-id='type-id-3' mangled-name='_Py_PackageContext' visibility='default' filepath='./Include/modsupport.h' line='257' column='1' elf-symbol-id='_Py_PackageContext'/>
+    <function-decl name='PyModule_AddType' mangled-name='PyModule_AddType' filepath='Python/modsupport.c' line='704' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddType'>
+      <parameter type-id='type-id-16' name='module' filepath='Python/modsupport.c' line='704' column='1'/>
+      <parameter type-id='type-id-32' name='type' filepath='Python/modsupport.c' line='704' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='Python/pytime.c' line='441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSecondsObject'>
-      <parameter type-id='type-id-803' name='t' filepath='Python/pytime.c' line='447' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='447' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='447' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyModule_AddStringConstant' mangled-name='PyModule_AddStringConstant' filepath='Python/modsupport.c' line='692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddStringConstant'>
+      <parameter type-id='type-id-16' name='m' filepath='Python/modsupport.c' line='692' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='692' column='1'/>
+      <parameter type-id='type-id-3' name='value' filepath='Python/modsupport.c' line='692' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='Python/pytime.c' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimeval'>
-      <parameter type-id='type-id-803' name='tp' filepath='Python/pytime.c' line='380' column='1'/>
-      <parameter type-id='type-id-815' name='tv' filepath='Python/pytime.c' line='380' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyModule_AddIntConstant' mangled-name='PyModule_AddIntConstant' filepath='Python/modsupport.c' line='680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddIntConstant'>
+      <parameter type-id='type-id-16' name='m' filepath='Python/modsupport.c' line='680' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='680' column='1'/>
+      <parameter type-id='type-id-33' name='value' filepath='Python/modsupport.c' line='680' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='Python/pytime.c' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimespec'>
-      <parameter type-id='type-id-803' name='tp' filepath='Python/pytime.c' line='334' column='1'/>
-      <parameter type-id='type-id-809' name='ts' filepath='Python/pytime.c' line='334' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyModule_AddObject' mangled-name='PyModule_AddObject' filepath='Python/modsupport.c' line='670' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddObject'>
+      <parameter type-id='type-id-16' name='mod' filepath='Python/modsupport.c' line='670' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='670' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/modsupport.c' line='670' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='Python/pytime.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanosecondsObject'>
-      <parameter type-id='type-id-803' name='tp' filepath='Python/pytime.c' line='268' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='268' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_VaBuildStack_SizeT' mangled-name='_Py_VaBuildStack_SizeT' filepath='Python/modsupport.c' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack_SizeT'>
+      <parameter type-id='type-id-86' name='small_stack' filepath='Python/modsupport.c' line='581' column='1'/>
+      <parameter type-id='type-id-31' name='small_stack_len' filepath='Python/modsupport.c' line='581' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='582' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='582' column='1'/>
+      <parameter type-id='type-id-125' name='p_nargs' filepath='Python/modsupport.c' line='582' column='1'/>
+      <return type-id='type-id-86'/>
     </function-decl>
-    <function-decl name='_PyTime_FromNanoseconds' mangled-name='_PyTime_FromNanoseconds' filepath='Python/pytime.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanoseconds'>
-      <parameter type-id='type-id-802' name='ns' filepath='Python/pytime.c' line='261' column='1'/>
-      <return type-id='type-id-802'/>
+    <function-decl name='_Py_VaBuildStack' mangled-name='_Py_VaBuildStack' filepath='Python/modsupport.c' line='574' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildStack'>
+      <parameter type-id='type-id-86' name='small_stack' filepath='Python/modsupport.c' line='581' column='1'/>
+      <parameter type-id='type-id-31' name='small_stack_len' filepath='Python/modsupport.c' line='581' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='582' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='582' column='1'/>
+      <parameter type-id='type-id-125' name='p_nargs' filepath='Python/modsupport.c' line='582' column='1'/>
+      <return type-id='type-id-86'/>
     </function-decl>
-    <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='Python/pytime.c' line='244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSeconds'>
-      <parameter type-id='type-id-8' name='seconds' filepath='Python/pytime.c' line='244' column='1'/>
-      <return type-id='type-id-802'/>
+    <function-decl name='_Py_VaBuildValue_SizeT' mangled-name='_Py_VaBuildValue_SizeT' filepath='Python/modsupport.c' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_VaBuildValue_SizeT'>
+      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='545' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='545' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-816'/>
-    <function-decl name='_PyTime_ObjectToTimeval' mangled-name='_PyTime_ObjectToTimeval' filepath='Python/pytime.c' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimeval'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-810' name='sec' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-816' name='usec' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='238' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='Py_VaBuildValue' mangled-name='Py_VaBuildValue' filepath='Python/modsupport.c' line='539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_VaBuildValue'>
+      <parameter type-id='type-id-3' name='format' filepath='Python/modsupport.c' line='545' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/modsupport.c' line='545' column='1'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='Python/pytime.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimespec'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-810' name='sec' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-816' name='usec' filepath='Python/pytime.c' line='237' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='238' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_BuildValue_SizeT' mangled-name='_Py_BuildValue_SizeT' filepath='Python/modsupport.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_BuildValue_SizeT'>
+      <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='Python/pytime.c' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTime_t'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='197' column='1'/>
-      <parameter type-id='type-id-810' name='sec' filepath='Python/pytime.c' line='197' column='1'/>
-      <parameter type-id='type-id-812' name='round' filepath='Python/pytime.c' line='197' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='Py_BuildValue' mangled-name='Py_BuildValue' filepath='Python/modsupport.c' line='517' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BuildValue'>
+      <parameter type-id='type-id-3' name='format' filepath='Objects/bytesobject.c' line='410' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-16'/>
     </function-decl>
-    <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='Python/pytime.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromTime_t'>
-      <parameter type-id='type-id-799' name='t' filepath='Python/pytime.c' line='91' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='Python/modsupport.c' line='18' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_convert_optional_to_ssize_t'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/modsupport.c' line='18' column='1'/>
+      <parameter type-id='type-id-21' name='result' filepath='Python/modsupport.c' line='18' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='Python/pytime.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsTime_t'>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pytime.c' line='71' column='1'/>
-      <return type-id='type-id-799'/>
+    <function-decl name='PyModule_AddObjectRef' mangled-name='PyModule_AddObjectRef' filepath='Python/modsupport.c' line='637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyModule_AddObjectRef'>
+      <parameter type-id='type-id-16' name='mod' filepath='Python/modsupport.c' line='637' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/modsupport.c' line='637' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/modsupport.c' line='637' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='Python/pytime.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_MulDiv'>
-      <parameter type-id='type-id-802' name='ticks' filepath='Python/pytime.c' line='53' column='1'/>
-      <parameter type-id='type-id-802' name='mul' filepath='Python/pytime.c' line='53' column='1'/>
-      <parameter type-id='type-id-802' name='div' filepath='Python/pytime.c' line='53' column='1'/>
-      <return type-id='type-id-802'/>
+    <function-decl name='PyModule_GetName' mangled-name='PyModule_GetName' filepath='./Include/moduleobject.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/bootstrap_hash.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_PyOS_URandomNonblock' mangled-name='_PyOS_URandomNonblock' filepath='Python/bootstrap_hash.c' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandomNonblock'>
-      <parameter type-id='type-id-20' name='buffer' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
-      <return type-id='type-id-8'/>
+  <abi-instr version='1.0' address-size='64' path='Python/mysnprintf.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='Python/mysnprintf.c' line='52' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_vsnprintf'>
+      <parameter type-id='type-id-72' name='str' filepath='Python/mysnprintf.c' line='52' column='1'/>
+      <parameter type-id='type-id-157' name='size' filepath='Python/mysnprintf.c' line='52' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/mysnprintf.c' line='52' column='1'/>
+      <parameter type-id='type-id-217' name='va' filepath='Python/mysnprintf.c' line='52' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
-    <function-decl name='_PyOS_URandom' mangled-name='_PyOS_URandom' filepath='Python/bootstrap_hash.c' line='552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandom'>
-      <parameter type-id='type-id-20' name='buffer' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='PyOS_snprintf' mangled-name='PyOS_snprintf' filepath='Python/mysnprintf.c' line='40' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_snprintf'>
+      <parameter type-id='type-id-72' name='str' filepath='Python/mysnprintf.c' line='40' column='1'/>
+      <parameter type-id='type-id-157' name='size' filepath='Python/mysnprintf.c' line='40' column='1'/>
+      <parameter type-id='type-id-3' name='format' filepath='Python/mysnprintf.c' line='40' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='__builtin___vsnprintf_chk' mangled-name='__vsnprintf_chk' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/structmember.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='Python/structmember.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_SetOne'>
-      <parameter type-id='type-id-72' name='addr' filepath='Python/structmember.c' line='105' column='1'/>
-      <parameter type-id='type-id-433' name='l' filepath='Python/structmember.c' line='105' column='1'/>
-      <parameter type-id='type-id-15' name='v' filepath='Python/structmember.c' line='105' column='1'/>
-      <return type-id='type-id-8'/>
+  <abi-instr version='1.0' address-size='64' path='Python/mystrtoul.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyOS_strtol' mangled-name='PyOS_strtol' filepath='Python/mystrtoul.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtol'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/mystrtoul.c' line='263' column='1'/>
+      <parameter type-id='type-id-215' name='ptr' filepath='Python/mystrtoul.c' line='263' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Python/mystrtoul.c' line='263' column='1'/>
+      <return type-id='type-id-33'/>
     </function-decl>
-    <function-decl name='PyMember_GetOne' mangled-name='PyMember_GetOne' filepath='Python/structmember.c' line='8' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_GetOne'>
-      <parameter type-id='type-id-3' name='obj_addr' filepath='Python/structmember.c' line='8' column='1'/>
-      <parameter type-id='type-id-433' name='l' filepath='Python/structmember.c' line='8' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyOS_strtoul' mangled-name='PyOS_strtoul' filepath='Python/mystrtoul.c' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_strtoul'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/mystrtoul.c' line='95' column='1'/>
+      <parameter type-id='type-id-215' name='ptr' filepath='Python/mystrtoul.c' line='95' column='1'/>
+      <parameter type-id='type-id-9' name='base' filepath='Python/mystrtoul.c' line='95' column='1'/>
+      <return type-id='type-id-19'/>
     </function-decl>
   </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/symtable.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PySTEntry_Type' type-id='type-id-149' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='71' column='1'/>
-    <class-decl name='_symtable_entry' size-in-bits='896' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='37' column='1' id='type-id-817'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ob_base' type-id='type-id-68' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='38' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='ste_id' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='39' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='ste_symbols' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='40' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='ste_name' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='41' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='ste_varnames' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='42' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='ste_children' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='43' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='ste_directives' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='44' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='ste_type' type-id='type-id-818' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='45' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='544'>
-        <var-decl name='ste_nested' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='46' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='31'>
-        <var-decl name='ste_free' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='47' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='30'>
-        <var-decl name='ste_child_free' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='48' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='29'>
-        <var-decl name='ste_generator' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='50' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='28'>
-        <var-decl name='ste_coroutine' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='51' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='27'>
-        <var-decl name='ste_comprehension' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='52' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='26'>
-        <var-decl name='ste_varargs' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='53' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='25'>
-        <var-decl name='ste_varkeywords' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='54' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='24'>
-        <var-decl name='ste_returns_value' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='55' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='23'>
-        <var-decl name='ste_needs_class_closure' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='57' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='22'>
-        <var-decl name='ste_comp_iter_target' type-id='type-id-65' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='60' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='608'>
-        <var-decl name='ste_comp_iter_expr' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='61' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='ste_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='62' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='672'>
-        <var-decl name='ste_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='63' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='ste_end_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='64' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='736'>
-        <var-decl name='ste_end_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='65' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='ste_opt_lineno' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='66' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='800'>
-        <var-decl name='ste_opt_col_offset' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='67' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='ste_table' type-id='type-id-819' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='68' column='1'/>
-      </data-member>
-    </class-decl>
-    <enum-decl name='_block_type' filepath='./Include/internal/pycore_symtable.h' line='13' column='1' id='type-id-820'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='FunctionBlock' value='0'/>
-      <enumerator name='ClassBlock' value='1'/>
-      <enumerator name='ModuleBlock' value='2'/>
-      <enumerator name='AnnotationBlock' value='3'/>
-    </enum-decl>
-    <typedef-decl name='_Py_block_ty' type-id='type-id-820' filepath='./Include/internal/pycore_symtable.h' line='14' column='1' id='type-id-818'/>
-    <class-decl name='symtable' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='18' column='1' id='type-id-821'>
+  <abi-instr version='1.0' address-size='64' path='Python/pathconfig.c' comp-dir-path='/src' language='LANG_C99'>
+    <class-decl name='_PyPathConfig' size-in-bits='384' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='11' column='1' id='type-id-755'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='st_filename' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='19' column='1'/>
+        <var-decl name='program_full_path' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='13' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='st_cur' type-id='type-id-822' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='21' column='1'/>
+        <var-decl name='prefix' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='14' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='st_top' type-id='type-id-822' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='22' column='1'/>
+        <var-decl name='exec_prefix' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='15' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='st_blocks' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='23' column='1'/>
+        <var-decl name='module_search_path' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='17' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='st_stack' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='25' column='1'/>
+        <var-decl name='program_name' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='19' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='st_global' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='26' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='st_nblocks' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='27' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='st_private' type-id='type-id-15' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='30' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='st_future' type-id='type-id-823' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='31' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='33' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='608'>
-        <var-decl name='recursion_limit' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='34' column='1'/>
-      </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-817' size-in-bits='64' id='type-id-822'/>
-    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-824' visibility='default' filepath='./Include/cpython/compile.h' line='34' column='1' id='type-id-825'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='ff_features' type-id='type-id-8' visibility='default' filepath='./Include/cpython/compile.h' line='35' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='32'>
-        <var-decl name='ff_lineno' type-id='type-id-8' visibility='default' filepath='./Include/cpython/compile.h' line='36' column='1'/>
+        <var-decl name='home' type-id='type-id-325' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='21' column='1'/>
       </data-member>
     </class-decl>
-    <typedef-decl name='PyFutureFeatures' type-id='type-id-825' filepath='./Include/cpython/compile.h' line='37' column='1' id='type-id-824'/>
-    <pointer-type-def type-id='type-id-824' size-in-bits='64' id='type-id-823'/>
-    <pointer-type-def type-id='type-id-821' size-in-bits='64' id='type-id-819'/>
-    <typedef-decl name='PySTEntryObject' type-id='type-id-817' filepath='./Include/internal/pycore_symtable.h' line='69' column='1' id='type-id-826'/>
-    <pointer-type-def type-id='type-id-826' size-in-bits='64' id='type-id-827'/>
-    <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='Python/symtable.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Lookup'>
-      <parameter type-id='type-id-819' name='st' filepath='Python/symtable.c' line='373' column='1'/>
-      <parameter type-id='type-id-20' name='key' filepath='Python/symtable.c' line='373' column='1'/>
-      <return type-id='type-id-827'/>
+    <typedef-decl name='_PyPathConfig' type-id='type-id-755' filepath='./Include/internal/pycore_pathconfig.h' line='31' column='1' id='type-id-756'/>
+    <var-decl name='_Py_path_config' type-id='type-id-756' mangled-name='_Py_path_config' visibility='default' filepath='./Include/internal/pycore_pathconfig.h' line='44' column='1' elf-symbol-id='_Py_path_config'/>
+    <function-decl name='Py_GetProgramName' mangled-name='Py_GetProgramName' filepath='Python/pathconfig.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramName'>
+      <return type-id='type-id-325'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='./Python/sysmodule.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PySys_FormatStderr' mangled-name='PySys_FormatStderr' filepath='./Python/sysmodule.c' line='3345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStderr'>
-      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_GetPythonHome' mangled-name='Py_GetPythonHome' filepath='Python/pathconfig.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPythonHome'>
+      <return type-id='type-id-325'/>
     </function-decl>
-    <function-decl name='PySys_FormatStdout' mangled-name='PySys_FormatStdout' filepath='./Python/sysmodule.c' line='3335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStdout'>
-      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_GetProgramFullPath' mangled-name='Py_GetProgramFullPath' filepath='Python/pathconfig.c' line='590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetProgramFullPath'>
+      <return type-id='type-id-325'/>
     </function-decl>
-    <function-decl name='PySys_WriteStderr' mangled-name='PySys_WriteStderr' filepath='./Python/sysmodule.c' line='3302' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStderr'>
-      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_GetExecPrefix' mangled-name='Py_GetExecPrefix' filepath='Python/pathconfig.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetExecPrefix'>
+      <return type-id='type-id-325'/>
     </function-decl>
-    <function-decl name='PySys_WriteStdout' mangled-name='PySys_WriteStdout' filepath='./Python/sysmodule.c' line='3292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStdout'>
-      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_GetPrefix' mangled-name='Py_GetPrefix' filepath='Python/pathconfig.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPrefix'>
+      <return type-id='type-id-325'/>
     </function-decl>
-    <function-decl name='PySys_SetArgv' mangled-name='PySys_SetArgv' filepath='./Python/sysmodule.c' line='3199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgv'>
-      <parameter type-id='type-id-8' name='argc' filepath='./Python/sysmodule.c' line='3199' column='1'/>
-      <parameter type-id='type-id-329' name='argv' filepath='./Python/sysmodule.c' line='3199' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_GetPath' mangled-name='Py_GetPath' filepath='Python/pathconfig.c' line='569' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_GetPath'>
+      <return type-id='type-id-325'/>
     </function-decl>
-    <function-decl name='PySys_SetArgvEx' mangled-name='PySys_SetArgvEx' filepath='./Python/sysmodule.c' line='3155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgvEx'>
-      <parameter type-id='type-id-8' name='argc' filepath='./Python/sysmodule.c' line='3155' column='1'/>
-      <parameter type-id='type-id-329' name='argv' filepath='./Python/sysmodule.c' line='3155' column='1'/>
-      <parameter type-id='type-id-8' name='updatepath' filepath='./Python/sysmodule.c' line='3155' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_SetProgramFullPath' mangled-name='_Py_SetProgramFullPath' filepath='Python/pathconfig.c' line='548' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetProgramFullPath'>
+      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_SetPath' mangled-name='PySys_SetPath' filepath='./Python/sysmodule.c' line='3123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetPath'>
-      <parameter type-id='type-id-478' name='path' filepath='./Python/sysmodule.c' line='3123' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_SetProgramName' mangled-name='Py_SetProgramName' filepath='Python/pathconfig.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetProgramName'>
+      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_GetXOptions' mangled-name='PySys_GetXOptions' filepath='./Python/sysmodule.c' line='2389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetXOptions'>
-      <return type-id='type-id-15'/>
+    <function-decl name='Py_SetPythonHome' mangled-name='Py_SetPythonHome' filepath='Python/pathconfig.c' line='507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPythonHome'>
+      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_AddXOption' mangled-name='PySys_AddXOption' filepath='./Python/sysmodule.c' line='2375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddXOption'>
-      <parameter type-id='type-id-478' name='s' filepath='./Python/sysmodule.c' line='2375' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='Py_SetPath' mangled-name='Py_SetPath' filepath='Python/pathconfig.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_SetPath'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/pathconfig.c' line='477' column='1'/>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_HasWarnOptions' mangled-name='PySys_HasWarnOptions' filepath='./Python/sysmodule.c' line='2301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_HasWarnOptions'>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_DecodeUTF8_surrogateescape' mangled-name='_Py_DecodeUTF8_surrogateescape' filepath='./Include/internal/pycore_fileutils.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_AddWarnOption' mangled-name='PySys_AddWarnOption' filepath='./Python/sysmodule.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOption'>
-      <parameter type-id='type-id-478' name='program_full_path' filepath='Python/pathconfig.c' line='548' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='__wcsncpy_alias' mangled-name='wcsncpy' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_AddWarnOptionUnicode' mangled-name='PySys_AddWarnOptionUnicode' filepath='./Python/sysmodule.c' line='2273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOptionUnicode'>
-      <parameter type-id='type-id-15' name='m' filepath='Objects/moduleobject.c' line='565' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='wcsrchr' mangled-name='wcsrchr' filepath='/usr/include/wchar.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_ResetWarnOptions' mangled-name='PySys_ResetWarnOptions' filepath='./Python/sysmodule.c' line='2245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_ResetWarnOptions'>
-      <return type-id='type-id-69'/>
+    <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='./Include/cpython/fileutils.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PySys_GetSizeOf' mangled-name='_PySys_GetSizeOf' filepath='./Python/sysmodule.c' line='1656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetSizeOf'>
-      <parameter type-id='type-id-15' name='vv' filepath='Objects/longobject.c' line='583' column='1'/>
-      <return type-id='type-id-157'/>
+    <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='./Include/cpython/fileutils.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_AddAuditHook' mangled-name='PySys_AddAuditHook' filepath='./Python/sysmodule.c' line='382' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddAuditHook'>
-      <parameter type-id='type-id-306' name='hook' filepath='./Python/sysmodule.c' line='382' column='1'/>
-      <parameter type-id='type-id-20' name='userData' filepath='./Python/sysmodule.c' line='382' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='./Include/cpython/fileutils.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_Audit' mangled-name='PySys_Audit' filepath='./Python/sysmodule.c' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_Audit'>
-      <parameter type-id='type-id-3' name='event' filepath='./Python/sysmodule.c' line='328' column='1'/>
-      <parameter type-id='type-id-3' name='argFormat' filepath='./Python/sysmodule.c' line='328' column='1'/>
-      <parameter is-variadic='yes'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyPathConfig_Calculate' mangled-name='_PyPathConfig_Calculate' filepath='./Include/internal/pycore_pathconfig.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyWideStringList_Append' mangled-name='PyWideStringList_Append' filepath='./Include/cpython/initconfig.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWideStringList_Clear' mangled-name='_PyWideStringList_Clear' filepath='./Include/internal/pycore_initconfig.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/preconfig.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='Py_FileSystemDefaultEncoding' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncoding' visibility='default' filepath='./Include/fileobject.h' line='22' column='1' elf-symbol-id='Py_FileSystemDefaultEncoding'/>
+    <var-decl name='Py_HasFileSystemDefaultEncoding' type-id='type-id-9' mangled-name='Py_HasFileSystemDefaultEncoding' visibility='default' filepath='./Include/fileobject.h' line='26' column='1' elf-symbol-id='Py_HasFileSystemDefaultEncoding'/>
+    <var-decl name='Py_FileSystemDefaultEncodeErrors' type-id='type-id-3' mangled-name='Py_FileSystemDefaultEncodeErrors' visibility='default' filepath='./Include/fileobject.h' line='24' column='1' elf-symbol-id='Py_FileSystemDefaultEncodeErrors'/>
+    <function-decl name='_Py_get_xoption' mangled-name='_Py_get_xoption' filepath='Python/preconfig.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_xoption'>
+      <parameter type-id='type-id-754' name='xoptions' filepath='Python/preconfig.c' line='583' column='1'/>
+      <parameter type-id='type-id-478' name='name' filepath='Python/preconfig.c' line='583' column='1'/>
+      <return type-id='type-id-478'/>
+    </function-decl>
+    <function-decl name='_Py_get_env_flag' mangled-name='_Py_get_env_flag' filepath='Python/preconfig.c' line='565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_env_flag'>
+      <parameter type-id='type-id-9' name='use_environment' filepath='Python/preconfig.c' line='565' column='1'/>
+      <parameter type-id='type-id-452' name='flag' filepath='Python/preconfig.c' line='565' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/preconfig.c' line='565' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_str_to_int' mangled-name='_Py_str_to_int' filepath='Python/preconfig.c' line='547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_str_to_int'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/preconfig.c' line='547' column='1'/>
+      <parameter type-id='type-id-452' name='result' filepath='Python/preconfig.c' line='547' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_GetEnv' mangled-name='_Py_GetEnv' filepath='Python/preconfig.c' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetEnv'>
+      <parameter type-id='type-id-9' name='use_environment' filepath='Python/preconfig.c' line='528' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/preconfig.c' line='528' column='1'/>
+      <return type-id='type-id-3'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-257' size-in-bits='64' id='type-id-757'/>
+    <function-decl name='PyPreConfig_InitIsolatedConfig' mangled-name='PyPreConfig_InitIsolatedConfig' filepath='Python/preconfig.c' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitIsolatedConfig'>
+      <parameter type-id='type-id-757' name='config' filepath='Python/preconfig.c' line='340' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyPreConfig_InitPythonConfig' mangled-name='PyPreConfig_InitPythonConfig' filepath='Python/preconfig.c' line='319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyPreConfig_InitPythonConfig'>
+      <parameter type-id='type-id-757' name='config' filepath='Python/preconfig.c' line='340' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPreConfig_InitCompatConfig' mangled-name='_PyPreConfig_InitCompatConfig' filepath='Python/preconfig.c' line='281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyPreConfig_InitCompatConfig'>
+      <parameter type-id='type-id-757' name='config' filepath='Python/preconfig.c' line='281' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <class-decl name='_PyArgv' size-in-bits='256' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='66' column='1' id='type-id-758'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='argc' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='67' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='use_bytes_argv' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='68' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='bytes_argv' type-id='type-id-192' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='69' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='wchar_argv' type-id='type-id-749' visibility='default' filepath='./Include/internal/pycore_initconfig.h' line='70' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='_PyArgv' type-id='type-id-758' filepath='./Include/internal/pycore_initconfig.h' line='71' column='1' id='type-id-759'/>
+    <qualified-type-def type-id='type-id-759' const='yes' id='type-id-760'/>
+    <pointer-type-def type-id='type-id-760' size-in-bits='64' id='type-id-761'/>
+    <function-decl name='_PyArgv_AsWstrList' mangled-name='_PyArgv_AsWstrList' filepath='Python/preconfig.c' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArgv_AsWstrList'>
+      <parameter type-id='type-id-761' name='args' filepath='Python/preconfig.c' line='75' column='1'/>
+      <parameter type-id='type-id-747' name='list' filepath='Python/preconfig.c' line='75' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='./Include/cpython/pylifecycle.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyMem_SetupAllocators' mangled-name='_PyMem_SetupAllocators' filepath='./Include/internal/pycore_pymem.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_CoerceLegacyLocale' mangled-name='_Py_CoerceLegacyLocale' filepath='./Include/cpython/pylifecycle.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='./Include/cpython/pylifecycle.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyMem_GetAllocatorName' mangled-name='_PyMem_GetAllocatorName' filepath='./Include/internal/pycore_pymem.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcsncmp' mangled-name='wcsncmp' filepath='/usr/include/wchar.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWideStringList_Extend' mangled-name='_PyWideStringList_Extend' filepath='./Include/internal/pycore_initconfig.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWideStringList_Copy' mangled-name='_PyWideStringList_Copy' filepath='./Include/internal/pycore_initconfig.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pyarena.c' comp-dir-path='/src' language='LANG_C99'>
+    <class-decl name='_arena' size-in-bits='192' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='46' column='1' id='type-id-697'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='a_head' type-id='type-id-762' visibility='default' filepath='Python/pyarena.c' line='51' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='a_cur' type-id='type-id-762' visibility='default' filepath='Python/pyarena.c' line='58' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='a_objects' type-id='type-id-16' visibility='default' filepath='Python/pyarena.c' line='64' column='1'/>
+      </data-member>
+    </class-decl>
+    <class-decl name='_block' size-in-bits='256' is-struct='yes' visibility='default' filepath='Python/pyarena.c' line='17' column='1' id='type-id-763'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='ab_size' type-id='type-id-157' visibility='default' filepath='Python/pyarena.c' line='22' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='ab_offset' type-id='type-id-157' visibility='default' filepath='Python/pyarena.c' line='27' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='ab_next' type-id='type-id-764' visibility='default' filepath='Python/pyarena.c' line='33' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='ab_mem' type-id='type-id-21' visibility='default' filepath='Python/pyarena.c' line='38' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-763' size-in-bits='64' id='type-id-764'/>
+    <typedef-decl name='block' type-id='type-id-763' filepath='Python/pyarena.c' line='39' column='1' id='type-id-765'/>
+    <pointer-type-def type-id='type-id-765' size-in-bits='64' id='type-id-762'/>
+    <function-decl name='_PyArena_AddPyObject' mangled-name='_PyArena_AddPyObject' filepath='Python/pyarena.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_AddPyObject'>
+      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='204' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pyarena.c' line='204' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyArena_Malloc' mangled-name='_PyArena_Malloc' filepath='Python/pyarena.c' line='181' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_Malloc'>
+      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='181' column='1'/>
+      <parameter type-id='type-id-157' name='size' filepath='Python/pyarena.c' line='181' column='1'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='_PyArena_Free' mangled-name='_PyArena_Free' filepath='Python/pyarena.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_Free'>
+      <parameter type-id='type-id-699' name='arena' filepath='Python/pyarena.c' line='158' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArena_New' mangled-name='_PyArena_New' filepath='Python/pyarena.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyArena_New'>
+      <return type-id='type-id-699'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pyctype.c' comp-dir-path='/src' language='LANG_C99'>
+    <qualified-type-def type-id='type-id-66' const='yes' id='type-id-766'/>
+
+    <array-type-def dimensions='1' type-id='type-id-766' size-in-bits='8192' id='type-id-767'>
+      <subrange length='256' type-id='type-id-19' id='type-id-362'/>
+
+    </array-type-def>
+    <qualified-type-def type-id='type-id-767' const='yes' id='type-id-768'/>
+    <var-decl name='_Py_ctype_table' type-id='type-id-768' mangled-name='_Py_ctype_table' visibility='default' filepath='./Include/cpython/pyctype.h' line='16' column='1' elf-symbol-id='_Py_ctype_table'/>
+
+    <array-type-def dimensions='1' type-id='type-id-439' size-in-bits='2048' id='type-id-769'>
+      <subrange length='256' type-id='type-id-19' id='type-id-362'/>
+
+    </array-type-def>
+    <qualified-type-def type-id='type-id-769' const='yes' id='type-id-770'/>
+    <var-decl name='_Py_ctype_tolower' type-id='type-id-770' mangled-name='_Py_ctype_tolower' visibility='default' filepath='./Include/cpython/pyctype.h' line='29' column='1' elf-symbol-id='_Py_ctype_tolower'/>
+    <var-decl name='_Py_ctype_toupper' type-id='type-id-770' mangled-name='_Py_ctype_toupper' visibility='default' filepath='./Include/cpython/pyctype.h' line='30' column='1' elf-symbol-id='_Py_ctype_toupper'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pyhash.c' comp-dir-path='/src' language='LANG_C99'>
+    <union-decl name='__anonymous_union__' size-in-bits='192' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='55' column='1' id='type-id-771'>
+      <data-member access='private'>
+        <var-decl name='uc' type-id='type-id-772' visibility='default' filepath='./Include/pyhash.h' line='57' column='1'/>
+      </data-member>
+      <data-member access='private'>
+        <var-decl name='fnv' type-id='type-id-773' visibility='default' filepath='./Include/pyhash.h' line='62' column='1'/>
+      </data-member>
+      <data-member access='private'>
+        <var-decl name='siphash' type-id='type-id-774' visibility='default' filepath='./Include/pyhash.h' line='67' column='1'/>
+      </data-member>
+      <data-member access='private'>
+        <var-decl name='djbx33a' type-id='type-id-775' visibility='default' filepath='./Include/pyhash.h' line='72' column='1'/>
+      </data-member>
+      <data-member access='private'>
+        <var-decl name='expat' type-id='type-id-776' visibility='default' filepath='./Include/pyhash.h' line='76' column='1'/>
+      </data-member>
+    </union-decl>
+
+    <array-type-def dimensions='1' type-id='type-id-341' size-in-bits='192' id='type-id-772'>
+      <subrange length='24' type-id='type-id-19' id='type-id-777'/>
+
+    </array-type-def>
+    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='59' column='1' id='type-id-773'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='prefix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='60' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='suffix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='61' column='1'/>
+      </data-member>
+    </class-decl>
+    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='64' column='1' id='type-id-774'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='k0' type-id='type-id-22' visibility='default' filepath='./Include/pyhash.h' line='65' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='k1' type-id='type-id-22' visibility='default' filepath='./Include/pyhash.h' line='66' column='1'/>
+      </data-member>
+    </class-decl>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='69' column='1' id='type-id-775'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='padding' type-id='type-id-778' visibility='default' filepath='./Include/pyhash.h' line='70' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='suffix' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='71' column='1'/>
+      </data-member>
+    </class-decl>
+
+    <array-type-def dimensions='1' type-id='type-id-341' size-in-bits='128' id='type-id-778'>
+      <subrange length='16' type-id='type-id-19' id='type-id-779'/>
+
+    </array-type-def>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' visibility='default' filepath='./Include/pyhash.h' line='73' column='1' id='type-id-776'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='padding' type-id='type-id-778' visibility='default' filepath='./Include/pyhash.h' line='74' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='hashsalt' type-id='type-id-117' visibility='default' filepath='./Include/pyhash.h' line='75' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='_Py_HashSecret_t' type-id='type-id-771' filepath='./Include/pyhash.h' line='77' column='1' id='type-id-780'/>
+    <var-decl name='_Py_HashSecret' type-id='type-id-780' mangled-name='_Py_HashSecret' visibility='default' filepath='./Include/pyhash.h' line='78' column='1' elf-symbol-id='_Py_HashSecret'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-781' visibility='default' filepath='./Include/pyhash.h' line='86' column='1' id='type-id-782'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='hash' type-id='type-id-783' visibility='default' filepath='./Include/pyhash.h' line='87' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/pyhash.h' line='88' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='hash_bits' type-id='type-id-784' visibility='default' filepath='./Include/pyhash.h' line='89' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='160'>
+        <var-decl name='seed_bits' type-id='type-id-784' visibility='default' filepath='./Include/pyhash.h' line='90' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-785' size-in-bits='64' id='type-id-786'/>
+    <qualified-type-def type-id='type-id-786' const='yes' id='type-id-783'/>
+    <qualified-type-def type-id='type-id-9' const='yes' id='type-id-784'/>
+    <typedef-decl name='PyHash_FuncDef' type-id='type-id-782' filepath='./Include/pyhash.h' line='91' column='1' id='type-id-781'/>
+    <pointer-type-def type-id='type-id-781' size-in-bits='64' id='type-id-787'/>
+    <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='Python/pyhash.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyHash_GetFuncDef'>
+      <return type-id='type-id-787'/>
+    </function-decl>
+    <function-decl name='_Py_HashBytes' mangled-name='_Py_HashBytes' filepath='Python/pyhash.c' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashBytes'>
+      <parameter type-id='type-id-21' name='src' filepath='Python/pyhash.c' line='158' column='1'/>
+      <parameter type-id='type-id-31' name='len' filepath='Python/pyhash.c' line='158' column='1'/>
+      <return type-id='type-id-117'/>
+    </function-decl>
+    <function-decl name='_Py_HashPointer' mangled-name='_Py_HashPointer' filepath='Python/pyhash.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointer'>
+      <parameter type-id='type-id-21' name='p' filepath='Python/pyhash.c' line='148' column='1'/>
+      <return type-id='type-id-117'/>
+    </function-decl>
+    <function-decl name='_Py_HashPointerRaw' mangled-name='_Py_HashPointerRaw' filepath='Python/pyhash.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashPointerRaw'>
+      <parameter type-id='type-id-21' name='p' filepath='Python/pyhash.c' line='138' column='1'/>
+      <return type-id='type-id-117'/>
+    </function-decl>
+    <function-decl name='_Py_HashDouble' mangled-name='_Py_HashDouble' filepath='Python/pyhash.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HashDouble'>
+      <parameter type-id='type-id-16' name='inst' filepath='Python/pyhash.c' line='92' column='1'/>
+      <parameter type-id='type-id-371' name='v' filepath='Python/pyhash.c' line='92' column='1'/>
+      <return type-id='type-id-117'/>
+    </function-decl>
+    <function-type size-in-bits='64' id='type-id-785'>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-31'/>
+      <return type-id='type-id-117'/>
+    </function-type>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pylifecycle.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='_Py_UnhandledKeyboardInterrupt' type-id='type-id-9' mangled-name='_Py_UnhandledKeyboardInterrupt' visibility='default' filepath='./Include/internal/pycore_pylifecycle.h' line='35' column='1' elf-symbol-id='_Py_UnhandledKeyboardInterrupt'/>
+    <typedef-decl name='_PyRuntimeState' type-id='type-id-530' filepath='./Include/internal/pycore_runtime.h' line='121' column='1' id='type-id-788'/>
+    <var-decl name='_PyRuntime' type-id='type-id-788' mangled-name='_PyRuntime' visibility='default' filepath='./Include/internal/pycore_runtime.h' line='128' column='1' elf-symbol-id='_PyRuntime'/>
+    <pointer-type-def type-id='type-id-789' size-in-bits='64' id='type-id-790'/>
+    <typedef-decl name='PyOS_sighandler_t' type-id='type-id-790' filepath='./Include/pylifecycle.h' line='61' column='1' id='type-id-791'/>
+    <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='Python/pylifecycle.c' line='2942' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_setsig'>
+      <parameter type-id='type-id-9' name='sig' filepath='Python/pylifecycle.c' line='2942' column='1'/>
+      <parameter type-id='type-id-791' name='handler' filepath='Python/pylifecycle.c' line='2942' column='1'/>
+      <return type-id='type-id-791'/>
+    </function-decl>
+    <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='Python/pylifecycle.c' line='2903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_getsig'>
+      <parameter type-id='type-id-9' name='sig' filepath='Python/pylifecycle.c' line='2903' column='1'/>
+      <return type-id='type-id-791'/>
+    </function-decl>
+    <function-decl name='_Py_FdIsInteractive' mangled-name='_Py_FdIsInteractive' filepath='Python/pylifecycle.c' line='2886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FdIsInteractive'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2886' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pylifecycle.c' line='2886' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_FdIsInteractive' mangled-name='Py_FdIsInteractive' filepath='Python/pylifecycle.c' line='2873' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FdIsInteractive'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pylifecycle.c' line='2873' column='1'/>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/pylifecycle.c' line='2873' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_Exit' mangled-name='Py_Exit' filepath='Python/pylifecycle.c' line='2856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Exit'>
+      <parameter type-id='type-id-9' name='sts' filepath='Python/pylifecycle.c' line='2856' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_AtExit' mangled-name='Py_AtExit' filepath='Python/pylifecycle.c' line='2831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_AtExit'>
+      <parameter type-id='type-id-275' name='func' filepath='Python/pylifecycle.c' line='2831' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_ExitStatusException' mangled-name='Py_ExitStatusException' filepath='Python/pylifecycle.c' line='2789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_ExitStatusException'>
+      <parameter type-id='type-id-743' name='status' filepath='Python/pylifecycle.c' line='2789' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FatalErrorFunc' mangled-name='_Py_FatalErrorFunc' filepath='Python/pylifecycle.c' line='2748' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_FatalErrorFunc'>
+      <parameter type-id='type-id-3' name='func' filepath='Python/pylifecycle.c' line='2748' column='1'/>
+      <parameter type-id='type-id-3' name='msg' filepath='Python/pylifecycle.c' line='2748' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_FatalError' mangled-name='Py_FatalError' filepath='Python/pylifecycle.c' line='2741' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FatalError'>
+      <parameter type-id='type-id-3' name='msg' filepath='Python/pylifecycle.c' line='2741' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpExtensionModules' mangled-name='_Py_DumpExtensionModules' filepath='Python/pylifecycle.c' line='2568' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DumpExtensionModules'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/pylifecycle.c' line='2568' column='1'/>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pylifecycle.c' line='2568' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_EndInterpreter' mangled-name='Py_EndInterpreter' filepath='Python/pylifecycle.c' line='2004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EndInterpreter'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pylifecycle.c' line='2004' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_NewInterpreter' mangled-name='Py_NewInterpreter' filepath='Python/pylifecycle.c' line='1986' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_NewInterpreter'>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='_Py_NewInterpreter' mangled-name='_Py_NewInterpreter' filepath='Python/pylifecycle.c' line='1974' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_NewInterpreter'>
+      <parameter type-id='type-id-9' name='isolated_subinterpreter' filepath='Python/pylifecycle.c' line='1974' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='Py_Finalize' mangled-name='Py_Finalize' filepath='Python/pylifecycle.c' line='1868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Finalize'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_InitializeMain' mangled-name='_Py_InitializeMain' filepath='Python/pylifecycle.c' line='1271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_InitializeMain'>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='Py_Initialize' mangled-name='Py_Initialize' filepath='Python/pylifecycle.c' line='1264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Initialize'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_InitializeEx' mangled-name='Py_InitializeEx' filepath='Python/pylifecycle.c' line='1237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeEx'>
+      <parameter type-id='type-id-9' name='install_sigs' filepath='Python/pylifecycle.c' line='1237' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-257' const='yes' id='type-id-792'/>
+    <pointer-type-def type-id='type-id-792' size-in-bits='64' id='type-id-793'/>
+    <function-decl name='Py_PreInitialize' mangled-name='Py_PreInitialize' filepath='Python/pylifecycle.c' line='941' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitialize'>
+      <parameter type-id='type-id-793' name='src_config' filepath='Python/pylifecycle.c' line='941' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='Py_PreInitializeFromArgs' mangled-name='Py_PreInitializeFromArgs' filepath='Python/pylifecycle.c' line='933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromArgs'>
+      <parameter type-id='type-id-793' name='src_config' filepath='Python/pylifecycle.c' line='933' column='1'/>
+      <parameter type-id='type-id-31' name='argc' filepath='Python/pylifecycle.c' line='933' column='1'/>
+      <parameter type-id='type-id-329' name='argv' filepath='Python/pylifecycle.c' line='933' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='Py_PreInitializeFromBytesArgs' mangled-name='Py_PreInitializeFromBytesArgs' filepath='Python/pylifecycle.c' line='925' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_PreInitializeFromBytesArgs'>
+      <parameter type-id='type-id-793' name='src_config' filepath='Python/pylifecycle.c' line='925' column='1'/>
+      <parameter type-id='type-id-31' name='argc' filepath='Python/pylifecycle.c' line='925' column='1'/>
+      <parameter type-id='type-id-215' name='argv' filepath='Python/pylifecycle.c' line='925' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_SetConfig' mangled-name='_PyInterpreterState_SetConfig' filepath='Python/pylifecycle.c' line='473' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_SetConfig'>
+      <parameter type-id='type-id-751' name='src_config' filepath='Python/pylifecycle.c' line='473' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_SetLocaleFromEnv' mangled-name='_Py_SetLocaleFromEnv' filepath='Python/pylifecycle.c' line='385' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SetLocaleFromEnv'>
+      <parameter type-id='type-id-9' name='category' filepath='Python/pylifecycle.c' line='385' column='1'/>
+      <return type-id='type-id-72'/>
+    </function-decl>
+    <function-decl name='_Py_CoerceLegacyLocale' mangled-name='_Py_CoerceLegacyLocale' filepath='Python/pylifecycle.c' line='335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_CoerceLegacyLocale'>
+      <parameter type-id='type-id-9' name='warn' filepath='Python/pylifecycle.c' line='335' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_IsLocaleCoercionTarget' mangled-name='_Py_IsLocaleCoercionTarget' filepath='Python/pylifecycle.c' line='293' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsLocaleCoercionTarget'>
+      <parameter type-id='type-id-3' name='ctype_loc' filepath='Python/pylifecycle.c' line='293' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_LegacyLocaleDetected' mangled-name='_Py_LegacyLocaleDetected' filepath='Python/pylifecycle.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_LegacyLocaleDetected'>
+      <parameter type-id='type-id-9' name='warn' filepath='Python/pylifecycle.c' line='238' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_IsInitialized' mangled-name='Py_IsInitialized' filepath='Python/pylifecycle.c' line='138' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_IsInitialized'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_IsCoreInitialized' mangled-name='_Py_IsCoreInitialized' filepath='Python/pylifecycle.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsCoreInitialized'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_IsFinalizing' mangled-name='_Py_IsFinalizing' filepath='Python/pylifecycle.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_IsFinalizing'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyRuntime_Finalize' mangled-name='_PyRuntime_Finalize' filepath='Python/pylifecycle.c' line='109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Finalize'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRuntime_Initialize' mangled-name='_PyRuntime_Initialize' filepath='Python/pylifecycle.c' line='92' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntime_Initialize'>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='Python/pylifecycle.c' line='878' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromPyArgv'>
+      <parameter type-id='type-id-793' name='src_config' filepath='Python/pylifecycle.c' line='878' column='1'/>
+      <parameter type-id='type-id-761' name='args' filepath='Python/pylifecycle.c' line='878' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='_Py_PreInitializeFromConfig' mangled-name='_Py_PreInitializeFromConfig' filepath='Python/pylifecycle.c' line='948' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_PreInitializeFromConfig'>
+      <parameter type-id='type-id-751' name='config' filepath='Python/pylifecycle.c' line='948' column='1'/>
+      <parameter type-id='type-id-761' name='args' filepath='Python/pylifecycle.c' line='949' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='Py_InitializeFromConfig' mangled-name='Py_InitializeFromConfig' filepath='Python/pylifecycle.c' line='1204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_InitializeFromConfig'>
+      <parameter type-id='type-id-751' name='config' filepath='Python/pylifecycle.c' line='1204' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='Py_FinalizeEx' mangled-name='Py_FinalizeEx' filepath='Python/pylifecycle.c' line='1703' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_FinalizeEx'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='sigemptyset' mangled-name='sigemptyset' filepath='/usr/include/signal.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigaction' mangled-name='sigaction' filepath='/usr/include/signal.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='exit' mangled-name='exit' filepath='/usr/include/stdlib.h' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__vfprintf_chk' mangled-name='__vfprintf_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdio2.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='abort' mangled-name='abort' filepath='/usr/include/stdlib.h' line='591' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='./Include/cpython/fileutils.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpHexadecimal' mangled-name='_Py_DumpHexadecimal' filepath='./Include/internal/pycore_traceback.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='./Include/pythonrun.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpTracebackThreads' mangled-name='_Py_DumpTracebackThreads' filepath='./Include/internal/pycore_traceback.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFaulthandler_Fini' mangled-name='_PyFaulthandler_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyModule_IsExtension' mangled-name='_PyModule_IsExtension' filepath='./Include/moduleobject.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpASCII' mangled-name='_Py_DumpASCII' filepath='./Include/internal/pycore_traceback.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpDecimal' mangled-name='_Py_DumpDecimal' filepath='./Include/internal/pycore_traceback.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='./Include/pystate.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGILState_Fini' mangled-name='_PyGILState_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAtExit_Call' mangled-name='_PyAtExit_Call' filepath='./Include/internal/pycore_pylifecycle.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_FiniGIL' mangled-name='_PyEval_FiniGIL' filepath='./Include/internal/pycore_ceval.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGILState_SetTstate' mangled-name='_PyGILState_SetTstate' filepath='./Include/internal/pycore_pylifecycle.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_InitGIL' mangled-name='_PyEval_InitGIL' filepath='./Include/internal/pycore_ceval.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Main' mangled-name='PyInterpreterState_Main' filepath='./Include/cpython/pystate.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_New' mangled-name='PyInterpreterState_New' filepath='./Include/pystate.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='./Include/pystate.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='./Include/pystate.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyConfig_Copy' mangled-name='_PyConfig_Copy' filepath='./Include/internal/pycore_initconfig.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='./Include/pythonrun.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Clear' mangled-name='PyThreadState_Clear' filepath='./Include/pystate.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Delete' mangled-name='PyThreadState_Delete' filepath='./Include/pystate.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyExc_Fini' mangled-name='_PyExc_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFrame_Fini' mangled-name='_PyFrame_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAsyncGen_Fini' mangled-name='_PyAsyncGen_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyContext_Fini' mangled-name='_PyContext_Fini' filepath='./Include/internal/pycore_context.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_Fini' mangled-name='_PyType_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ClearInterned' mangled-name='_PyUnicode_ClearInterned' filepath='./Include/internal/pycore_pylifecycle.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_Fini' mangled-name='_PyDict_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyList_Fini' mangled-name='_PyList_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_Fini' mangled-name='_PyTuple_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySlice_Fini' mangled-name='_PySlice_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_Fini' mangled-name='_PyBytes_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_Fini' mangled-name='_PyUnicode_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_Fini' mangled-name='_PyFloat_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Fini' mangled-name='_PyLong_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_Clear' mangled-name='_PyInterpreterState_Clear' filepath='./Include/internal/pycore_interp.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_ClearAuditHooks' mangled-name='_PySys_ClearAuditHooks' filepath='./Include/internal/pycore_sysmodule.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_HashRandomization_Fini' mangled-name='_Py_HashRandomization_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_Fini' mangled-name='_PyArg_Fini' filepath='./Include/modsupport.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_ClearFileSystemEncoding' mangled-name='_Py_ClearFileSystemEncoding' filepath='./Include/internal/pycore_pylifecycle.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyModule_ClearDict' mangled-name='_PyModule_ClearDict' filepath='./Include/moduleobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyModule_Clear' mangled-name='_PyModule_Clear' filepath='./Include/moduleobject.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_ClearModules' mangled-name='_PyInterpreterState_ClearModules' filepath='./Include/internal/pycore_interp.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGC_CollectNoFail' mangled-name='_PyGC_CollectNoFail' filepath='./Include/internal/pycore_gc.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGC_DumpShutdownStats' mangled-name='_PyGC_DumpShutdownStats' filepath='./Include/internal/pycore_pylifecycle.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyConfig_Write' mangled-name='_PyConfig_Write' filepath='./Include/internal/pycore_initconfig.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyConfig_WritePathConfig' mangled-name='_PyConfig_WritePathConfig' filepath='./Include/internal/pycore_pathconfig.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_SetFromPyStatus' mangled-name='_PyErr_SetFromPyStatus' filepath='./Include/internal/pycore_initconfig.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_UpdateConfig' mangled-name='_PySys_UpdateConfig' filepath='./Include/internal/pycore_pylifecycle.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyConfig_InitCompatConfig' mangled-name='_PyConfig_InitCompatConfig' filepath='./Include/internal/pycore_initconfig.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImportZip_Init' mangled-name='_PyImportZip_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='./Include/sysmodule.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='./Include/cpython/sysmodule.h' line='6' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_AddModule' mangled-name='PyImport_AddModule' filepath='./Include/import.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_InitEncodings' mangled-name='_PyUnicode_InitEncodings' filepath='./Include/internal/pycore_pylifecycle.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_debug_deprecation' mangled-name='_PyThread_debug_deprecation' filepath='Python/pylifecycle.c' line='1060' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFaulthandler_Init' mangled-name='_PyFaulthandler_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySignal_Init' mangled-name='_PySignal_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTraceMalloc_Init' mangled-name='_PyTraceMalloc_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_Init' mangled-name='_PyLong_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_Init' mangled-name='_PyBytes_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_Init' mangled-name='_PyUnicode_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_Init' mangled-name='_PyTuple_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_Init' mangled-name='_PyFloat_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyExc_Init' mangled-name='_PyExc_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_InitTypes' mangled-name='_PyErr_InitTypes' filepath='./Include/internal/pycore_pylifecycle.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyContext_Init' mangled-name='_PyContext_Init' filepath='./Include/internal/pycore_context.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyStructSequence_Init' mangled-name='_PyStructSequence_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTypes_Init' mangled-name='_PyTypes_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_InitTypes' mangled-name='_PyLong_InitTypes' filepath='./Include/internal/pycore_pylifecycle.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_InitTypes' mangled-name='_PyUnicode_InitTypes' filepath='./Include/internal/pycore_pylifecycle.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_InitTypes' mangled-name='_PyFloat_InitTypes' filepath='./Include/internal/pycore_pylifecycle.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBuiltin_Init' mangled-name='_PyBuiltin_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_FixupBuiltin' mangled-name='_PyImport_FixupBuiltin' filepath='./Include/cpython/import.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBuiltins_AddExceptions' mangled-name='_PyBuiltins_AddExceptions' filepath='./Include/internal/pycore_pylifecycle.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_BootstrapImp' mangled-name='_PyImport_BootstrapImp' filepath='./Include/internal/pycore_import.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_SetModuleString' mangled-name='_PyImport_SetModuleString' filepath='./Include/cpython/import.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGC_Init' mangled-name='_PyGC_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWarnings_InitState' mangled-name='_PyWarnings_InitState' filepath='./Include/internal/pycore_warnings.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAtExit_Init' mangled-name='_PyAtExit_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_Create' mangled-name='_PySys_Create' filepath='./Include/internal/pycore_pylifecycle.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyConfig_Read' mangled-name='PyConfig_Read' filepath='./Include/cpython/initconfig.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_ResetForceASCII' mangled-name='_Py_ResetForceASCII' filepath='./Include/internal/pycore_fileutils.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResetForceASCII'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setenv' mangled-name='setenv' filepath='/usr/include/stdlib.h' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='nl_langinfo' mangled-name='nl_langinfo' filepath='/usr/include/langinfo.h' line='661' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='./Include/internal/pycore_runtime.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_GetModuleId' mangled-name='_PyImport_GetModuleId' filepath='./Include/cpython/import.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dup' mangled-name='dup' filepath='/usr/include/unistd.h' line='531' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='close' mangled-name='close' filepath='/usr/include/unistd.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='./Include/internal/pycore_runtime.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPreConfig_Read' mangled-name='_PyPreConfig_Read' filepath='./Include/internal/pycore_initconfig.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPreConfig_Write' mangled-name='_PyPreConfig_Write' filepath='./Include/internal/pycore_initconfig.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPreConfig_InitFromConfig' mangled-name='_PyPreConfig_InitFromConfig' filepath='./Include/internal/pycore_initconfig.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_HashRandomization_Init' mangled-name='_Py_HashRandomization_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='./Include/internal/pycore_pystate.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGILState_Init' mangled-name='_PyGILState_Init' filepath='./Include/internal/pycore_pylifecycle.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyConfig_Read' mangled-name='_PyConfig_Read' filepath='./Include/internal/pycore_initconfig.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FinishPendingCalls' mangled-name='_Py_FinishPendingCalls' filepath='./Include/internal/pycore_ceval.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySignal_Fini' mangled-name='_PySignal_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGC_Collect' mangled-name='PyGC_Collect' filepath='./Include/objimpl.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_Fini' mangled-name='_PyEval_Fini' filepath='./Include/internal/pycore_ceval.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTraceMalloc_Fini' mangled-name='_PyTraceMalloc_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyImport_Fini' mangled-name='_PyImport_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyHash_Fini' mangled-name='_PyHash_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_DebugMallocStats' mangled-name='_PyObject_DebugMallocStats' filepath='./Include/cpython/objimpl.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-type size-in-bits='64' id='type-id-789'>
+      <parameter type-id='type-id-9'/>
+      <return type-id='type-id-4'/>
+    </function-type>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pymath.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_set_387controlword' mangled-name='_Py_set_387controlword' filepath='Python/pymath.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_387controlword'>
+      <parameter type-id='type-id-173' name='cw' filepath='Python/pymath.c' line='29' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_get_387controlword' mangled-name='_Py_get_387controlword' filepath='Python/pymath.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_387controlword'>
+      <return type-id='type-id-173'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pystate.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_GetConfig' mangled-name='_Py_GetConfig' filepath='Python/pystate.c' line='1965' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetConfig'>
+      <return type-id='type-id-751'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_GetConfigCopy' mangled-name='_PyInterpreterState_GetConfigCopy' filepath='Python/pystate.c' line='1951' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetConfigCopy'>
+      <parameter type-id='type-id-746' name='config' filepath='Python/pystate.c' line='1951' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_GetConfig' mangled-name='_PyInterpreterState_GetConfig' filepath='Python/pystate.c' line='1944' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetConfig'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1944' column='1'/>
+      <return type-id='type-id-751'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_SetEvalFrameFunc' mangled-name='_PyInterpreterState_SetEvalFrameFunc' filepath='Python/pystate.c' line='1936' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_SetEvalFrameFunc'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1936' column='1'/>
+      <parameter type-id='type-id-232' name='eval_frame' filepath='Python/pystate.c' line='1937' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_GetEvalFrameFunc' mangled-name='_PyInterpreterState_GetEvalFrameFunc' filepath='Python/pystate.c' line='1929' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetEvalFrameFunc'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1929' column='1'/>
+      <return type-id='type-id-232'/>
+    </function-decl>
+    <function-decl name='_PyCrossInterpreterData_Lookup' mangled-name='_PyCrossInterpreterData_Lookup' filepath='Python/pystate.c' line='1779' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_Lookup'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pystate.c' line='1779' column='1'/>
+      <return type-id='type-id-267'/>
+    </function-decl>
+    <function-decl name='_PyCrossInterpreterData_RegisterClass' mangled-name='_PyCrossInterpreterData_RegisterClass' filepath='Python/pystate.c' line='1749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_RegisterClass'>
+      <parameter type-id='type-id-32' name='cls' filepath='Python/pystate.c' line='1749' column='1'/>
+      <parameter type-id='type-id-267' name='getdata' filepath='Python/pystate.c' line='1750' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <typedef-decl name='_PyCrossInterpreterData' type-id='type-id-268' filepath='./Include/cpython/pystate.h' line='294' column='1' id='type-id-794'/>
+    <pointer-type-def type-id='type-id-794' size-in-bits='64' id='type-id-795'/>
+    <function-decl name='_PyCrossInterpreterData_NewObject' mangled-name='_PyCrossInterpreterData_NewObject' filepath='Python/pystate.c' line='1719' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_NewObject'>
+      <parameter type-id='type-id-795' name='data' filepath='Python/pystate.c' line='1719' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyCrossInterpreterData_Release' mangled-name='_PyCrossInterpreterData_Release' filepath='Python/pystate.c' line='1696' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyCrossInterpreterData_Release'>
+      <parameter type-id='type-id-795' name='data' filepath='Python/pystate.c' line='1696' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GetCrossInterpreterData' mangled-name='_PyObject_GetCrossInterpreterData' filepath='Python/pystate.c' line='1627' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GetCrossInterpreterData'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pystate.c' line='1627' column='1'/>
+      <parameter type-id='type-id-795' name='data' filepath='Python/pystate.c' line='1627' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyObject_CheckCrossInterpreterData' mangled-name='_PyObject_CheckCrossInterpreterData' filepath='Python/pystate.c' line='1595' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_CheckCrossInterpreterData'>
+      <parameter type-id='type-id-16' name='o' filepath='Objects/abstract.c' line='830' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/pystate.h' line='95' column='1' id='type-id-796'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='PyGILState_LOCKED' value='0'/>
+      <enumerator name='PyGILState_UNLOCKED' value='1'/>
+    </enum-decl>
+    <typedef-decl name='PyGILState_STATE' type-id='type-id-796' filepath='./Include/pystate.h' line='96' column='1' id='type-id-797'/>
+    <function-decl name='PyGILState_Release' mangled-name='PyGILState_Release' filepath='Python/pystate.c' line='1530' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Release'>
+      <parameter type-id='type-id-797' name='oldstate' filepath='Python/pystate.c' line='1530' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGILState_Ensure' mangled-name='PyGILState_Ensure' filepath='Python/pystate.c' line='1480' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Ensure'>
+      <return type-id='type-id-797'/>
+    </function-decl>
+    <function-decl name='PyGILState_Check' mangled-name='PyGILState_Check' filepath='Python/pystate.c' line='1460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_Check'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyGILState_GetThisThreadState' mangled-name='PyGILState_GetThisThreadState' filepath='Python/pystate.c' line='1454' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGILState_GetThisThreadState'>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='Python/pystate.c' line='1367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyGILState_GetInterpreterStateUnsafe'>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='_PyThread_CurrentExceptions' mangled-name='_PyThread_CurrentExceptions' filepath='Python/pystate.c' line='1245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_CurrentExceptions'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyThread_CurrentFrames' mangled-name='_PyThread_CurrentFrames' filepath='Python/pystate.c' line='1195' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_CurrentFrames'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Next' mangled-name='PyThreadState_Next' filepath='Python/pystate.c' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Next'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='1185' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_ThreadHead' mangled-name='PyInterpreterState_ThreadHead' filepath='Python/pystate.c' line='1180' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_ThreadHead'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1180' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Next' mangled-name='PyInterpreterState_Next' filepath='Python/pystate.c' line='1175' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Next'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='1175' column='1'/>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Main' mangled-name='PyInterpreterState_Main' filepath='Python/pystate.c' line='1169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Main'>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Head' mangled-name='PyInterpreterState_Head' filepath='Python/pystate.c' line='1163' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Head'>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyThreadState_SetAsyncExc' mangled-name='PyThreadState_SetAsyncExc' filepath='Python/pystate.c' line='1121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_SetAsyncExc'>
+      <parameter type-id='type-id-19' name='id' filepath='Python/pystate.c' line='1121' column='1'/>
+      <parameter type-id='type-id-16' name='exc' filepath='Python/pystate.c' line='1121' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetID' mangled-name='PyThreadState_GetID' filepath='Python/pystate.c' line='1105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetID'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='1105' column='1'/>
+      <return type-id='type-id-22'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetFrame' mangled-name='PyThreadState_GetFrame' filepath='Python/pystate.c' line='1095' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetFrame'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='1095' column='1'/>
+      <return type-id='type-id-13'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetInterpreter' mangled-name='PyThreadState_GetInterpreter' filepath='Python/pystate.c' line='1087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetInterpreter'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='1087' column='1'/>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetDict' mangled-name='PyThreadState_GetDict' filepath='Python/pystate.c' line='1076' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_GetDict'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_GetDict' mangled-name='_PyThreadState_GetDict' filepath='Python/pystate.c' line='1062' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_GetDict'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='1062' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Swap' mangled-name='PyThreadState_Swap' filepath='Python/pystate.c' line='1050' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Swap'>
+      <parameter type-id='type-id-331' name='newts' filepath='Python/pystate.c' line='1050' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-256' size-in-bits='64' id='type-id-798'/>
+    <function-decl name='_PyThreadState_Swap' mangled-name='_PyThreadState_Swap' filepath='Python/pystate.c' line='1018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Swap'>
+      <parameter type-id='type-id-798' name='gilstate' filepath='Python/pystate.c' line='1018' column='1'/>
+      <parameter type-id='type-id-331' name='newts' filepath='Python/pystate.c' line='1018' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Get' mangled-name='PyThreadState_Get' filepath='Python/pystate.c' line='1009' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Get'>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_UncheckedGet' mangled-name='_PyThreadState_UncheckedGet' filepath='Python/pystate.c' line='1002' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_UncheckedGet'>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <typedef-decl name='_PyRuntimeState' type-id='type-id-250' filepath='./Include/internal/pycore_runtime.h' line='121' column='1' id='type-id-799'/>
+    <pointer-type-def type-id='type-id-799' size-in-bits='64' id='type-id-800'/>
+    <function-decl name='_PyThreadState_DeleteExcept' mangled-name='_PyThreadState_DeleteExcept' filepath='Python/pystate.c' line='959' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteExcept'>
+      <parameter type-id='type-id-800' name='runtime' filepath='Python/pystate.c' line='959' column='1'/>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='959' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_DeleteCurrent' mangled-name='PyThreadState_DeleteCurrent' filepath='Python/pystate.c' line='943' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_DeleteCurrent'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_DeleteCurrent' mangled-name='_PyThreadState_DeleteCurrent' filepath='Python/pystate.c' line='932' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_DeleteCurrent'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='932' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Delete' mangled-name='PyThreadState_Delete' filepath='Python/pystate.c' line='925' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Delete'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='925' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Clear' mangled-name='PyThreadState_Clear' filepath='Python/pystate.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_Clear'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='827' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyState_RemoveModule' mangled-name='PyState_RemoveModule' filepath='Python/pystate.c' line='770' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_RemoveModule'>
+      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='770' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyState_AddModule' mangled-name='PyState_AddModule' filepath='Python/pystate.c' line='749' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_AddModule'>
+      <parameter type-id='type-id-16' name='module' filepath='Python/pystate.c' line='749' column='1'/>
+      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='749' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='Python/pystate.c' line='697' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyState_FindModule'>
+      <parameter type-id='type-id-505' name='module' filepath='Python/pystate.c' line='697' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='Python/pystate.c' line='691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Init'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='925' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='Python/pystate.c' line='685' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThreadState_Prealloc'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='685' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='PyThreadState_New' mangled-name='PyThreadState_New' filepath='Python/pystate.c' line='679' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThreadState_New'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='685' column='1'/>
+      <return type-id='type-id-331'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_GetDict' mangled-name='PyInterpreterState_GetDict' filepath='Python/pystate.c' line='598' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetDict'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='598' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_GetMainModule' mangled-name='_PyInterpreterState_GetMainModule' filepath='Python/pystate.c' line='588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_GetMainModule'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='598' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_RequireIDRef' mangled-name='_PyInterpreterState_RequireIDRef' filepath='Python/pystate.c' line='582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_RequireIDRef'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='582' column='1'/>
+      <parameter type-id='type-id-9' name='required' filepath='Python/pystate.c' line='582' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_RequiresIDRef' mangled-name='_PyInterpreterState_RequiresIDRef' filepath='Python/pystate.c' line='576' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_RequiresIDRef'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/import.c' line='285' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDDecref' mangled-name='_PyInterpreterState_IDDecref' filepath='Python/pystate.c' line='554' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDDecref'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='554' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDIncref' mangled-name='_PyInterpreterState_IDIncref' filepath='Python/pystate.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDIncref'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='540' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_LookUpID' mangled-name='_PyInterpreterState_LookUpID' filepath='Python/pystate.c' line='505' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_LookUpID'>
+      <parameter type-id='type-id-227' name='requested_id' filepath='Python/pystate.c' line='505' column='1'/>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Delete' mangled-name='PyInterpreterState_Delete' filepath='Python/pystate.c' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Delete'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='375' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Clear' mangled-name='PyInterpreterState_Clear' filepath='Python/pystate.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Clear'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='344' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_New' mangled-name='PyInterpreterState_New' filepath='Python/pystate.c' line='204' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_New'>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_Enable' mangled-name='_PyInterpreterState_Enable' filepath='Python/pystate.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_Enable'>
+      <parameter type-id='type-id-800' name='runtime' filepath='Python/pystate.c' line='178' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='_PyRuntimeState_Fini' mangled-name='_PyRuntimeState_Fini' filepath='Python/pystate.c' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Fini'>
+      <parameter type-id='type-id-800' name='runtime' filepath='Python/pystate.c' line='116' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRuntimeState_Init' mangled-name='_PyRuntimeState_Init' filepath='Python/pystate.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRuntimeState_Init'>
+      <parameter type-id='type-id-800' name='runtime' filepath='Python/pystate.c' line='102' column='1'/>
+      <return type-id='type-id-743'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_Get' mangled-name='PyInterpreterState_Get' filepath='Python/pystate.c' line='464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_Get'>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_GetID' mangled-name='PyInterpreterState_GetID' filepath='Python/pystate.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInterpreterState_GetID'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='477' column='1'/>
+      <return type-id='type-id-227'/>
+    </function-decl>
+    <function-decl name='_PyInterpreterState_IDInitref' mangled-name='_PyInterpreterState_IDInitref' filepath='Python/pystate.c' line='523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyInterpreterState_IDInitref'>
+      <parameter type-id='type-id-222' name='interp' filepath='Python/pystate.c' line='523' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyState_AddModule' mangled-name='_PyState_AddModule' filepath='Python/pystate.c' line='716' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyState_AddModule'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pystate.c' line='716' column='1'/>
+      <parameter type-id='type-id-16' name='module' filepath='Python/pystate.c' line='716' column='1'/>
+      <parameter type-id='type-id-505' name='def' filepath='Python/pystate.c' line='716' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='./Include/pythread.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='./Include/pythread.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='./Include/pythread.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='./Include/pythread.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='./Include/pythread.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SignalAsyncExc' mangled-name='_PyEval_SignalAsyncExc' filepath='./Include/internal/pycore_ceval.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_ReleaseLock' mangled-name='_PyEval_ReleaseLock' filepath='./Include/internal/pycore_ceval.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyList_SetItem' mangled-name='PyList_SetItem' filepath='./Include/listobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMapping_GetItemString' mangled-name='PyMapping_GetItemString' filepath='./Include/abstract.h' line='848' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_EndInterpreter' mangled-name='Py_EndInterpreter' filepath='./Include/pylifecycle.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_FiniState' mangled-name='_PyEval_FiniState' filepath='./Include/internal/pycore_ceval.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAST_Fini' mangled-name='_PyAST_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWarnings_Fini' mangled-name='_PyWarnings_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAtExit_Fini' mangled-name='_PyAtExit_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGC_Fini' mangled-name='_PyGC_Fini' filepath='./Include/internal/pycore_pylifecycle.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_RawCalloc' mangled-name='PyMem_RawCalloc' filepath='./Include/cpython/pymem.h' line='6' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_InitState' mangled-name='_PyEval_InitState' filepath='./Include/internal/pycore_ceval.h' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGC_InitState' mangled-name='_PyGC_InitState' filepath='./Include/internal/pycore_gc.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_InitCache' mangled-name='_PyType_InitCache' filepath='./Include/internal/pycore_object.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_InitRuntimeState' mangled-name='_PyEval_InitRuntimeState' filepath='./Include/internal/pycore_ceval.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyPreConfig_InitPythonConfig' mangled-name='PyPreConfig_InitPythonConfig' filepath='./Include/cpython/initconfig.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pythonrun.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyRun_InteractiveLoop' mangled-name='PyRun_InteractiveLoop' filepath='Python/pythonrun.c' line='1582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoop'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_InteractiveOne' mangled-name='PyRun_InteractiveOne' filepath='Python/pythonrun.c' line='1575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOne'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_CompileStringFlags' mangled-name='Py_CompileStringFlags' filepath='Python/pythonrun.c' line='1567' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringFlags'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1567' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1567' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1567' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1568' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1560' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileString'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1560' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1560' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1560' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleString' mangled-name='PyRun_SimpleString' filepath='Python/pythonrun.c' line='1553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleString'>
+      <parameter type-id='type-id-3' name='s' filepath='Python/pythonrun.c' line='1553' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_String' mangled-name='PyRun_String' filepath='Python/pythonrun.c' line='1546' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_String'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1546' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1546' column='1'/>
+      <parameter type-id='type-id-16' name='g' filepath='Python/pythonrun.c' line='1546' column='1'/>
+      <parameter type-id='type-id-16' name='l' filepath='Python/pythonrun.c' line='1546' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleFileEx' mangled-name='PyRun_SimpleFileEx' filepath='Python/pythonrun.c' line='1538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileEx'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <parameter type-id='type-id-9' name='c' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleFile' mangled-name='PyRun_SimpleFile' filepath='Python/pythonrun.c' line='1531' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFile'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_FileFlags' mangled-name='PyRun_FileFlags' filepath='Python/pythonrun.c' line='1523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1523' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1523' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1523' column='1'/>
+      <parameter type-id='type-id-16' name='g' filepath='Python/pythonrun.c' line='1523' column='1'/>
+      <parameter type-id='type-id-16' name='l' filepath='Python/pythonrun.c' line='1523' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1524' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_FileEx' mangled-name='PyRun_FileEx' filepath='Python/pythonrun.c' line='1516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileEx'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <parameter type-id='type-id-16' name='g' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <parameter type-id='type-id-16' name='l' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <parameter type-id='type-id-9' name='c' filepath='Python/pythonrun.c' line='1516' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_File' mangled-name='PyRun_File' filepath='Python/pythonrun.c' line='1509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_File'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1509' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1509' column='1'/>
+      <parameter type-id='type-id-9' name='s' filepath='Python/pythonrun.c' line='1509' column='1'/>
+      <parameter type-id='type-id-16' name='g' filepath='Python/pythonrun.c' line='1509' column='1'/>
+      <parameter type-id='type-id-16' name='l' filepath='Python/pythonrun.c' line='1509' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_AnyFileFlags' mangled-name='PyRun_AnyFileFlags' filepath='Python/pythonrun.c' line='1502' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1502' column='1'/>
+      <parameter type-id='type-id-3' name='name' filepath='Python/pythonrun.c' line='1502' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1502' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_AnyFileEx' mangled-name='PyRun_AnyFileEx' filepath='Python/pythonrun.c' line='1495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileEx'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <parameter type-id='type-id-9' name='c' filepath='Python/pythonrun.c' line='1538' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_AnyFile' mangled-name='PyRun_AnyFile' filepath='Python/pythonrun.c' line='1488' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFile'>
+      <parameter type-id='type-id-188' name='f' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pythonrun.c' line='1582' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_SourceAsString' mangled-name='_Py_SourceAsString' filepath='Python/pythonrun.c' line='1399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_SourceAsString'>
+      <parameter type-id='type-id-16' name='cmd' filepath='Python/pythonrun.c' line='1399' column='1'/>
+      <parameter type-id='type-id-3' name='funcname' filepath='Python/pythonrun.c' line='1399' column='1'/>
+      <parameter type-id='type-id-3' name='what' filepath='Python/pythonrun.c' line='1399' column='1'/>
+      <parameter type-id='type-id-522' name='cf' filepath='Python/pythonrun.c' line='1399' column='1'/>
+      <parameter type-id='type-id-86' name='cmd_copy' filepath='Python/pythonrun.c' line='1399' column='1'/>
+      <return type-id='type-id-3'/>
+    </function-decl>
+    <function-decl name='Py_CompileStringExFlags' mangled-name='Py_CompileStringExFlags' filepath='Python/pythonrun.c' line='1386' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringExFlags'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1386' column='1'/>
+      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='1386' column='1'/>
+      <parameter type-id='type-id-9' name='start' filepath='Python/pythonrun.c' line='1386' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1387' column='1'/>
+      <parameter type-id='type-id-9' name='optimize' filepath='Python/pythonrun.c' line='1387' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='Python/pythonrun.c' line='1361' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_CompileStringObject'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1361' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pythonrun.c' line='1361' column='1'/>
+      <parameter type-id='type-id-9' name='start' filepath='Python/pythonrun.c' line='1361' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1362' column='1'/>
+      <parameter type-id='type-id-9' name='optimize' filepath='Python/pythonrun.c' line='1362' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_FileExFlags' mangled-name='PyRun_FileExFlags' filepath='Python/pythonrun.c' line='1220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_FileExFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='1220' column='1'/>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='1220' column='1'/>
+      <parameter type-id='type-id-9' name='start' filepath='Python/pythonrun.c' line='1220' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Python/pythonrun.c' line='1220' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Python/pythonrun.c' line='1221' column='1'/>
+      <parameter type-id='type-id-9' name='closeit' filepath='Python/pythonrun.c' line='1221' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1221' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyRun_StringFlags' mangled-name='PyRun_StringFlags' filepath='Python/pythonrun.c' line='1164' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_StringFlags'>
+      <parameter type-id='type-id-3' name='str' filepath='Python/pythonrun.c' line='1164' column='1'/>
+      <parameter type-id='type-id-9' name='start' filepath='Python/pythonrun.c' line='1164' column='1'/>
+      <parameter type-id='type-id-16' name='globals' filepath='Python/pythonrun.c' line='1164' column='1'/>
+      <parameter type-id='type-id-16' name='locals' filepath='Python/pythonrun.c' line='1165' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='1165' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='Python/pythonrun.c' line='1109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Display'>
+      <parameter type-id='type-id-16' name='file' filepath='Python/pythonrun.c' line='1109' column='1'/>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/pythonrun.c' line='1109' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/pythonrun.c' line='1109' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Python/pythonrun.c' line='1109' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_PrintEx' mangled-name='PyErr_PrintEx' filepath='Python/pythonrun.c' line='877' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_PrintEx'>
+      <parameter type-id='type-id-9' name='set_sys_last_vars' filepath='Python/pythonrun.c' line='877' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_Print' mangled-name='_PyErr_Print' filepath='Python/pythonrun.c' line='871' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_Print'>
+      <parameter type-id='type-id-331' name='tstate' filepath='Python/pythonrun.c' line='871' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='Python/pythonrun.c' line='496' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleStringFlags'>
+      <parameter type-id='type-id-3' name='command' filepath='Python/pythonrun.c' line='496' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='496' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line='482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_SimpleFileExFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='482' column='1'/>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='482' column='1'/>
+      <parameter type-id='type-id-9' name='closeit' filepath='Python/pythonrun.c' line='482' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='483' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyRun_SimpleFileObject' mangled-name='_PyRun_SimpleFileObject' filepath='Python/pythonrun.c' line='399' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_SimpleFileObject'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='399' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pythonrun.c' line='399' column='1'/>
+      <parameter type-id='type-id-9' name='closeit' filepath='Python/pythonrun.c' line='399' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='400' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_InteractiveOneFlags' mangled-name='PyRun_InteractiveOneFlags' filepath='Python/pythonrun.c' line='301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_InteractiveOneObject' mangled-name='PyRun_InteractiveOneObject' filepath='Python/pythonrun.c' line='288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveOneObject'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='288' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pythonrun.c' line='288' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='288' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_InteractiveLoopFlags' mangled-name='PyRun_InteractiveLoopFlags' filepath='Python/pythonrun.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_InteractiveLoopFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <parameter type-id='type-id-3' name='filename_str' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='301' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyRun_InteractiveLoopObject' mangled-name='_PyRun_InteractiveLoopObject' filepath='Python/pythonrun.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_InteractiveLoopObject'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='123' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pythonrun.c' line='123' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='123' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyRun_AnyFileExFlags' mangled-name='PyRun_AnyFileExFlags' filepath='Python/pythonrun.c' line='102' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyRun_AnyFileExFlags'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='102' column='1'/>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/pythonrun.c' line='102' column='1'/>
+      <parameter type-id='type-id-9' name='closeit' filepath='Python/pythonrun.c' line='102' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='103' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyRun_AnyFileObject' mangled-name='_PyRun_AnyFileObject' filepath='Python/pythonrun.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyRun_AnyFileObject'>
+      <parameter type-id='type-id-188' name='fp' filepath='Python/pythonrun.c' line='69' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/pythonrun.c' line='69' column='1'/>
+      <parameter type-id='type-id-9' name='closeit' filepath='Python/pythonrun.c' line='69' column='1'/>
+      <parameter type-id='type-id-522' name='flags' filepath='Python/pythonrun.c' line='70' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='Python/pythonrun.c' line='700' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_HandleSystemExit'>
+      <parameter type-id='type-id-452' name='exitcode_p' filepath='Python/pythonrun.c' line='700' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyErr_Display' mangled-name='PyErr_Display' filepath='Python/pythonrun.c' line='1147' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_Display'>
+      <parameter type-id='type-id-16' name='exception' filepath='Python/pythonrun.c' line='1147' column='1'/>
+      <parameter type-id='type-id-16' name='value' filepath='Python/pythonrun.c' line='1147' column='1'/>
+      <parameter type-id='type-id-16' name='tb' filepath='Python/pythonrun.c' line='1147' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyAST_mod2obj' mangled-name='PyAST_mod2obj' filepath='./Include/internal/pycore_ast.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyParser_ASTFromString' mangled-name='_PyParser_ASTFromString' filepath='./Include/internal/pycore_parser.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyParser_ASTFromFile' mangled-name='_PyParser_ASTFromFile' filepath='./Include/internal/pycore_parser.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyException_GetCause' mangled-name='PyException_GetCause' filepath='./Include/pyerrors.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_Offer_Suggestions' mangled-name='_Py_Offer_Suggestions' filepath='./Include/internal/pycore_pyerrors.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_Exit' mangled-name='Py_Exit' filepath='./Include/pylifecycle.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMarshal_ReadLongFromFile' mangled-name='PyMarshal_ReadLongFromFile' filepath='./Include/marshal.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_GetMagicNumber' mangled-name='PyImport_GetMagicNumber' filepath='Python/pythonrun.c' line='1325' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMarshal_ReadLastObjectFromFile' mangled-name='PyMarshal_ReadLastObjectFromFile' filepath='./Include/marshal.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_Tailmatch' mangled-name='PyUnicode_Tailmatch' filepath='./Include/unicodeobject.h' line='930' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='rewind' mangled-name='rewind' filepath='/usr/include/stdio.h' line='694' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_AddModuleObject' mangled-name='PyImport_AddModuleObject' filepath='./Include/import.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FdIsInteractive' mangled-name='_Py_FdIsInteractive' filepath='./Include/cpython/pylifecycle.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_Print' mangled-name='PyObject_Print' filepath='./Include/cpython/object.h' line='310' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_Dump' mangled-name='_PyObject_Dump' filepath='./Include/cpython/object.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pytime.c' comp-dir-path='/src' language='LANG_C99'>
+    <typedef-decl name='__time_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='160' column='1' id='type-id-801'/>
+    <typedef-decl name='time_t' type-id='type-id-801' filepath='/usr/include/x86_64-linux-gnu/bits/types/time_t.h' line='7' column='1' id='type-id-802'/>
+    <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='7' column='1' id='type-id-803'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='tm_sec' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='9' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='32'>
+        <var-decl name='tm_min' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='10' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='tm_hour' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='11' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='96'>
+        <var-decl name='tm_mday' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='12' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='tm_mon' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='13' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='160'>
+        <var-decl name='tm_year' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='14' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='tm_wday' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='15' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='224'>
+        <var-decl name='tm_yday' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='16' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='tm_isdst' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='17' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='tm_gmtoff' type-id='type-id-33' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='20' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='tm_zone' type-id='type-id-3' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='21' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-803' size-in-bits='64' id='type-id-804'/>
+    <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='Python/pytime.c' line='1125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_gmtime'>
+      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='1125' column='1'/>
+      <parameter type-id='type-id-804' name='tm' filepath='Python/pytime.c' line='1125' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='Python/pytime.c' line='1087' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_localtime'>
+      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='1125' column='1'/>
+      <parameter type-id='type-id-804' name='tm' filepath='Python/pytime.c' line='1125' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <typedef-decl name='_PyTime_t' type-id='type-id-227' filepath='./Include/cpython/pytime.h' line='16' column='1' id='type-id-805'/>
+    <pointer-type-def type-id='type-id-805' size-in-bits='64' id='type-id-806'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-807' visibility='default' filepath='./Include/cpython/pytime.h' line='165' column='1' id='type-id-808'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='implementation' type-id='type-id-3' visibility='default' filepath='./Include/cpython/pytime.h' line='166' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='monotonic' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pytime.h' line='167' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='96'>
+        <var-decl name='adjustable' type-id='type-id-9' visibility='default' filepath='./Include/cpython/pytime.h' line='168' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='resolution' type-id='type-id-371' visibility='default' filepath='./Include/cpython/pytime.h' line='169' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='_Py_clock_info_t' type-id='type-id-808' filepath='./Include/cpython/pytime.h' line='170' column='1' id='type-id-807'/>
+    <pointer-type-def type-id='type-id-807' size-in-bits='64' id='type-id-809'/>
+    <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='Python/pytime.c' line='1057' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetPerfCounterWithInfo'>
+      <parameter type-id='type-id-806' name='t' filepath='Python/pytime.c' line='1057' column='1'/>
+      <parameter type-id='type-id-809' name='info' filepath='Python/pytime.c' line='1057' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='Python/pytime.c' line='966' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClockWithInfo'>
+      <parameter type-id='type-id-806' name='tp' filepath='Python/pytime.c' line='966' column='1'/>
+      <parameter type-id='type-id-809' name='info' filepath='Python/pytime.c' line='966' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='Python/pytime.c' line='781' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClockWithInfo'>
+      <parameter type-id='type-id-806' name='tp' filepath='Python/pytime.c' line='966' column='1'/>
+      <parameter type-id='type-id-809' name='info' filepath='Python/pytime.c' line='966' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetSystemClock' mangled-name='_PyTime_GetSystemClock' filepath='Python/pytime.c' line='769' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetSystemClock'>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='10' column='1' id='type-id-810'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='tv_sec' type-id='type-id-801' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='12' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='tv_nsec' type-id='type-id-811' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='16' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='__syscall_slong_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='196' column='1' id='type-id-811'/>
+    <pointer-type-def type-id='type-id-810' size-in-bits='64' id='type-id-812'/>
+    <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='Python/pytime.c' line='636' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimespec'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='636' column='1'/>
+      <parameter type-id='type-id-812' name='ts' filepath='Python/pytime.c' line='636' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-802' size-in-bits='64' id='type-id-813'/>
+    <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='./Include/cpython/pytime.h' line='20' column='1' id='type-id-814'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='_PyTime_ROUND_FLOOR' value='0'/>
+      <enumerator name='_PyTime_ROUND_CEILING' value='1'/>
+      <enumerator name='_PyTime_ROUND_HALF_EVEN' value='2'/>
+      <enumerator name='_PyTime_ROUND_UP' value='3'/>
+      <enumerator name='_PyTime_ROUND_TIMEOUT' value='3'/>
+    </enum-decl>
+    <typedef-decl name='_PyTime_round_t' type-id='type-id-814' filepath='./Include/cpython/pytime.h' line='40' column='1' id='type-id-815'/>
+    <function-decl name='_PyTime_AsTimevalTime_t' mangled-name='_PyTime_AsTimevalTime_t' filepath='Python/pytime.c' line='616' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimevalTime_t'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='616' column='1'/>
+      <parameter type-id='type-id-813' name='p_secs' filepath='Python/pytime.c' line='616' column='1'/>
+      <parameter type-id='type-id-452' name='us' filepath='Python/pytime.c' line='616' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='617' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <class-decl name='timeval' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='8' column='1' id='type-id-816'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='tv_sec' type-id='type-id-801' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='10' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='tv_usec' type-id='type-id-817' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h' line='11' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='__suseconds_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='162' column='1' id='type-id-817'/>
+    <pointer-type-def type-id='type-id-816' size-in-bits='64' id='type-id-818'/>
+    <function-decl name='_PyTime_AsTimeval_noraise' mangled-name='_PyTime_AsTimeval_noraise' filepath='Python/pytime.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval_noraise'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='610' column='1'/>
+      <parameter type-id='type-id-818' name='tv' filepath='Python/pytime.c' line='610' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='610' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='Python/pytime.c' line='604' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsTimeval'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='610' column='1'/>
+      <parameter type-id='type-id-818' name='tv' filepath='Python/pytime.c' line='610' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='610' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsMicroseconds' mangled-name='_PyTime_AsMicroseconds' filepath='Python/pytime.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMicroseconds'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='533' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='533' column='1'/>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsMilliseconds' mangled-name='_PyTime_AsMilliseconds' filepath='Python/pytime.c' line='527' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsMilliseconds'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='533' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='533' column='1'/>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='Python/pytime.c' line='453' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_AsSecondsDouble'>
+      <parameter type-id='type-id-805' name='t' filepath='Python/pytime.c' line='453' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromMillisecondsObject' mangled-name='_PyTime_FromMillisecondsObject' filepath='Python/pytime.c' line='447' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromMillisecondsObject'>
+      <parameter type-id='type-id-806' name='t' filepath='Python/pytime.c' line='447' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='447' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='447' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='Python/pytime.c' line='441' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSecondsObject'>
+      <parameter type-id='type-id-806' name='t' filepath='Python/pytime.c' line='447' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='447' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='447' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='Python/pytime.c' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimeval'>
+      <parameter type-id='type-id-806' name='tp' filepath='Python/pytime.c' line='380' column='1'/>
+      <parameter type-id='type-id-818' name='tv' filepath='Python/pytime.c' line='380' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='Python/pytime.c' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromTimespec'>
+      <parameter type-id='type-id-806' name='tp' filepath='Python/pytime.c' line='334' column='1'/>
+      <parameter type-id='type-id-812' name='ts' filepath='Python/pytime.c' line='334' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='Python/pytime.c' line='268' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanosecondsObject'>
+      <parameter type-id='type-id-806' name='tp' filepath='Python/pytime.c' line='268' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='268' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromNanoseconds' mangled-name='_PyTime_FromNanoseconds' filepath='Python/pytime.c' line='261' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromNanoseconds'>
+      <parameter type-id='type-id-805' name='ns' filepath='Python/pytime.c' line='261' column='1'/>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='Python/pytime.c' line='244' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_FromSeconds'>
+      <parameter type-id='type-id-9' name='seconds' filepath='Python/pytime.c' line='244' column='1'/>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-33' size-in-bits='64' id='type-id-819'/>
+    <function-decl name='_PyTime_ObjectToTimeval' mangled-name='_PyTime_ObjectToTimeval' filepath='Python/pytime.c' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimeval'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-813' name='sec' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-819' name='usec' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='238' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='Python/pytime.c' line='230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTimespec'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-813' name='sec' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-819' name='usec' filepath='Python/pytime.c' line='237' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='238' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='Python/pytime.c' line='197' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_ObjectToTime_t'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='197' column='1'/>
+      <parameter type-id='type-id-813' name='sec' filepath='Python/pytime.c' line='197' column='1'/>
+      <parameter type-id='type-id-815' name='round' filepath='Python/pytime.c' line='197' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='Python/pytime.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_MulDiv'>
+      <parameter type-id='type-id-805' name='ticks' filepath='Python/pytime.c' line='53' column='1'/>
+      <parameter type-id='type-id-805' name='mul' filepath='Python/pytime.c' line='53' column='1'/>
+      <parameter type-id='type-id-805' name='div' filepath='Python/pytime.c' line='53' column='1'/>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='Python/pytime.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_AsTime_t'>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pytime.c' line='71' column='1'/>
+      <return type-id='type-id-802'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='Python/pytime.c' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromTime_t'>
+      <parameter type-id='type-id-802' name='t' filepath='Python/pytime.c' line='91' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='Python/pytime.c' line='954' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTime_GetMonotonicClock'>
+      <return type-id='type-id-805'/>
+    </function-decl>
+    <function-decl name='gmtime_r' mangled-name='gmtime_r' filepath='/usr/include/time.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='localtime_r' mangled-name='localtime_r' filepath='/usr/include/time.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='clock_getres' mangled-name='clock_getres' filepath='/usr/include/time.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='clock_gettime' mangled-name='clock_gettime' filepath='/usr/include/time.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/bootstrap_hash.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyOS_URandomNonblock' mangled-name='_PyOS_URandomNonblock' filepath='Python/bootstrap_hash.c' line='566' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandomNonblock'>
+      <parameter type-id='type-id-21' name='buffer' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyOS_URandom' mangled-name='_PyOS_URandom' filepath='Python/bootstrap_hash.c' line='552' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_URandom'>
+      <parameter type-id='type-id-21' name='buffer' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Python/bootstrap_hash.c' line='566' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_open' mangled-name='_Py_open' filepath='./Include/cpython/fileutils.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_read' mangled-name='_Py_read' filepath='./Include/cpython/fileutils.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='./Include/cpython/fileutils.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__read_alias' mangled-name='read' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='./Include/cpython/fileutils.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getrandom' mangled-name='getrandom' filepath='/usr/include/x86_64-linux-gnu/sys/random.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/structmember.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyMember_SetOne' mangled-name='PyMember_SetOne' filepath='Python/structmember.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_SetOne'>
+      <parameter type-id='type-id-72' name='addr' filepath='Python/structmember.c' line='105' column='1'/>
+      <parameter type-id='type-id-433' name='l' filepath='Python/structmember.c' line='105' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='Python/structmember.c' line='105' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyMember_GetOne' mangled-name='PyMember_GetOne' filepath='Python/structmember.c' line='8' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyMember_GetOne'>
+      <parameter type-id='type-id-3' name='obj_addr' filepath='Python/structmember.c' line='8' column='1'/>
+      <parameter type-id='type-id-433' name='l' filepath='Python/structmember.c' line='8' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/symtable.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='PySTEntry_Type' type-id='type-id-149' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='71' column='1'/>
+    <class-decl name='_symtable_entry' size-in-bits='896' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='37' column='1' id='type-id-820'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='ob_base' type-id='type-id-69' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='38' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='ste_id' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='39' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='ste_symbols' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='40' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='ste_name' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='41' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='ste_varnames' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='42' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='ste_children' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='43' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='ste_directives' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='44' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='ste_type' type-id='type-id-821' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='45' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='544'>
+        <var-decl name='ste_nested' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='46' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='31'>
+        <var-decl name='ste_free' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='47' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='30'>
+        <var-decl name='ste_child_free' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='48' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='29'>
+        <var-decl name='ste_generator' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='50' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='28'>
+        <var-decl name='ste_coroutine' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='51' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='27'>
+        <var-decl name='ste_comprehension' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='52' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='26'>
+        <var-decl name='ste_varargs' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='53' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='25'>
+        <var-decl name='ste_varkeywords' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='54' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='24'>
+        <var-decl name='ste_returns_value' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='55' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='23'>
+        <var-decl name='ste_needs_class_closure' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='57' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='22'>
+        <var-decl name='ste_comp_iter_target' type-id='type-id-66' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='60' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='608'>
+        <var-decl name='ste_comp_iter_expr' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='61' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='640'>
+        <var-decl name='ste_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='62' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='672'>
+        <var-decl name='ste_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='63' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='704'>
+        <var-decl name='ste_end_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='64' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='736'>
+        <var-decl name='ste_end_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='65' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='768'>
+        <var-decl name='ste_opt_lineno' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='66' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='800'>
+        <var-decl name='ste_opt_col_offset' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='67' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='832'>
+        <var-decl name='ste_table' type-id='type-id-822' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='68' column='1'/>
+      </data-member>
+    </class-decl>
+    <enum-decl name='_block_type' filepath='./Include/internal/pycore_symtable.h' line='13' column='1' id='type-id-823'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='FunctionBlock' value='0'/>
+      <enumerator name='ClassBlock' value='1'/>
+      <enumerator name='ModuleBlock' value='2'/>
+      <enumerator name='AnnotationBlock' value='3'/>
+    </enum-decl>
+    <typedef-decl name='_Py_block_ty' type-id='type-id-823' filepath='./Include/internal/pycore_symtable.h' line='14' column='1' id='type-id-821'/>
+    <class-decl name='symtable' size-in-bits='640' is-struct='yes' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='18' column='1' id='type-id-824'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='st_filename' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='19' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='st_cur' type-id='type-id-825' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='21' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='st_top' type-id='type-id-825' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='22' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='st_blocks' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='23' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='st_stack' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='25' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='st_global' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='26' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='st_nblocks' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='27' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='st_private' type-id='type-id-16' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='30' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='st_future' type-id='type-id-826' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='31' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='576'>
+        <var-decl name='recursion_depth' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='33' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='608'>
+        <var-decl name='recursion_limit' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_symtable.h' line='34' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-820' size-in-bits='64' id='type-id-825'/>
+    <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-827' visibility='default' filepath='./Include/cpython/compile.h' line='34' column='1' id='type-id-828'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='ff_features' type-id='type-id-9' visibility='default' filepath='./Include/cpython/compile.h' line='35' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='32'>
+        <var-decl name='ff_lineno' type-id='type-id-9' visibility='default' filepath='./Include/cpython/compile.h' line='36' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='PyFutureFeatures' type-id='type-id-828' filepath='./Include/cpython/compile.h' line='37' column='1' id='type-id-827'/>
+    <pointer-type-def type-id='type-id-827' size-in-bits='64' id='type-id-826'/>
+    <pointer-type-def type-id='type-id-824' size-in-bits='64' id='type-id-822'/>
+    <typedef-decl name='PySTEntryObject' type-id='type-id-820' filepath='./Include/internal/pycore_symtable.h' line='69' column='1' id='type-id-829'/>
+    <pointer-type-def type-id='type-id-829' size-in-bits='64' id='type-id-830'/>
+    <function-decl name='PySymtable_Lookup' mangled-name='PySymtable_Lookup' filepath='Python/symtable.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySymtable_Lookup'>
+      <parameter type-id='type-id-822' name='st' filepath='Python/symtable.c' line='373' column='1'/>
+      <parameter type-id='type-id-21' name='key' filepath='Python/symtable.c' line='373' column='1'/>
+      <return type-id='type-id-830'/>
+    </function-decl>
+    <function-decl name='PyErr_RangedSyntaxLocationObject' mangled-name='PyErr_RangedSyntaxLocationObject' filepath='./Include/cpython/pyerrors.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySet_Discard' mangled-name='PySet_Discard' filepath='./Include/setobject.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='./Python/sysmodule.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PySys_FormatStderr' mangled-name='PySys_FormatStderr' filepath='./Python/sysmodule.c' line='3345' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStderr'>
+      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_FormatStdout' mangled-name='PySys_FormatStdout' filepath='./Python/sysmodule.c' line='3335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_FormatStdout'>
+      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_WriteStderr' mangled-name='PySys_WriteStderr' filepath='./Python/sysmodule.c' line='3302' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStderr'>
+      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_WriteStdout' mangled-name='PySys_WriteStdout' filepath='./Python/sysmodule.c' line='3292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_WriteStdout'>
+      <parameter type-id='type-id-3' name='format' filepath='./Python/sysmodule.c' line='3345' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_SetArgv' mangled-name='PySys_SetArgv' filepath='./Python/sysmodule.c' line='3199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgv'>
+      <parameter type-id='type-id-9' name='argc' filepath='./Python/sysmodule.c' line='3199' column='1'/>
+      <parameter type-id='type-id-329' name='argv' filepath='./Python/sysmodule.c' line='3199' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_SetArgvEx' mangled-name='PySys_SetArgvEx' filepath='./Python/sysmodule.c' line='3155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetArgvEx'>
+      <parameter type-id='type-id-9' name='argc' filepath='./Python/sysmodule.c' line='3155' column='1'/>
+      <parameter type-id='type-id-329' name='argv' filepath='./Python/sysmodule.c' line='3155' column='1'/>
+      <parameter type-id='type-id-9' name='updatepath' filepath='./Python/sysmodule.c' line='3155' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_SetPath' mangled-name='PySys_SetPath' filepath='./Python/sysmodule.c' line='3123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetPath'>
+      <parameter type-id='type-id-478' name='path' filepath='./Python/sysmodule.c' line='3123' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_GetXOptions' mangled-name='PySys_GetXOptions' filepath='./Python/sysmodule.c' line='2389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetXOptions'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PySys_AddXOption' mangled-name='PySys_AddXOption' filepath='./Python/sysmodule.c' line='2375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddXOption'>
+      <parameter type-id='type-id-478' name='s' filepath='./Python/sysmodule.c' line='2375' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_HasWarnOptions' mangled-name='PySys_HasWarnOptions' filepath='./Python/sysmodule.c' line='2301' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_HasWarnOptions'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PySys_AddWarnOption' mangled-name='PySys_AddWarnOption' filepath='./Python/sysmodule.c' line='2285' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOption'>
+      <parameter type-id='type-id-478' name='s' filepath='./Python/sysmodule.c' line='2285' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_AddWarnOptionUnicode' mangled-name='PySys_AddWarnOptionUnicode' filepath='./Python/sysmodule.c' line='2273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddWarnOptionUnicode'>
+      <parameter type-id='type-id-16' name='option' filepath='./Python/sysmodule.c' line='2273' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySys_ResetWarnOptions' mangled-name='PySys_ResetWarnOptions' filepath='./Python/sysmodule.c' line='2245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_ResetWarnOptions'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PySys_GetSizeOf' mangled-name='_PySys_GetSizeOf' filepath='./Python/sysmodule.c' line='1656' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetSizeOf'>
+      <parameter type-id='type-id-16' name='o' filepath='./Python/sysmodule.c' line='1656' column='1'/>
+      <return type-id='type-id-157'/>
+    </function-decl>
+    <function-decl name='PySys_AddAuditHook' mangled-name='PySys_AddAuditHook' filepath='./Python/sysmodule.c' line='382' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_AddAuditHook'>
+      <parameter type-id='type-id-306' name='hook' filepath='./Python/sysmodule.c' line='382' column='1'/>
+      <parameter type-id='type-id-21' name='userData' filepath='./Python/sysmodule.c' line='382' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PySys_Audit' mangled-name='PySys_Audit' filepath='./Python/sysmodule.c' line='328' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_Audit'>
+      <parameter type-id='type-id-3' name='event' filepath='./Python/sysmodule.c' line='328' column='1'/>
+      <parameter type-id='type-id-3' name='argFormat' filepath='./Python/sysmodule.c' line='328' column='1'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='./Python/sysmodule.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetObject'>
+      <parameter type-id='type-id-3' name='name' filepath='./Python/sysmodule.c' line='157' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='./Python/sysmodule.c' line='157' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='./Python/sysmodule.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_SetObjectId'>
+      <parameter type-id='type-id-453' name='key' filepath='./Python/sysmodule.c' line='140' column='1'/>
+      <parameter type-id='type-id-16' name='v' filepath='./Python/sysmodule.c' line='140' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='./Python/sysmodule.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetObject'>
+      <parameter type-id='type-id-3' name='name' filepath='./Python/sysmodule.c' line='100' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='./Python/sysmodule.c' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetObjectId'>
+      <parameter type-id='type-id-453' name='key' filepath='./Python/sysmodule.c' line='83' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyOS_vsnprintf' mangled-name='PyOS_vsnprintf' filepath='./Include/pyerrors.h' line='312' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPathConfig_ComputeSysPath0' mangled-name='_PyPathConfig_ComputeSysPath0' filepath='./Include/internal/pycore_pathconfig.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFile_NewStdPrinter' mangled-name='PyFile_NewStdPrinter' filepath='./Include/cpython/fileobject.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_gitversion' mangled-name='_Py_gitversion' filepath='./Include/cpython/pylifecycle.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_gitidentifier' mangled-name='_Py_gitidentifier' filepath='./Include/cpython/pylifecycle.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_GetPlatform' mangled-name='Py_GetPlatform' filepath='./Include/pylifecycle.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFloat_GetInfo' mangled-name='PyFloat_GetInfo' filepath='./Include/floatobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyLong_GetInfo' mangled-name='PyLong_GetInfo' filepath='./Include/longobject.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyHash_GetFuncDef' mangled-name='PyHash_GetFuncDef' filepath='./Include/pyhash.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='./Include/pythread.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyStructSequence_InitType' mangled-name='_PyStructSequence_InitType' filepath='./Include/internal/pycore_structseq.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWideStringList_AsList' mangled-name='_PyWideStringList_AsList' filepath='./Include/internal/pycore_initconfig.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetAsyncGenFinalizer' mangled-name='_PyEval_SetAsyncGenFinalizer' filepath='./Include/cpython/ceval.h' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetAsyncGenFirstiter' mangled-name='_PyEval_SetAsyncGenFirstiter' filepath='./Include/cpython/ceval.h' line='10' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetProfile' mangled-name='_PyEval_SetProfile' filepath='./Include/cpython/ceval.h' line='6' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetTrace' mangled-name='_PyEval_SetTrace' filepath='./Include/cpython/ceval.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyErr_WriteUnraisableDefaultHook' mangled-name='_PyErr_WriteUnraisableDefaultHook' filepath='./Include/internal/pycore_pylifecycle.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_VaBuildValue_SizeT' mangled-name='_Py_VaBuildValue_SizeT' filepath='./Include/modsupport.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_DeactivateOpCache' mangled-name='_PyEval_DeactivateOpCache' filepath='./Include/internal/pycore_ceval.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_ClearCache' mangled-name='PyType_ClearCache' filepath='./Include/object.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_DebugTypeStats' mangled-name='_PyObject_DebugTypeStats' filepath='./Include/cpython/object.h' line='393' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_CallTracing' mangled-name='_PyEval_CallTracing' filepath='./Include/eval.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_CurrentExceptions' mangled-name='_PyThread_CurrentExceptions' filepath='./Include/cpython/pystate.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThread_CurrentFrames' mangled-name='_PyThread_CurrentFrames' filepath='./Include/cpython/pystate.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_GetAllocatedBlocks' mangled-name='_Py_GetAllocatedBlocks' filepath='./Include/cpython/objimpl.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetAsyncGenFirstiter' mangled-name='_PyEval_GetAsyncGenFirstiter' filepath='./Include/cpython/ceval.h' line='11' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetAsyncGenFinalizer' mangled-name='_PyEval_GetAsyncGenFinalizer' filepath='./Include/cpython/ceval.h' line='13' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetCoroutineOriginTrackingDepth' mangled-name='_PyEval_GetCoroutineOriginTrackingDepth' filepath='./Include/cpython/ceval.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetCoroutineOriginTrackingDepth' mangled-name='_PyEval_SetCoroutineOriginTrackingDepth' filepath='./Include/internal/pycore_ceval.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_SetRecursionLimit' mangled-name='Py_SetRecursionLimit' filepath='./Include/ceval.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_GetSwitchInterval' mangled-name='_PyEval_GetSwitchInterval' filepath='./Include/cpython/ceval.h' line='25' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SetSwitchInterval' mangled-name='_PyEval_SetSwitchInterval' filepath='./Include/cpython/ceval.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/thread.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='Python/thread.c' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_GetInfo'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-301' size-in-bits='64' id='type-id-831'/>
+    <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='Python/thread.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_is_created'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread.c' line='157' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_free' mangled-name='PyThread_tss_free' filepath='Python/thread.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_free'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread.c' line='148' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_alloc' mangled-name='PyThread_tss_alloc' filepath='Python/thread.c' line='137' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_alloc'>
+      <return type-id='type-id-831'/>
+    </function-decl>
+    <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='Python/thread.c' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_stacksize'>
+      <parameter type-id='type-id-157' name='size' filepath='Python/thread.c' line='121' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='Python/thread.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_stacksize'>
+      <return type-id='type-id-157'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='Python/thread_pthread.h' line='925' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_get'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread_pthread.h' line='925' column='1'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='Python/thread_pthread.h' line='917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_set'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread_pthread.h' line='917' column='1'/>
+      <parameter type-id='type-id-21' name='value' filepath='Python/thread_pthread.h' line='917' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='Python/thread_pthread.h' line='886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_create'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread_pthread.h' line='886' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_ReInitTLS' mangled-name='PyThread_ReInitTLS' filepath='Python/thread_pthread.h' line='875' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_ReInitTLS'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_get_key_value' mangled-name='PyThread_get_key_value' filepath='Python/thread_pthread.h' line='864' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_key_value'>
+      <parameter type-id='type-id-9' name='key' filepath='Python/thread_pthread.h' line='864' column='1'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='PyThread_set_key_value' mangled-name='PyThread_set_key_value' filepath='Python/thread_pthread.h' line='853' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_key_value'>
+      <parameter type-id='type-id-9' name='key' filepath='Python/thread_pthread.h' line='853' column='1'/>
+      <parameter type-id='type-id-21' name='value' filepath='Python/thread_pthread.h' line='853' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_delete_key_value' mangled-name='PyThread_delete_key_value' filepath='Python/thread_pthread.h' line='845' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key_value'>
+      <parameter type-id='type-id-9' name='key' filepath='Python/thread_pthread.h' line='845' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_delete_key' mangled-name='PyThread_delete_key' filepath='Python/thread_pthread.h' line='837' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key'>
+      <parameter type-id='type-id-9' name='key' filepath='Python/thread_pthread.h' line='845' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_create_key' mangled-name='PyThread_create_key' filepath='Python/thread_pthread.h' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_create_key'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='Python/thread_pthread.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'>
+      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='750' column='1'/>
+      <parameter type-id='type-id-9' name='waitflag' filepath='Python/thread_pthread.h' line='750' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-228' size-in-bits='64' id='type-id-832'/>
+    <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='Python/thread_pthread.h' line='730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_at_fork_reinit'>
+      <parameter type-id='type-id-832' name='lock' filepath='Python/thread_pthread.h' line='730' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='Python/thread_pthread.h' line='556' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'>
+      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='556' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <enum-decl name='PyLockStatus' filepath='./Include/pythread.h' line='13' column='1' id='type-id-833'>
+      <underlying-type type-id='type-id-83'/>
+      <enumerator name='PY_LOCK_FAILURE' value='0'/>
+      <enumerator name='PY_LOCK_ACQUIRED' value='1'/>
+      <enumerator name='PY_LOCK_INTR' value='2'/>
+    </enum-decl>
+    <typedef-decl name='PyLockStatus' type-id='type-id-833' filepath='./Include/pythread.h' line='17' column='1' id='type-id-834'/>
+    <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='Python/thread_pthread.h' line='439' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock_timed'>
+      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='439' column='1'/>
+      <parameter type-id='type-id-286' name='microseconds' filepath='Python/thread_pthread.h' line='439' column='1'/>
+      <parameter type-id='type-id-9' name='intr_flag' filepath='Python/thread_pthread.h' line='440' column='1'/>
+      <return type-id='type-id-834'/>
+    </function-decl>
+    <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='Python/thread_pthread.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_free_lock'>
+      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='409' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='Python/thread_pthread.h' line='383' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'>
+      <return type-id='type-id-228'/>
+    </function-decl>
+    <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='Python/thread_pthread.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_native_id'>
+      <return type-id='type-id-19'/>
+    </function-decl>
+    <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='Python/thread_pthread.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_ident'>
+      <return type-id='type-id-19'/>
+    </function-decl>
+    <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='Python/thread_pthread.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_start_new_thread'>
+      <parameter type-id='type-id-20' name='func' filepath='Python/thread_pthread.h' line='253' column='1'/>
+      <parameter type-id='type-id-21' name='arg' filepath='Python/thread_pthread.h' line='253' column='1'/>
+      <return type-id='type-id-19'/>
+    </function-decl>
+    <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='Python/thread_pthread.h' line='903' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_delete'>
+      <parameter type-id='type-id-831' name='key' filepath='Python/thread_pthread.h' line='903' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__confstr_alias' mangled-name='confstr' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeFSDefaultAndSize' mangled-name='PyUnicode_DecodeFSDefaultAndSize' filepath='./Include/unicodeobject.h' line='795' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_attr_init' mangled-name='pthread_attr_init' filepath='/usr/include/pthread.h' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_attr_setstacksize' mangled-name='pthread_attr_setstacksize' filepath='/usr/include/pthread.h' line='351' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_attr_destroy' mangled-name='pthread_attr_destroy' filepath='/usr/include/pthread.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_getspecific' mangled-name='pthread_getspecific' filepath='/usr/include/pthread.h' line='1131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_setspecific' mangled-name='pthread_setspecific' filepath='/usr/include/pthread.h' line='1134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_key_create' mangled-name='pthread_key_create' filepath='/usr/include/pthread.h' line='1123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_key_delete' mangled-name='pthread_key_delete' filepath='/usr/include/pthread.h' line='1128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_post' mangled-name='sem_post' filepath='/usr/include/semaphore.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='perror' mangled-name='perror' filepath='/usr/include/stdio.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_wait' mangled-name='sem_wait' filepath='/usr/include/semaphore.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_trywait' mangled-name='sem_trywait' filepath='/usr/include/semaphore.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_clockwait' mangled-name='sem_clockwait' filepath='/usr/include/semaphore.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_destroy' mangled-name='sem_destroy' filepath='/usr/include/semaphore.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sem_init' mangled-name='sem_init' filepath='/usr/include/semaphore.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_exit' mangled-name='pthread_exit' filepath='/usr/include/pthread.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='syscall' mangled-name='syscall' filepath='/usr/include/unistd.h' line='1056' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_self' mangled-name='pthread_self' filepath='/usr/include/pthread.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_attr_setscope' mangled-name='pthread_attr_setscope' filepath='/usr/include/pthread.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_create' mangled-name='pthread_create' filepath='/usr/include/pthread.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_detach' mangled-name='pthread_detach' filepath='/usr/include/pthread.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='gettimeofday' mangled-name='gettimeofday' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_cond_init' mangled-name='pthread_cond_init' filepath='/usr/include/pthread.h' line='965' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_condattr_init' mangled-name='pthread_condattr_init' filepath='/usr/include/pthread.h' line='1020' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_condattr_setclock' mangled-name='pthread_condattr_setclock' filepath='/usr/include/pthread.h' line='1045' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/traceback.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='PyTraceBack_Type' type-id='type-id-149' mangled-name='PyTraceBack_Type' visibility='default' filepath='./Include/traceback.h' line='13' column='1' elf-symbol-id='PyTraceBack_Type'/>
+    <function-decl name='PyTraceBack_Print' mangled-name='PyTraceBack_Print' filepath='Python/traceback.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Print'>
+      <parameter type-id='type-id-16' name='v' filepath='Python/traceback.c' line='597' column='1'/>
+      <parameter type-id='type-id-16' name='f' filepath='Python/traceback.c' line='597' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyTraceback_Add' mangled-name='_PyTraceback_Add' filepath='Python/traceback.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceback_Add'>
+      <parameter type-id='type-id-3' name='funcname' filepath='Python/traceback.c' line='258' column='1'/>
+      <parameter type-id='type-id-3' name='filename' filepath='Python/traceback.c' line='258' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/traceback.c' line='258' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTraceBack_Here' mangled-name='PyTraceBack_Here' filepath='Python/traceback.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Here'>
+      <parameter type-id='type-id-223' name='frame' filepath='Python/traceback.c' line='243' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='Python/traceback.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DisplaySourceLine'>
+      <parameter type-id='type-id-16' name='f' filepath='Python/traceback.c' line='373' column='1'/>
+      <parameter type-id='type-id-16' name='filename' filepath='Python/traceback.c' line='373' column='1'/>
+      <parameter type-id='type-id-9' name='lineno' filepath='Python/traceback.c' line='373' column='1'/>
+      <parameter type-id='type-id-9' name='indent' filepath='Python/traceback.c' line='373' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyInterpreterState_ThreadHead' mangled-name='PyInterpreterState_ThreadHead' filepath='./Include/cpython/pystate.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_Next' mangled-name='PyThreadState_Next' filepath='./Include/cpython/pystate.h' line='200' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyGILState_GetInterpreterStateUnsafe' mangled-name='_PyGILState_GetInterpreterStateUnsafe' filepath='./Include/cpython/pystate.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCode_NewEmpty' mangled-name='PyCode_NewEmpty' filepath='./Include/cpython/code.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFrame_New' mangled-name='PyFrame_New' filepath='./Include/cpython/frameobject.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__builtin___strcpy_chk' mangled-name='__strcpy_chk' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_AsFileDescriptor' mangled-name='PyObject_AsFileDescriptor' filepath='./Include/fileobject.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyTokenizer_FindEncodingFilename' mangled-name='PyTokenizer_FindEncodingFilename' filepath='Python/traceback.c' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/getopt.c' comp-dir-path='/src' language='LANG_C99'>
+    <var-decl name='_PyOS_opterr' type-id='type-id-9' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='8' column='1'/>
+    <var-decl name='_PyOS_optind' type-id='type-id-31' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='9' column='1'/>
+    <var-decl name='_PyOS_optarg' type-id='type-id-478' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='10' column='1'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pystrcmp.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyOS_mystricmp' mangled-name='PyOS_mystricmp' filepath='Python/pystrcmp.c' line='22' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystricmp'>
+      <parameter type-id='type-id-3' name='s1' filepath='Python/pystrcmp.c' line='22' column='1'/>
+      <parameter type-id='type-id-3' name='s2' filepath='Python/pystrcmp.c' line='22' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyOS_mystrnicmp' mangled-name='PyOS_mystrnicmp' filepath='Python/pystrcmp.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystrnicmp'>
+      <parameter type-id='type-id-3' name='s1' filepath='Python/pystrcmp.c' line='7' column='1'/>
+      <parameter type-id='type-id-3' name='s2' filepath='Python/pystrcmp.c' line='7' column='1'/>
+      <parameter type-id='type-id-31' name='size' filepath='Python/pystrcmp.c' line='7' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pystrtod.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='Python/pystrtod.c' line='1243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_double_to_string'>
+      <parameter type-id='type-id-371' name='val' filepath='Python/pystrtod.c' line='1243' column='1'/>
+      <parameter type-id='type-id-1' name='format_code' filepath='Python/pystrtod.c' line='1244' column='1'/>
+      <parameter type-id='type-id-9' name='precision' filepath='Python/pystrtod.c' line='1245' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Python/pystrtod.c' line='1246' column='1'/>
+      <parameter type-id='type-id-452' name='type' filepath='Python/pystrtod.c' line='1247' column='1'/>
+      <return type-id='type-id-72'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-835' size-in-bits='64' id='type-id-836'/>
+    <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='Python/pystrtod.c' line='384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_string_to_number_with_underscores'>
+      <parameter type-id='type-id-3' name='s' filepath='Python/pystrtod.c' line='385' column='1'/>
+      <parameter type-id='type-id-31' name='orig_len' filepath='Python/pystrtod.c' line='385' column='1'/>
+      <parameter type-id='type-id-3' name='what' filepath='Python/pystrtod.c' line='385' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/pystrtod.c' line='385' column='1'/>
+      <parameter type-id='type-id-21' name='arg' filepath='Python/pystrtod.c' line='385' column='1'/>
+      <parameter type-id='type-id-836' name='innerfunc' filepath='Python/pystrtod.c' line='386' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='Python/pystrtod.c' line='338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_string_to_double'>
+      <parameter type-id='type-id-3' name='s' filepath='Python/pystrtod.c' line='338' column='1'/>
+      <parameter type-id='type-id-215' name='endptr' filepath='Python/pystrtod.c' line='339' column='1'/>
+      <parameter type-id='type-id-16' name='overflow_exception' filepath='Python/pystrtod.c' line='340' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='_Py_parse_inf_or_nan' mangled-name='_Py_parse_inf_or_nan' filepath='Python/pystrtod.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_parse_inf_or_nan'>
+      <parameter type-id='type-id-3' name='p' filepath='Python/pystrtod.c' line='29' column='1'/>
+      <parameter type-id='type-id-215' name='endptr' filepath='Python/pystrtod.c' line='29' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-type size-in-bits='64' id='type-id-835'>
+      <parameter type-id='type-id-3'/>
+      <parameter type-id='type-id-31'/>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-16'/>
+    </function-type>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/pystrhex.c' comp-dir-path='/src' language='LANG_C99'>
+    <qualified-type-def type-id='type-id-69' const='yes' id='type-id-837'/>
+    <pointer-type-def type-id='type-id-837' size-in-bits='64' id='type-id-838'/>
+    <function-decl name='_Py_strhex_bytes_with_sep' mangled-name='_Py_strhex_bytes_with_sep' filepath='Python/pystrhex.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes_with_sep'>
+      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-838' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-784' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_strhex_with_sep' mangled-name='_Py_strhex_with_sep' filepath='Python/pystrhex.c' line='162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_with_sep'>
+      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-838' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <parameter type-id='type-id-784' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_strhex_bytes' mangled-name='_Py_strhex_bytes' filepath='Python/pystrhex.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes'>
+      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='155' column='1'/>
+      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='155' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_strhex' mangled-name='_Py_strhex' filepath='Python/pystrhex.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex'>
+      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='155' column='1'/>
+      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='155' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/dtoa.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_dg_dtoa' mangled-name='_Py_dg_dtoa' filepath='Python/dtoa.c' line='2247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_dtoa'>
+      <parameter type-id='type-id-371' name='dd' filepath='Python/dtoa.c' line='2247' column='1'/>
+      <parameter type-id='type-id-9' name='mode' filepath='Python/dtoa.c' line='2247' column='1'/>
+      <parameter type-id='type-id-9' name='ndigits' filepath='Python/dtoa.c' line='2247' column='1'/>
+      <parameter type-id='type-id-452' name='decpt' filepath='Python/dtoa.c' line='2248' column='1'/>
+      <parameter type-id='type-id-452' name='sign' filepath='Python/dtoa.c' line='2248' column='1'/>
+      <parameter type-id='type-id-215' name='rve' filepath='Python/dtoa.c' line='2248' column='1'/>
+      <return type-id='type-id-72'/>
+    </function-decl>
+    <function-decl name='_Py_dg_freedtoa' mangled-name='_Py_dg_freedtoa' filepath='Python/dtoa.c' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_freedtoa'>
+      <parameter type-id='type-id-72' name='s' filepath='Python/dtoa.c' line='2201' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_dg_strtod' mangled-name='_Py_dg_strtod' filepath='Python/dtoa.c' line='1438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_strtod'>
+      <parameter type-id='type-id-3' name='s00' filepath='Python/dtoa.c' line='1438' column='1'/>
+      <parameter type-id='type-id-215' name='se' filepath='Python/dtoa.c' line='1438' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='_Py_dg_infinity' mangled-name='_Py_dg_infinity' filepath='Python/dtoa.c' line='1429' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_infinity'>
+      <parameter type-id='type-id-9' name='sign' filepath='Python/dtoa.c' line='1429' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+    <function-decl name='_Py_dg_stdnan' mangled-name='_Py_dg_stdnan' filepath='Python/dtoa.c' line='1415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_stdnan'>
+      <parameter type-id='type-id-9' name='sign' filepath='Python/dtoa.c' line='1429' column='1'/>
+      <return type-id='type-id-371'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/formatter_unicode.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyComplex_FormatAdvancedWriter'>
+      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
+      <parameter type-id='type-id-16' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_FormatAdvancedWriter'>
+      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
+      <parameter type-id='type-id-16' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatAdvancedWriter'>
+      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1464' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/formatter_unicode.c' line='1465' column='1'/>
+      <parameter type-id='type-id-16' name='format_spec' filepath='Python/formatter_unicode.c' line='1466' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Python/formatter_unicode.c' line='1467' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Python/formatter_unicode.c' line='1467' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1428' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatAdvancedWriter'>
+      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
+      <parameter type-id='type-id-16' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
+      <parameter type-id='type-id-16' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
+      <parameter type-id='type-id-31' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <parameter type-id='type-id-31' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FastFill' mangled-name='_PyUnicode_FastFill' filepath='./Include/cpython/unicodeobject.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FindMaxChar' mangled-name='_PyUnicode_FindMaxChar' filepath='./Include/cpython/unicodeobject.h' line='571' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_FastCopyCharacters' mangled-name='_PyUnicode_FastCopyCharacters' filepath='./Include/cpython/unicodeobject.h' line='510' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='localeconv' mangled-name='localeconv' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='./Include/internal/pycore_fileutils.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyMem_Strdup' mangled-name='_PyMem_Strdup' filepath='./Include/cpython/pymem.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_InsertThousandsGrouping' mangled-name='_PyUnicode_InsertThousandsGrouping' filepath='./Include/cpython/unicodeobject.h' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/fileutils.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_closerange' mangled-name='_Py_closerange' filepath='Python/fileutils.c' line='2393' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_closerange'>
+      <parameter type-id='type-id-9' name='first' filepath='Python/fileutils.c' line='2393' column='1'/>
+      <parameter type-id='type-id-9' name='last' filepath='Python/fileutils.c' line='2393' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' filepath='/usr/include/locale.h' line='51' column='1' id='type-id-839'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='decimal_point' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='55' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='thousands_sep' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='56' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='grouping' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='62' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='int_curr_symbol' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='68' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='currency_symbol' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='69' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='mon_decimal_point' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='70' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='mon_thousands_sep' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='71' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='mon_grouping' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='72' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='positive_sign' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='73' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='576'>
+        <var-decl name='negative_sign' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='74' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='640'>
+        <var-decl name='int_frac_digits' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='75' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='648'>
+        <var-decl name='frac_digits' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='76' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='656'>
+        <var-decl name='p_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='78' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='664'>
+        <var-decl name='p_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='80' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='672'>
+        <var-decl name='n_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='82' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='680'>
+        <var-decl name='n_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='84' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='688'>
+        <var-decl name='p_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='91' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='696'>
+        <var-decl name='n_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='92' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='704'>
+        <var-decl name='int_p_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='95' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='712'>
+        <var-decl name='int_p_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='97' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='720'>
+        <var-decl name='int_n_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='99' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='728'>
+        <var-decl name='int_n_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='101' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='736'>
+        <var-decl name='int_p_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='108' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='744'>
+        <var-decl name='int_n_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='109' column='1'/>
+      </data-member>
+    </class-decl>
+    <pointer-type-def type-id='type-id-839' size-in-bits='64' id='type-id-840'/>
+    <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='Python/fileutils.c' line='2277' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleconvNumeric'>
+      <parameter type-id='type-id-840' name='lc' filepath='Python/fileutils.c' line='2277' column='1'/>
+      <parameter type-id='type-id-86' name='decimal_point' filepath='Python/fileutils.c' line='2278' column='1'/>
+      <parameter type-id='type-id-86' name='thousands_sep' filepath='Python/fileutils.c' line='2278' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='Python/fileutils.c' line='2200' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_blocking'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='2200' column='1'/>
+      <parameter type-id='type-id-9' name='blocking' filepath='Python/fileutils.c' line='2200' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='Python/fileutils.c' line='2179' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_blocking'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='2179' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='Python/fileutils.c' line='2113' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dup'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='2113' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='Python/fileutils.c' line='2081' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wgetcwd'>
+      <parameter type-id='type-id-325' name='buf' filepath='Python/fileutils.c' line='2081' column='1'/>
+      <parameter type-id='type-id-157' name='buflen' filepath='Python/fileutils.c' line='2081' column='1'/>
+      <return type-id='type-id-325'/>
+    </function-decl>
+    <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='Python/fileutils.c' line='1994' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_abspath'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1994' column='1'/>
+      <parameter type-id='type-id-329' name='abspath_p' filepath='Python/fileutils.c' line='1994' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='Python/fileutils.c' line='1981' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_isabs'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1981' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='Python/fileutils.c' line='1943' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wrealpath'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1943' column='1'/>
+      <parameter type-id='type-id-325' name='resolved_path' filepath='Python/fileutils.c' line='1944' column='1'/>
+      <parameter type-id='type-id-157' name='resolved_path_len' filepath='Python/fileutils.c' line='1944' column='1'/>
+      <return type-id='type-id-325'/>
+    </function-decl>
+    <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='Python/fileutils.c' line='1894' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wreadlink'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1894' column='1'/>
+      <parameter type-id='type-id-325' name='buf' filepath='Python/fileutils.c' line='1894' column='1'/>
+      <parameter type-id='type-id-157' name='buflen' filepath='Python/fileutils.c' line='1894' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='Python/fileutils.c' line='1881' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write_noraise'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1881' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Python/fileutils.c' line='1881' column='1'/>
+      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1881' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='_Py_write' mangled-name='_Py_write' filepath='Python/fileutils.c' line='1861' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1861' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Python/fileutils.c' line='1861' column='1'/>
+      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1861' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='_Py_read' mangled-name='_Py_read' filepath='Python/fileutils.c' line='1722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_read'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1722' column='1'/>
+      <parameter type-id='type-id-21' name='buf' filepath='Python/fileutils.c' line='1722' column='1'/>
+      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1722' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='Python/fileutils.c' line='1623' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen_obj'>
+      <parameter type-id='type-id-16' name='path' filepath='Python/fileutils.c' line='1623' column='1'/>
+      <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1623' column='1'/>
+      <return type-id='type-id-188'/>
+    </function-decl>
+    <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='Python/fileutils.c' line='1575' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wfopen'>
+      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1575' column='1'/>
+      <parameter type-id='type-id-478' name='mode' filepath='Python/fileutils.c' line='1575' column='1'/>
+      <return type-id='type-id-188'/>
+    </function-decl>
+    <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='Python/fileutils.c' line='1563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open_noraise'>
+      <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1563' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Python/fileutils.c' line='1563' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_open' mangled-name='_Py_open' filepath='Python/fileutils.c' line='1549' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open'>
+      <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1563' column='1'/>
+      <parameter type-id='type-id-9' name='flags' filepath='Python/fileutils.c' line='1563' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_set_inheritable_async_safe' mangled-name='_Py_set_inheritable_async_safe' filepath='Python/fileutils.c' line='1472' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable_async_safe'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <parameter type-id='type-id-9' name='inheritable' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <parameter type-id='type-id-452' name='atomic_flag_works' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='Python/fileutils.c' line='1463' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <parameter type-id='type-id-9' name='inheritable' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <parameter type-id='type-id-452' name='atomic_flag_works' filepath='Python/fileutils.c' line='1472' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='Python/fileutils.c' line='1297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_inheritable'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1297' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <class-decl name='stat' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='46' column='1' id='type-id-841'>
+      <data-member access='public' layout-offset-in-bits='0'>
+        <var-decl name='st_dev' type-id='type-id-842' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='48' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='64'>
+        <var-decl name='st_ino' type-id='type-id-843' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='53' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='128'>
+        <var-decl name='st_nlink' type-id='type-id-844' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='61' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='192'>
+        <var-decl name='st_mode' type-id='type-id-845' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='62' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='224'>
+        <var-decl name='st_uid' type-id='type-id-846' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='64' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='256'>
+        <var-decl name='st_gid' type-id='type-id-847' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='65' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='288'>
+        <var-decl name='__pad0' type-id='type-id-9' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='67' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='320'>
+        <var-decl name='st_rdev' type-id='type-id-842' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='69' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='384'>
+        <var-decl name='st_size' type-id='type-id-172' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='74' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='448'>
+        <var-decl name='st_blksize' type-id='type-id-848' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='78' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='512'>
+        <var-decl name='st_blocks' type-id='type-id-849' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='80' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='576'>
+        <var-decl name='st_atim' type-id='type-id-810' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='91' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='704'>
+        <var-decl name='st_mtim' type-id='type-id-810' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='92' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='832'>
+        <var-decl name='st_ctim' type-id='type-id-810' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='93' column='1'/>
+      </data-member>
+      <data-member access='public' layout-offset-in-bits='960'>
+        <var-decl name='__glibc_reserved' type-id='type-id-850' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='106' column='1'/>
+      </data-member>
+    </class-decl>
+    <typedef-decl name='__dev_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-842'/>
+    <typedef-decl name='__ino_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-843'/>
+    <typedef-decl name='__nlink_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-844'/>
+    <typedef-decl name='__mode_t' type-id='type-id-66' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-845'/>
+    <typedef-decl name='__uid_t' type-id='type-id-66' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='146' column='1' id='type-id-846'/>
+    <typedef-decl name='__gid_t' type-id='type-id-66' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-847'/>
+    <typedef-decl name='__blksize_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='174' column='1' id='type-id-848'/>
+    <typedef-decl name='__blkcnt_t' type-id='type-id-33' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='179' column='1' id='type-id-849'/>
+
+    <array-type-def dimensions='1' type-id='type-id-811' size-in-bits='192' id='type-id-850'>
+      <subrange length='3' type-id='type-id-19' id='type-id-322'/>
+
+    </array-type-def>
+    <pointer-type-def type-id='type-id-841' size-in-bits='64' id='type-id-851'/>
+    <function-decl name='_Py_stat' mangled-name='_Py_stat' filepath='Python/fileutils.c' line='1215' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_stat'>
+      <parameter type-id='type-id-16' name='path' filepath='Python/fileutils.c' line='1215' column='1'/>
+      <parameter type-id='type-id-851' name='statbuf' filepath='Python/fileutils.c' line='1215' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='Python/fileutils.c' line='1187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1187' column='1'/>
+      <parameter type-id='type-id-851' name='status' filepath='Python/fileutils.c' line='1187' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='Python/fileutils.c' line='1120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat_noraise'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='1120' column='1'/>
+      <parameter type-id='type-id-851' name='status' filepath='Python/fileutils.c' line='1120' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_GetLocaleEncodingObject' mangled-name='_Py_GetLocaleEncodingObject' filepath='Python/fileutils.c' line='924' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleEncodingObject'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-157' size-in-bits='64' id='type-id-852'/>
+    <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='Python/fileutils.c' line='863' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'>
+      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='863' column='1'/>
+      <parameter type-id='type-id-215' name='str' filepath='Python/fileutils.c' line='863' column='1'/>
+      <parameter type-id='type-id-852' name='error_pos' filepath='Python/fileutils.c' line='864' column='1'/>
+      <parameter type-id='type-id-196' name='reason' filepath='Python/fileutils.c' line='864' column='1'/>
+      <parameter type-id='type-id-9' name='current_locale' filepath='Python/fileutils.c' line='865' column='1'/>
+      <parameter type-id='type-id-366' name='errors' filepath='Python/fileutils.c' line='865' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='Python/fileutils.c' line='856' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleRaw'>
+      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='856' column='1'/>
+      <parameter type-id='type-id-852' name='error_pos' filepath='Python/fileutils.c' line='856' column='1'/>
+      <return type-id='type-id-72'/>
+    </function-decl>
+    <function-decl name='Py_EncodeLocale' mangled-name='Py_EncodeLocale' filepath='Python/fileutils.c' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EncodeLocale'>
+      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='856' column='1'/>
+      <parameter type-id='type-id-852' name='error_pos' filepath='Python/fileutils.c' line='856' column='1'/>
+      <return type-id='type-id-72'/>
+    </function-decl>
+    <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='Python/fileutils.c' line='645' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecodeLocale'>
+      <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='645' column='1'/>
+      <parameter type-id='type-id-852' name='wlen' filepath='Python/fileutils.c' line='645' column='1'/>
+      <return type-id='type-id-325'/>
+    </function-decl>
+    <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='Python/fileutils.c' line='583' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeLocaleEx'>
+      <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='583' column='1'/>
+      <parameter type-id='type-id-329' name='wstr' filepath='Python/fileutils.c' line='583' column='1'/>
+      <parameter type-id='type-id-852' name='wlen' filepath='Python/fileutils.c' line='583' column='1'/>
+      <parameter type-id='type-id-196' name='reason' filepath='Python/fileutils.c' line='584' column='1'/>
+      <parameter type-id='type-id-9' name='current_locale' filepath='Python/fileutils.c' line='585' column='1'/>
+      <parameter type-id='type-id-366' name='errors' filepath='Python/fileutils.c' line='585' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='Python/fileutils.c' line='292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetForceASCII'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='Python/fileutils.c' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_device_encoding'>
+      <parameter type-id='type-id-9' name='fd' filepath='Python/fileutils.c' line='67' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_GetLocaleEncoding' mangled-name='_Py_GetLocaleEncoding' filepath='Python/fileutils.c' line='884' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleEncoding'>
+      <return type-id='type-id-325'/>
+    </function-decl>
+    <function-decl name='ioctl' mangled-name='ioctl' filepath='/usr/include/x86_64-linux-gnu/sys/ioctl.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fcntl' mangled-name='fcntl64' filepath='/usr/include/fcntl.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__getcwd_alias' mangled-name='getcwd' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__realpath_chk' mangled-name='__realpath_chk' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__readlink_alias' mangled-name='readlink' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='write' mangled-name='write' filepath='/usr/include/unistd.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fopen' mangled-name='fopen64' filepath='/usr/include/stdio.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_FSConverter' mangled-name='PyUnicode_FSConverter' filepath='./Include/unicodeobject.h' line='768' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilenameObject' mangled-name='PyErr_SetFromErrnoWithFilenameObject' filepath='./Include/pyerrors.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__wcstombs_alias' mangled-name='wcstombs' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__open_2' mangled-name='__open64_2' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetFromErrnoWithFilenameObjects' mangled-name='PyErr_SetFromErrnoWithFilenameObjects' filepath='./Include/pyerrors.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__xstat' mangled-name='__xstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='409' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__fxstat' mangled-name='__fxstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='406' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_EncodeUTF8Ex' mangled-name='_Py_EncodeUTF8Ex' filepath='./Include/internal/pycore_fileutils.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DecodeUTF8Ex' mangled-name='_Py_DecodeUTF8Ex' filepath='./Include/internal/pycore_fileutils.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='mbrtowc' mangled-name='mbrtowc' filepath='/usr/include/wchar.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__mbstowcs_alias' mangled-name='mbstowcs' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Python/suggestions.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_UTF8_Edit_Cost' mangled-name='_Py_UTF8_Edit_Cost' filepath='Python/suggestions.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_UTF8_Edit_Cost'>
+      <parameter type-id='type-id-16' name='a' filepath='Python/suggestions.c' line='264' column='1'/>
+      <parameter type-id='type-id-16' name='b' filepath='Python/suggestions.c' line='264' column='1'/>
+      <parameter type-id='type-id-31' name='max_cost' filepath='Python/suggestions.c' line='264' column='1'/>
+      <return type-id='type-id-31'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='./Python/dynload_shlib.c' comp-dir-path='/src' language='LANG_C99'>
+
+    <array-type-def dimensions='1' type-id='type-id-3' size-in-bits='infinite' id='type-id-853'>
+      <subrange length='infinite' id='type-id-7'/>
+
+    </array-type-def>
+    <var-decl name='_PyImport_DynLoadFiletab' type-id='type-id-853' visibility='default' filepath='./Python/importdl.h' line='9' column='1'/>
+    <function-decl name='dlsym' mangled-name='dlsym' filepath='/usr/include/dlfcn.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dlerror' mangled-name='dlerror' filepath='/usr/include/dlfcn.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dlopen' mangled-name='dlopen' filepath='/usr/include/dlfcn.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='./Modules/getpath.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='./Include/cpython/fileutils.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_FindEnvConfigValue' mangled-name='_Py_FindEnvConfigValue' filepath='./Include/internal/pycore_pathconfig.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='./Include/cpython/fileutils.h' line='35' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__wcscpy_alias' mangled-name='wcscpy' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__wcscat_alias' mangled-name='wcscat' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__wcsncat_alias' mangled-name='wcsncat' filepath='/usr/include/x86_64-linux-gnu/bits/wchar2.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Modules/main.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='Py_BytesMain' mangled-name='Py_BytesMain' filepath='Modules/main.c' line='713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BytesMain'>
+      <parameter type-id='type-id-9' name='argc' filepath='Modules/main.c' line='713' column='1'/>
+      <parameter type-id='type-id-215' name='argv' filepath='Modules/main.c' line='713' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_Main' mangled-name='Py_Main' filepath='Modules/main.c' line='701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Main'>
+      <parameter type-id='type-id-9' name='argc' filepath='Modules/main.c' line='701' column='1'/>
+      <parameter type-id='type-id-329' name='argv' filepath='Modules/main.c' line='701' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='Py_RunMain' mangled-name='Py_RunMain' filepath='Modules/main.c' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_RunMain'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyImport_Fini2' mangled-name='_PyImport_Fini2' filepath='./Include/internal/pycore_pylifecycle.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyPathConfig_ClearGlobal' mangled-name='_PyPathConfig_ClearGlobal' filepath='./Include/internal/pycore_pathconfig.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_HandleSystemExit' mangled-name='_Py_HandleSystemExit' filepath='./Include/internal/pycore_pylifecycle.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyImport_GetImporter' mangled-name='PyImport_GetImporter' filepath='./Include/import.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyRun_SimpleStringFlags' mangled-name='PyRun_SimpleStringFlags' filepath='./Include/cpython/pythonrun.h' line='5' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRun_SimpleFileObject' mangled-name='_PyRun_SimpleFileObject' filepath='./Include/cpython/pythonrun.h' line='6' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='Py_MakePendingCalls' mangled-name='Py_MakePendingCalls' filepath='./Include/ceval.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyRun_AnyFileObject' mangled-name='_PyRun_AnyFileObject' filepath='./Include/cpython/pythonrun.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_setsig' mangled-name='PyOS_setsig' filepath='./Include/pylifecycle.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getpid' mangled-name='getpid' filepath='/usr/include/unistd.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='kill' mangled-name='kill' filepath='/usr/include/signal.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_PreInitializeFromPyArgv' mangled-name='_Py_PreInitializeFromPyArgv' filepath='./Include/internal/pycore_pylifecycle.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyConfig_SetArgv' mangled-name='PyConfig_SetArgv' filepath='./Include/cpython/initconfig.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyConfig_SetBytesArgv' mangled-name='PyConfig_SetBytesArgv' filepath='./Include/cpython/initconfig.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='Modules/gcmodule.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyObject_GC_IsFinalized' mangled-name='PyObject_GC_IsFinalized' filepath='Modules/gcmodule.c' line='2358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsFinalized'>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1721' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_IsTracked' mangled-name='PyObject_GC_IsTracked' filepath='Modules/gcmodule.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsTracked'>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1721' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='Modules/gcmodule.c' line='2335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Del'>
+      <parameter type-id='type-id-21' name='op' filepath='Modules/gcmodule.c' line='2335' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='Modules/gcmodule.c' line='2317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Resize'>
+      <parameter type-id='type-id-474' name='op' filepath='Modules/gcmodule.c' line='2317' column='1'/>
+      <parameter type-id='type-id-31' name='nitems' filepath='Modules/gcmodule.c' line='2317' column='1'/>
+      <return type-id='type-id-474'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_NewVar' mangled-name='_PyObject_GC_NewVar' filepath='Modules/gcmodule.c' line='2298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_NewVar'>
+      <parameter type-id='type-id-32' name='tp' filepath='Objects/object.c' line='192' column='1'/>
+      <parameter type-id='type-id-31' name='nitems' filepath='Objects/object.c' line='192' column='1'/>
+      <return type-id='type-id-474'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='Modules/gcmodule.c' line='2287' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_New'>
+      <parameter type-id='type-id-32' name='tp' filepath='Modules/gcmodule.c' line='2287' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_Calloc' mangled-name='_PyObject_GC_Calloc' filepath='Modules/gcmodule.c' line='2281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Calloc'>
+      <parameter type-id='type-id-157' name='basicsize' filepath='Modules/gcmodule.c' line='2281' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyObject_GC_Malloc' mangled-name='_PyObject_GC_Malloc' filepath='Modules/gcmodule.c' line='2275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Malloc'>
+      <parameter type-id='type-id-157' name='basicsize' filepath='Modules/gcmodule.c' line='2281' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyObject_IS_GC' mangled-name='PyObject_IS_GC' filepath='Modules/gcmodule.c' line='2230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IS_GC'>
+      <parameter type-id='type-id-16' name='s' filepath='Objects/abstract.c' line='1721' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='Modules/gcmodule.c' line='2218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_UnTrack'>
+      <parameter type-id='type-id-21' name='op_raw' filepath='Modules/gcmodule.c' line='2218' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_GC_Track' mangled-name='PyObject_GC_Track' filepath='Modules/gcmodule.c' line='2199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Track'>
+      <parameter type-id='type-id-21' name='op_raw' filepath='Modules/gcmodule.c' line='2199' column='1'/>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyGC_Collect' mangled-name='PyGC_Collect' filepath='Modules/gcmodule.c' line='2081' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Collect'>
+      <return type-id='type-id-31'/>
+    </function-decl>
+    <function-decl name='PyGC_IsEnabled' mangled-name='PyGC_IsEnabled' filepath='Modules/gcmodule.c' line='2073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_IsEnabled'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyGC_Disable' mangled-name='PyGC_Disable' filepath='Modules/gcmodule.c' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Disable'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyGC_Enable' mangled-name='PyGC_Enable' filepath='Modules/gcmodule.c' line='2055' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Enable'>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyInit_gc' mangled-name='PyInit_gc' filepath='Modules/gcmodule.c' line='2048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_gc'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyErr_WarnExplicitFormat' mangled-name='PyErr_WarnExplicitFormat' filepath='./Include/warnings.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_convert_optional_to_ssize_t' mangled-name='_Py_convert_optional_to_ssize_t' filepath='./Include/cpython/abstract.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetMonotonicClock' mangled-name='_PyTime_GetMonotonicClock' filepath='./Include/cpython/pytime.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsSecondsDouble' mangled-name='_PyTime_AsSecondsDouble' filepath='./Include/cpython/pytime.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_MaybeUntrack' mangled-name='_PyTuple_MaybeUntrack' filepath='./Include/cpython/tupleobject.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFrame_ClearFreeList' mangled-name='_PyFrame_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTuple_ClearFreeList' mangled-name='_PyTuple_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFloat_ClearFreeList' mangled-name='_PyFloat_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyList_ClearFreeList' mangled-name='_PyList_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_ClearFreeList' mangled-name='_PyDict_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAsyncGen_ClearFreeLists' mangled-name='_PyAsyncGen_ClearFreeLists' filepath='./Include/internal/pycore_gc.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyContext_ClearFreeList' mangled-name='_PyContext_ClearFreeList' filepath='./Include/internal/pycore_gc.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_MaybeUntrack' mangled-name='_PyDict_MaybeUntrack' filepath='./Include/cpython/dictobject.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='./Modules/posixmodule.c' comp-dir-path='/src' language='LANG_C99'>
+    <function-decl name='PyInit_posix' mangled-name='PyInit_posix' filepath='./Modules/posixmodule.c' line='15817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_posix'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.c' line='1501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Sigset_Converter'>
+      <parameter type-id='type-id-16' name='obj' filepath='./Modules/posixmodule.c' line='1501' column='1'/>
+      <parameter type-id='type-id-21' name='addr' filepath='./Modules/posixmodule.c' line='1501' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <typedef-decl name='gid_t' type-id='type-id-847' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='64' column='1' id='type-id-854'/>
+    <pointer-type-def type-id='type-id-854' size-in-bits='64' id='type-id-855'/>
+    <function-decl name='_Py_Gid_Converter' mangled-name='_Py_Gid_Converter' filepath='./Modules/posixmodule.c' line='789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Gid_Converter'>
+      <parameter type-id='type-id-16' name='obj' filepath='./Modules/posixmodule.c' line='789' column='1'/>
+      <parameter type-id='type-id-855' name='p' filepath='./Modules/posixmodule.c' line='789' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <typedef-decl name='uid_t' type-id='type-id-846' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-856'/>
+    <pointer-type-def type-id='type-id-856' size-in-bits='64' id='type-id-857'/>
+    <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.c' line='683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Uid_Converter'>
+      <parameter type-id='type-id-16' name='obj' filepath='./Modules/posixmodule.c' line='683' column='1'/>
+      <parameter type-id='type-id-857' name='p' filepath='./Modules/posixmodule.c' line='683' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='PyOS_AfterFork' mangled-name='PyOS_AfterFork' filepath='./Modules/posixmodule.c' line='649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_AfterFork_Child' mangled-name='PyOS_AfterFork_Child' filepath='./Modules/posixmodule.c' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Child'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_BeforeFork' mangled-name='PyOS_BeforeFork' filepath='./Modules/posixmodule.c' line='572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_BeforeFork'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_AfterFork_Parent' mangled-name='PyOS_AfterFork_Parent' filepath='./Modules/posixmodule.c' line='580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Parent'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.c' line='667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromUid'>
+      <parameter type-id='type-id-856' name='uid' filepath='./Modules/posixmodule.c' line='667' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.c' line='675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromGid'>
+      <parameter type-id='type-id-854' name='gid' filepath='./Modules/posixmodule.c' line='675' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Modules/posixmodule.c' line='14353' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FSPath'>
+      <parameter type-id='type-id-16' name='path' filepath='./Modules/posixmodule.c' line='14353' column='1'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='qsort' mangled-name='qsort' filepath='/usr/include/stdlib.h' line='830' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyModule_AddObject' mangled-name='PyModule_AddObject' filepath='./Include/modsupport.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyStructSequence_NewType' mangled-name='PyStructSequence_NewType' filepath='./Include/structseq.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sysconf' mangled-name='sysconf' filepath='/usr/include/unistd.h' line='619' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_FromModuleAndSpec' mangled-name='PyType_FromModuleAndSpec' filepath='./Include/object.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='closedir' mangled-name='closedir' filepath='/usr/include/dirent.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='rewinddir' mangled-name='rewinddir' filepath='/usr/include/dirent.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_ResourceWarning' mangled-name='PyErr_ResourceWarning' filepath='./Include/warnings.h' line='23' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='opendir' mangled-name='opendir' filepath='/usr/include/dirent.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fdopendir' mangled-name='fdopendir' filepath='/usr/include/dirent.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseStackAndKeywords_SizeT' mangled-name='_PyArg_ParseStackAndKeywords_SizeT' filepath='./Include/modsupport.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyType_GetModule' mangled-name='PyType_GetModule' filepath='./Include/object.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='./Include/cpython/fileutils.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='./Include/cpython/fileutils.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='./Include/cpython/fileutils.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='eventfd_write' mangled-name='eventfd_write' filepath='/usr/include/x86_64-linux-gnu/sys/eventfd.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FileDescriptor_Converter' mangled-name='_PyLong_FileDescriptor_Converter' filepath='./Include/cpython/fileobject.h' line='18' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_UnsignedLongLong_Converter' mangled-name='_PyLong_UnsignedLongLong_Converter' filepath='./Include/longobject.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='eventfd_read' mangled-name='eventfd_read' filepath='/usr/include/x86_64-linux-gnu/sys/eventfd.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='eventfd' mangled-name='eventfd' filepath='/usr/include/x86_64-linux-gnu/sys/eventfd.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_UnsignedInt_Converter' mangled-name='_PyLong_UnsignedInt_Converter' filepath='./Include/longobject.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='memfd_create' mangled-name='memfd_create' filepath='/usr/include/x86_64-linux-gnu/bits/mman-shared.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyOS_URandom' mangled-name='_PyOS_URandom' filepath='./Include/cpython/pylifecycle.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='listxattr' mangled-name='listxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='flistxattr' mangled-name='flistxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='llistxattr' mangled-name='llistxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='removexattr' mangled-name='removexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fremovexattr' mangled-name='fremovexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='lremovexattr' mangled-name='lremovexattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setxattr' mangled-name='setxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fsetxattr' mangled-name='fsetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='lsetxattr' mangled-name='lsetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getxattr' mangled-name='getxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fgetxattr' mangled-name='fgetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='lgetxattr' mangled-name='lgetxattr' filepath='/usr/include/x86_64-linux-gnu/sys/xattr.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getresgid' mangled-name='getresgid' filepath='/usr/include/unistd.h' line='738' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getresuid' mangled-name='getresuid' filepath='/usr/include/unistd.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setresgid' mangled-name='setresgid' filepath='/usr/include/unistd.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setresuid' mangled-name='setresuid' filepath='/usr/include/unistd.h' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='./Include/cpython/fileutils.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getloadavg' mangled-name='getloadavg' filepath='/usr/include/stdlib.h' line='1003' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fpathconf' mangled-name='fpathconf' filepath='/usr/include/unistd.h' line='616' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pathconf' mangled-name='pathconf' filepath='/usr/include/unistd.h' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='fstatvfs' mangled-name='fstatvfs64' filepath='/usr/include/x86_64-linux-gnu/sys/statvfs.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='statvfs' mangled-name='statvfs64' filepath='/usr/include/x86_64-linux-gnu/sys/statvfs.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='unsetenv' mangled-name='unsetenv' filepath='/usr/include/stdlib.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='posix_fadvise' mangled-name='posix_fadvise64' filepath='/usr/include/fcntl.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='posix_fallocate' mangled-name='posix_fallocate64' filepath='/usr/include/fcntl.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='truncate' mangled-name='truncate64' filepath='/usr/include/unistd.h' line='995' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyIndex_Check' mangled-name='PyIndex_Check' filepath='./Include/abstract.h' line='520' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__xmknodat' mangled-name='__xmknodat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='441' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__xmknod' mangled-name='__xmknod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='438' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='mkfifoat' mangled-name='mkfifoat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='mkfifo' mangled-name='mkfifo' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='346' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='splice' mangled-name='splice' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h' line='420' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='copy_file_range' mangled-name='copy_file_range' filepath='/usr/include/unistd.h' line='1107' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pwritev2' mangled-name='pwritev64v2' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pwrite' mangled-name='pwrite64' filepath='/usr/include/unistd.h' line='391' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='writev' mangled-name='writev' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pipe2' mangled-name='pipe2' filepath='/usr/include/unistd.h' line='422' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pipe' mangled-name='pipe' filepath='/usr/include/unistd.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sendfile' mangled-name='sendfile64' filepath='/usr/include/x86_64-linux-gnu/sys/sendfile.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='preadv2' mangled-name='preadv64v2' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__pread64_alias' mangled-name='pread64' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='readv' mangled-name='readv' filepath='/usr/include/x86_64-linux-gnu/sys/uio.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='lockf' mangled-name='lockf64' filepath='/usr/include/unistd.h' line='1082' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dup2' mangled-name='dup2' filepath='/usr/include/unistd.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dup3' mangled-name='dup3' filepath='/usr/include/unistd.h' line='539' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_closerange' mangled-name='_Py_closerange' filepath='./Include/internal/pycore_fileutils.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__openat_alias' mangled-name='openat64' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__open_alias' mangled-name='open64' filepath='/usr/include/x86_64-linux-gnu/bits/fcntl2.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='tcsetpgrp' mangled-name='tcsetpgrp' filepath='/usr/include/unistd.h' line='841' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseStack_SizeT' mangled-name='_PyArg_ParseStack_SizeT' filepath='./Include/modsupport.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='tcgetpgrp' mangled-name='tcgetpgrp' filepath='/usr/include/unistd.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setpgid' mangled-name='setpgid' filepath='/usr/include/unistd.h' line='646' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setsid' mangled-name='setsid' filepath='/usr/include/unistd.h' line='667' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getsid' mangled-name='getsid' filepath='/usr/include/unistd.h' line='671' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_Parse_SizeT' mangled-name='_PyArg_Parse_SizeT' filepath='./Include/modsupport.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='times' mangled-name='times' filepath='/usr/include/x86_64-linux-gnu/sys/times.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='symlinkat' mangled-name='symlinkat' filepath='/usr/include/unistd.h' line='815' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='symlink' mangled-name='symlink' filepath='/usr/include/unistd.h' line='802' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wait' mangled-name='wait' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='waitpid' mangled-name='waitpid' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='waitid' mangled-name='waitid' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wait4' mangled-name='wait4' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wait3' mangled-name='wait3' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_SetObject' mangled-name='PySys_SetObject' filepath='./Python/sysmodule.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_SetObject'>
-      <parameter type-id='type-id-3' name='name' filepath='Python/codecs.c' line='622' column='1'/>
-      <parameter type-id='type-id-15' name='error' filepath='Python/codecs.c' line='622' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='setgid' mangled-name='setgid' filepath='/usr/include/unistd.h' line='717' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PySys_SetObjectId' mangled-name='_PySys_SetObjectId' filepath='./Python/sysmodule.c' line='140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_SetObjectId'>
-      <parameter type-id='type-id-453' name='key' filepath='./Python/sysmodule.c' line='140' column='1'/>
-      <parameter type-id='type-id-15' name='v' filepath='./Python/sysmodule.c' line='140' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='setregid' mangled-name='setregid' filepath='/usr/include/unistd.h' line='722' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PySys_GetObject' mangled-name='PySys_GetObject' filepath='./Python/sysmodule.c' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PySys_GetObject'>
-      <parameter type-id='type-id-3' name='name' filepath='./Python/sysmodule.c' line='100' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='setreuid' mangled-name='setreuid' filepath='/usr/include/unistd.h' line='705' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PySys_GetObjectId' mangled-name='_PySys_GetObjectId' filepath='./Python/sysmodule.c' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PySys_GetObjectId'>
-      <parameter type-id='type-id-453' name='key' filepath='./Python/sysmodule.c' line='83' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='setegid' mangled-name='setegid' filepath='/usr/include/unistd.h' line='727' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/thread.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyThread_GetInfo' mangled-name='PyThread_GetInfo' filepath='Python/thread.c' line='186' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_GetInfo'>
-      <return type-id='type-id-15'/>
+    <function-decl name='seteuid' mangled-name='seteuid' filepath='/usr/include/unistd.h' line='710' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-301' size-in-bits='64' id='type-id-828'/>
-    <function-decl name='PyThread_tss_is_created' mangled-name='PyThread_tss_is_created' filepath='Python/thread.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_is_created'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread.c' line='157' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='setuid' mangled-name='setuid' filepath='/usr/include/unistd.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_free' mangled-name='PyThread_tss_free' filepath='Python/thread.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_free'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread.c' line='148' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='killpg' mangled-name='killpg' filepath='/usr/include/signal.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_alloc' mangled-name='PyThread_tss_alloc' filepath='Python/thread.c' line='137' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_alloc'>
-      <return type-id='type-id-828'/>
+    <function-decl name='getuid' mangled-name='getuid' filepath='/usr/include/unistd.h' line='675' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='Python/thread.c' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_stacksize'>
-      <parameter type-id='type-id-157' name='size' filepath='Python/thread.c' line='121' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='getlogin' mangled-name='getlogin' filepath='/usr/include/unistd.h' line='848' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='Python/thread.c' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_stacksize'>
-      <return type-id='type-id-157'/>
+    <function-decl name='getppid' mangled-name='getppid' filepath='/usr/include/unistd.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_get' mangled-name='PyThread_tss_get' filepath='Python/thread_pthread.h' line='897' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_get'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread_pthread.h' line='897' column='1'/>
-      <return type-id='type-id-20'/>
+    <function-decl name='setpgrp' mangled-name='setpgrp' filepath='/usr/include/unistd.h' line='660' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_set' mangled-name='PyThread_tss_set' filepath='Python/thread_pthread.h' line='889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_set'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread_pthread.h' line='889' column='1'/>
-      <parameter type-id='type-id-20' name='value' filepath='Python/thread_pthread.h' line='889' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='getpgrp' mangled-name='getpgrp' filepath='/usr/include/unistd.h' line='634' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_delete' mangled-name='PyThread_tss_delete' filepath='Python/thread_pthread.h' line='875' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_delete'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread.c' line='148' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='getpgid' mangled-name='getpgid' filepath='/usr/include/unistd.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_tss_create' mangled-name='PyThread_tss_create' filepath='Python/thread_pthread.h' line='858' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_tss_create'>
-      <parameter type-id='type-id-828' name='key' filepath='Python/thread_pthread.h' line='858' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='initgroups' mangled-name='initgroups' filepath='/usr/include/grp.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_ReInitTLS' mangled-name='PyThread_ReInitTLS' filepath='Python/thread_pthread.h' line='847' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_ReInitTLS'>
-      <return type-id='type-id-69'/>
+    <function-decl name='getgrouplist' mangled-name='getgrouplist' filepath='/usr/include/grp.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_get_key_value' mangled-name='PyThread_get_key_value' filepath='Python/thread_pthread.h' line='836' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_key_value'>
-      <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='836' column='1'/>
-      <return type-id='type-id-20'/>
+    <function-decl name='getgid' mangled-name='getgid' filepath='/usr/include/unistd.h' line='681' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_set_key_value' mangled-name='PyThread_set_key_value' filepath='Python/thread_pthread.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_set_key_value'>
-      <parameter type-id='type-id-8' name='key' filepath='Python/thread_pthread.h' line='825' column='1'/>
-      <parameter type-id='type-id-20' name='value' filepath='Python/thread_pthread.h' line='825' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='geteuid' mangled-name='geteuid' filepath='/usr/include/unistd.h' line='678' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_delete_key_value' mangled-name='PyThread_delete_key_value' filepath='Python/thread_pthread.h' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key_value'>
-      <parameter type-id='type-id-8' name='sts' filepath='Python/pylifecycle.c' line='2856' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='getegid' mangled-name='getegid' filepath='/usr/include/unistd.h' line='684' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_delete_key' mangled-name='PyThread_delete_key' filepath='Python/thread_pthread.h' line='809' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_delete_key'>
-      <parameter type-id='type-id-8' name='sts' filepath='Python/pylifecycle.c' line='2856' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='forkpty' mangled-name='forkpty' filepath='/usr/include/pty.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_create_key' mangled-name='PyThread_create_key' filepath='Python/thread_pthread.h' line='789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_create_key'>
-      <return type-id='type-id-8'/>
+    <function-decl name='openpty' mangled-name='openpty' filepath='/usr/include/pty.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_acquire_lock' mangled-name='PyThread_acquire_lock' filepath='Python/thread_pthread.h' line='722' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock'>
-      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='722' column='1'/>
-      <parameter type-id='type-id-8' name='waitflag' filepath='Python/thread_pthread.h' line='722' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='__sched_cpualloc' mangled-name='__sched_cpualloc' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-228' size-in-bits='64' id='type-id-829'/>
-    <function-decl name='_PyThread_at_fork_reinit' mangled-name='_PyThread_at_fork_reinit' filepath='Python/thread_pthread.h' line='702' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyThread_at_fork_reinit'>
-      <parameter type-id='type-id-829' name='lock' filepath='Python/thread_pthread.h' line='702' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='sched_getaffinity' mangled-name='sched_getaffinity' filepath='/usr/include/sched.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_release_lock' mangled-name='PyThread_release_lock' filepath='Python/thread_pthread.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_release_lock'>
-      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='528' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='__sched_cpufree' mangled-name='__sched_cpufree' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <enum-decl name='PyLockStatus' filepath='./Include/pythread.h' line='13' column='1' id='type-id-830'>
-      <underlying-type type-id='type-id-83'/>
-      <enumerator name='PY_LOCK_FAILURE' value='0'/>
-      <enumerator name='PY_LOCK_ACQUIRED' value='1'/>
-      <enumerator name='PY_LOCK_INTR' value='2'/>
-    </enum-decl>
-    <typedef-decl name='PyLockStatus' type-id='type-id-830' filepath='./Include/pythread.h' line='17' column='1' id='type-id-831'/>
-    <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='Python/thread_pthread.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_acquire_lock_timed'>
-      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='431' column='1'/>
-      <parameter type-id='type-id-286' name='microseconds' filepath='Python/thread_pthread.h' line='431' column='1'/>
-      <parameter type-id='type-id-8' name='intr_flag' filepath='Python/thread_pthread.h' line='432' column='1'/>
-      <return type-id='type-id-831'/>
+    <function-decl name='__sched_cpucount' mangled-name='__sched_cpucount' filepath='/usr/include/x86_64-linux-gnu/bits/cpu-set.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_free_lock' mangled-name='PyThread_free_lock' filepath='Python/thread_pthread.h' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_free_lock'>
-      <parameter type-id='type-id-228' name='lock' filepath='Python/thread_pthread.h' line='528' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='sched_setaffinity' mangled-name='sched_setaffinity' filepath='/usr/include/sched.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_allocate_lock' mangled-name='PyThread_allocate_lock' filepath='Python/thread_pthread.h' line='375' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_allocate_lock'>
-      <return type-id='type-id-228'/>
+    <function-decl name='sched_yield' mangled-name='sched_yield' filepath='/usr/include/sched.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_exit_thread' mangled-name='PyThread_exit_thread' filepath='Python/thread_pthread.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_exit_thread'>
-      <return type-id='type-id-69'/>
+    <function-decl name='sched_rr_get_interval' mangled-name='sched_rr_get_interval' filepath='/usr/include/sched.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='Python/thread_pthread.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_native_id'>
-      <return type-id='type-id-18'/>
+    <function-decl name='sched_setparam' mangled-name='sched_setparam' filepath='/usr/include/sched.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_get_thread_ident' mangled-name='PyThread_get_thread_ident' filepath='Python/thread_pthread.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_get_thread_ident'>
-      <return type-id='type-id-18'/>
+    <function-decl name='sched_getparam' mangled-name='sched_getparam' filepath='/usr/include/sched.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='Python/thread_pthread.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_start_new_thread'>
-      <parameter type-id='type-id-19' name='func' filepath='Python/thread_pthread.h' line='245' column='1'/>
-      <parameter type-id='type-id-20' name='arg' filepath='Python/thread_pthread.h' line='245' column='1'/>
-      <return type-id='type-id-18'/>
+    <function-decl name='sched_setscheduler' mangled-name='sched_setscheduler' filepath='/usr/include/sched.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyThread_init_thread' mangled-name='PyThread_init_thread' filepath='Python/thread.c' line='59' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyThread_init_thread'>
-      <return type-id='type-id-69'/>
+    <function-decl name='sched_getscheduler' mangled-name='sched_getscheduler' filepath='/usr/include/sched.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/traceback.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='PyTraceBack_Type' type-id='type-id-149' mangled-name='PyTraceBack_Type' visibility='default' filepath='./Include/traceback.h' line='13' column='1' elf-symbol-id='PyTraceBack_Type'/>
-    <function-decl name='PyTraceBack_Print' mangled-name='PyTraceBack_Print' filepath='Python/traceback.c' line='597' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Print'>
-      <parameter type-id='type-id-15' name='v' filepath='Python/traceback.c' line='597' column='1'/>
-      <parameter type-id='type-id-15' name='f' filepath='Python/traceback.c' line='597' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='sched_get_priority_min' mangled-name='sched_get_priority_min' filepath='/usr/include/sched.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_DisplaySourceLine' mangled-name='_Py_DisplaySourceLine' filepath='Python/traceback.c' line='373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DisplaySourceLine'>
-      <parameter type-id='type-id-15' name='f' filepath='Python/traceback.c' line='373' column='1'/>
-      <parameter type-id='type-id-15' name='filename' filepath='Python/traceback.c' line='373' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/traceback.c' line='373' column='1'/>
-      <parameter type-id='type-id-8' name='indent' filepath='Python/traceback.c' line='373' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='sched_get_priority_max' mangled-name='sched_get_priority_max' filepath='/usr/include/sched.h' line='71' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyTraceback_Add' mangled-name='_PyTraceback_Add' filepath='Python/traceback.c' line='258' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceback_Add'>
-      <parameter type-id='type-id-3' name='funcname' filepath='Python/traceback.c' line='258' column='1'/>
-      <parameter type-id='type-id-3' name='filename' filepath='Python/traceback.c' line='258' column='1'/>
-      <parameter type-id='type-id-8' name='lineno' filepath='Python/traceback.c' line='258' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='fork' mangled-name='fork' filepath='/usr/include/unistd.h' line='756' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyTraceBack_Here' mangled-name='PyTraceBack_Here' filepath='Python/traceback.c' line='243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceBack_Here'>
-      <parameter type-id='type-id-223' name='frame' filepath='Python/traceback.c' line='243' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fexecve' mangled-name='fexecve' filepath='/usr/include/unistd.h' line='557' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/getopt.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='_PyOS_opterr' type-id='type-id-8' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='8' column='1'/>
-    <var-decl name='_PyOS_optind' type-id='type-id-30' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='9' column='1'/>
-    <var-decl name='_PyOS_optarg' type-id='type-id-478' visibility='default' filepath='./Include/internal/pycore_getopt.h' line='10' column='1'/>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pystrcmp.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyOS_mystricmp' mangled-name='PyOS_mystricmp' filepath='Python/pystrcmp.c' line='22' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystricmp'>
-      <parameter type-id='type-id-3' name='s1' filepath='Python/pystrcmp.c' line='22' column='1'/>
-      <parameter type-id='type-id-3' name='s2' filepath='Python/pystrcmp.c' line='22' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='execve' mangled-name='execve' filepath='/usr/include/unistd.h' line='551' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_mystrnicmp' mangled-name='PyOS_mystrnicmp' filepath='Python/pystrcmp.c' line='7' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_mystrnicmp'>
-      <parameter type-id='type-id-3' name='s1' filepath='Python/pystrcmp.c' line='7' column='1'/>
-      <parameter type-id='type-id-3' name='s2' filepath='Python/pystrcmp.c' line='7' column='1'/>
-      <parameter type-id='type-id-30' name='size' filepath='Python/pystrcmp.c' line='7' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='execv' mangled-name='execv' filepath='/usr/include/unistd.h' line='563' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pystrtod.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='Python/pystrtod.c' line='1243' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_double_to_string'>
-      <parameter type-id='type-id-371' name='val' filepath='Python/pystrtod.c' line='1243' column='1'/>
-      <parameter type-id='type-id-1' name='format_code' filepath='Python/pystrtod.c' line='1244' column='1'/>
-      <parameter type-id='type-id-8' name='precision' filepath='Python/pystrtod.c' line='1245' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Python/pystrtod.c' line='1246' column='1'/>
-      <parameter type-id='type-id-452' name='type' filepath='Python/pystrtod.c' line='1247' column='1'/>
-      <return type-id='type-id-72'/>
+    <function-decl name='_exit' mangled-name='_exit' filepath='/usr/include/unistd.h' line='603' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-832' size-in-bits='64' id='type-id-833'/>
-    <function-decl name='_Py_string_to_number_with_underscores' mangled-name='_Py_string_to_number_with_underscores' filepath='Python/pystrtod.c' line='384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_string_to_number_with_underscores'>
-      <parameter type-id='type-id-3' name='s' filepath='Python/pystrtod.c' line='385' column='1'/>
-      <parameter type-id='type-id-30' name='orig_len' filepath='Python/pystrtod.c' line='385' column='1'/>
-      <parameter type-id='type-id-3' name='what' filepath='Python/pystrtod.c' line='385' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/pystrtod.c' line='385' column='1'/>
-      <parameter type-id='type-id-20' name='arg' filepath='Python/pystrtod.c' line='385' column='1'/>
-      <parameter type-id='type-id-833' name='innerfunc' filepath='Python/pystrtod.c' line='386' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_PyTime_ObjectToTimespec' mangled-name='_PyTime_ObjectToTimespec' filepath='./Include/cpython/pytime.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='Python/pystrtod.c' line='338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_string_to_double'>
-      <parameter type-id='type-id-3' name='s' filepath='Python/pystrtod.c' line='338' column='1'/>
-      <parameter type-id='type-id-215' name='endptr' filepath='Python/pystrtod.c' line='339' column='1'/>
-      <parameter type-id='type-id-15' name='overflow_exception' filepath='Python/pystrtod.c' line='340' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='futimens' mangled-name='futimens' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_parse_inf_or_nan' mangled-name='_Py_parse_inf_or_nan' filepath='Python/pystrtod.c' line='29' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_parse_inf_or_nan'>
-      <parameter type-id='type-id-3' name='p' filepath='Python/pystrtod.c' line='29' column='1'/>
-      <parameter type-id='type-id-215' name='endptr' filepath='Python/pystrtod.c' line='29' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='utimensat' mangled-name='utimensat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-type size-in-bits='64' id='type-id-832'>
-      <parameter type-id='type-id-3'/>
-      <parameter type-id='type-id-30'/>
-      <parameter type-id='type-id-20'/>
-      <return type-id='type-id-15'/>
-    </function-type>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/pystrhex.c' comp-dir-path='/src' language='LANG_C99'>
-    <qualified-type-def type-id='type-id-68' const='yes' id='type-id-834'/>
-    <pointer-type-def type-id='type-id-834' size-in-bits='64' id='type-id-835'/>
-    <function-decl name='_Py_strhex_bytes_with_sep' mangled-name='_Py_strhex_bytes_with_sep' filepath='Python/pystrhex.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes_with_sep'>
-      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-835' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-781' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='umask' mangled-name='umask' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_strhex_with_sep' mangled-name='_Py_strhex_with_sep' filepath='Python/pystrhex.c' line='162' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_with_sep'>
-      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-835' name='sep' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <parameter type-id='type-id-781' name='bytes_per_group' filepath='Python/pystrhex.c' line='169' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='system' mangled-name='system' filepath='/usr/include/stdlib.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_strhex_bytes' mangled-name='_Py_strhex_bytes' filepath='Python/pystrhex.c' line='155' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex_bytes'>
-      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='155' column='1'/>
-      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='155' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='unlinkat' mangled-name='unlinkat' filepath='/usr/include/unistd.h' line='829' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_strhex' mangled-name='_Py_strhex' filepath='Python/pystrhex.c' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_strhex'>
-      <parameter type-id='type-id-3' name='argbuf' filepath='Python/pystrhex.c' line='155' column='1'/>
-      <parameter type-id='type-id-193' name='arglen' filepath='Python/pystrhex.c' line='155' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='rmdir' mangled-name='rmdir' filepath='/usr/include/unistd.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/dtoa.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_Py_dg_dtoa' mangled-name='_Py_dg_dtoa' filepath='Python/dtoa.c' line='2247' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_dtoa'>
-      <parameter type-id='type-id-371' name='dd' filepath='Python/dtoa.c' line='2247' column='1'/>
-      <parameter type-id='type-id-8' name='mode' filepath='Python/dtoa.c' line='2247' column='1'/>
-      <parameter type-id='type-id-8' name='ndigits' filepath='Python/dtoa.c' line='2247' column='1'/>
-      <parameter type-id='type-id-452' name='decpt' filepath='Python/dtoa.c' line='2248' column='1'/>
-      <parameter type-id='type-id-452' name='sign' filepath='Python/dtoa.c' line='2248' column='1'/>
-      <parameter type-id='type-id-215' name='rve' filepath='Python/dtoa.c' line='2248' column='1'/>
-      <return type-id='type-id-72'/>
+    <function-decl name='setpriority' mangled-name='setpriority' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_dg_freedtoa' mangled-name='_Py_dg_freedtoa' filepath='Python/dtoa.c' line='2201' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_freedtoa'>
-      <parameter type-id='type-id-72' name='s' filepath='Python/dtoa.c' line='2201' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='getpriority' mangled-name='getpriority' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_dg_strtod' mangled-name='_Py_dg_strtod' filepath='Python/dtoa.c' line='1438' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_strtod'>
-      <parameter type-id='type-id-3' name='s00' filepath='Python/dtoa.c' line='1438' column='1'/>
-      <parameter type-id='type-id-215' name='se' filepath='Python/dtoa.c' line='1438' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='nice' mangled-name='nice' filepath='/usr/include/unistd.h' line='598' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_dg_infinity' mangled-name='_Py_dg_infinity' filepath='Python/dtoa.c' line='1429' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_infinity'>
-      <parameter type-id='type-id-8' name='sign' filepath='Python/dtoa.c' line='1429' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='mkdirat' mangled-name='mkdirat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_dg_stdnan' mangled-name='_Py_dg_stdnan' filepath='Python/dtoa.c' line='1415' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dg_stdnan'>
-      <parameter type-id='type-id-8' name='sign' filepath='Python/dtoa.c' line='1429' column='1'/>
-      <return type-id='type-id-371'/>
+    <function-decl name='mkdir' mangled-name='mkdir' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/formatter_unicode.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_PyComplex_FormatAdvancedWriter' mangled-name='_PyComplex_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1565' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyComplex_FormatAdvancedWriter'>
-      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='readdir' mangled-name='readdir64' filepath='/usr/include/dirent.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyFloat_FormatAdvancedWriter' mangled-name='_PyFloat_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyFloat_FormatAdvancedWriter'>
-      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='linkat' mangled-name='linkat' filepath='/usr/include/unistd.h' line='795' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyLong_FormatAdvancedWriter' mangled-name='_PyLong_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1464' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FormatAdvancedWriter'>
-      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1464' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/formatter_unicode.c' line='1465' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Python/formatter_unicode.c' line='1466' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Python/formatter_unicode.c' line='1467' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Python/formatter_unicode.c' line='1467' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='link' mangled-name='link' filepath='/usr/include/unistd.h' line='789' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyUnicode_FormatAdvancedWriter' mangled-name='_PyUnicode_FormatAdvancedWriter' filepath='Python/formatter_unicode.c' line='1428' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyUnicode_FormatAdvancedWriter'>
-      <parameter type-id='type-id-451' name='writer' filepath='Python/formatter_unicode.c' line='1565' column='1'/>
-      <parameter type-id='type-id-15' name='obj' filepath='Python/formatter_unicode.c' line='1566' column='1'/>
-      <parameter type-id='type-id-15' name='format_spec' filepath='Python/formatter_unicode.c' line='1567' column='1'/>
-      <parameter type-id='type-id-30' name='start' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <parameter type-id='type-id-30' name='end' filepath='Python/formatter_unicode.c' line='1568' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='lchown' mangled-name='lchown' filepath='/usr/include/unistd.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/fileutils.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_Py_closerange' mangled-name='_Py_closerange' filepath='Python/fileutils.c' line='2381' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_closerange'>
-      <parameter type-id='type-id-8' name='first' filepath='Python/fileutils.c' line='2381' column='1'/>
-      <parameter type-id='type-id-8' name='last' filepath='Python/fileutils.c' line='2381' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='fchown' mangled-name='fchown' filepath='/usr/include/unistd.h' line='478' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' filepath='/usr/include/locale.h' line='51' column='1' id='type-id-836'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='decimal_point' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='55' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='thousands_sep' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='56' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='grouping' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='62' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='int_curr_symbol' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='68' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='currency_symbol' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='69' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='mon_decimal_point' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='70' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='mon_thousands_sep' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='71' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='mon_grouping' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='72' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='positive_sign' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='73' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='negative_sign' type-id='type-id-72' visibility='default' filepath='/usr/include/locale.h' line='74' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='int_frac_digits' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='75' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='648'>
-        <var-decl name='frac_digits' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='76' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='656'>
-        <var-decl name='p_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='78' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='664'>
-        <var-decl name='p_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='80' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='672'>
-        <var-decl name='n_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='82' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='680'>
-        <var-decl name='n_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='84' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='688'>
-        <var-decl name='p_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='91' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='696'>
-        <var-decl name='n_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='92' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='int_p_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='95' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='712'>
-        <var-decl name='int_p_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='97' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='720'>
-        <var-decl name='int_n_cs_precedes' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='99' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='728'>
-        <var-decl name='int_n_sep_by_space' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='101' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='736'>
-        <var-decl name='int_p_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='108' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='744'>
-        <var-decl name='int_n_sign_posn' type-id='type-id-1' visibility='default' filepath='/usr/include/locale.h' line='109' column='1'/>
-      </data-member>
-    </class-decl>
-    <pointer-type-def type-id='type-id-836' size-in-bits='64' id='type-id-837'/>
-    <function-decl name='_Py_GetLocaleconvNumeric' mangled-name='_Py_GetLocaleconvNumeric' filepath='Python/fileutils.c' line='2265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleconvNumeric'>
-      <parameter type-id='type-id-837' name='lc' filepath='Python/fileutils.c' line='2265' column='1'/>
-      <parameter type-id='type-id-86' name='decimal_point' filepath='Python/fileutils.c' line='2266' column='1'/>
-      <parameter type-id='type-id-86' name='thousands_sep' filepath='Python/fileutils.c' line='2266' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='chown' mangled-name='chown' filepath='/usr/include/unistd.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='Python/fileutils.c' line='2188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_blocking'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2188' column='1'/>
-      <parameter type-id='type-id-8' name='blocking' filepath='Python/fileutils.c' line='2188' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fchownat' mangled-name='fchownat' filepath='/usr/include/unistd.h' line='491' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_get_blocking' mangled-name='_Py_get_blocking' filepath='Python/fileutils.c' line='2167' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_blocking'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2167' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fdatasync' mangled-name='fdatasync' filepath='/usr/include/unistd.h' line='1115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_dup' mangled-name='_Py_dup' filepath='Python/fileutils.c' line='2101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_dup'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='2101' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='sync' mangled-name='sync' filepath='/usr/include/unistd.h' line='970' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_wgetcwd' mangled-name='_Py_wgetcwd' filepath='Python/fileutils.c' line='2069' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wgetcwd'>
-      <parameter type-id='type-id-325' name='buf' filepath='Python/fileutils.c' line='2069' column='1'/>
-      <parameter type-id='type-id-157' name='buflen' filepath='Python/fileutils.c' line='2069' column='1'/>
-      <return type-id='type-id-325'/>
+    <function-decl name='fsync' mangled-name='fsync' filepath='/usr/include/unistd.h' line='954' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_abspath' mangled-name='_Py_abspath' filepath='Python/fileutils.c' line='1982' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_abspath'>
-      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1982' column='1'/>
-      <parameter type-id='type-id-329' name='abspath_p' filepath='Python/fileutils.c' line='1982' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='chroot' mangled-name='chroot' filepath='/usr/include/unistd.h' line='942' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_isabs' mangled-name='_Py_isabs' filepath='Python/fileutils.c' line='1969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_isabs'>
-      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1969' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='fchmod' mangled-name='fchmod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='293' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_wrealpath' mangled-name='_Py_wrealpath' filepath='Python/fileutils.c' line='1931' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wrealpath'>
-      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1931' column='1'/>
-      <parameter type-id='type-id-325' name='resolved_path' filepath='Python/fileutils.c' line='1932' column='1'/>
-      <parameter type-id='type-id-157' name='resolved_path_len' filepath='Python/fileutils.c' line='1932' column='1'/>
-      <return type-id='type-id-325'/>
+    <function-decl name='chmod' mangled-name='chmod' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_wreadlink' mangled-name='_Py_wreadlink' filepath='Python/fileutils.c' line='1882' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wreadlink'>
-      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1882' column='1'/>
-      <parameter type-id='type-id-325' name='buf' filepath='Python/fileutils.c' line='1882' column='1'/>
-      <parameter type-id='type-id-157' name='buflen' filepath='Python/fileutils.c' line='1882' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_write_noraise' mangled-name='_Py_write_noraise' filepath='Python/fileutils.c' line='1869' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write_noraise'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <parameter type-id='type-id-20' name='buf' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='_Py_write' mangled-name='_Py_write' filepath='Python/fileutils.c' line='1849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_write'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <parameter type-id='type-id-20' name='buf' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1869' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='_Py_read' mangled-name='_Py_read' filepath='Python/fileutils.c' line='1720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_read'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1720' column='1'/>
-      <parameter type-id='type-id-20' name='buf' filepath='Python/fileutils.c' line='1720' column='1'/>
-      <parameter type-id='type-id-157' name='count' filepath='Python/fileutils.c' line='1720' column='1'/>
-      <return type-id='type-id-30'/>
-    </function-decl>
-    <function-decl name='_Py_fopen_obj' mangled-name='_Py_fopen_obj' filepath='Python/fileutils.c' line='1621' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fopen_obj'>
-      <parameter type-id='type-id-15' name='path' filepath='Python/fileutils.c' line='1621' column='1'/>
-      <parameter type-id='type-id-3' name='mode' filepath='Python/fileutils.c' line='1621' column='1'/>
-      <return type-id='type-id-188'/>
+    <function-decl name='fchmodat' mangled-name='fchmodat' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_wfopen' mangled-name='_Py_wfopen' filepath='Python/fileutils.c' line='1573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_wfopen'>
-      <parameter type-id='type-id-478' name='path' filepath='Python/fileutils.c' line='1573' column='1'/>
-      <parameter type-id='type-id-478' name='mode' filepath='Python/fileutils.c' line='1573' column='1'/>
-      <return type-id='type-id-188'/>
+    <function-decl name='fchdir' mangled-name='fchdir' filepath='/usr/include/unistd.h' line='501' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_open_noraise' mangled-name='_Py_open_noraise' filepath='Python/fileutils.c' line='1561' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open_noraise'>
-      <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1561' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1561' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='chdir' mangled-name='chdir' filepath='/usr/include/unistd.h' line='497' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_open' mangled-name='_Py_open' filepath='Python/fileutils.c' line='1547' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_open'>
-      <parameter type-id='type-id-3' name='pathname' filepath='Python/fileutils.c' line='1561' column='1'/>
-      <parameter type-id='type-id-8' name='flags' filepath='Python/fileutils.c' line='1561' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='ctermid' mangled-name='ctermid' filepath='/usr/include/stdio.h' line='812' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_set_inheritable_async_safe' mangled-name='_Py_set_inheritable_async_safe' filepath='Python/fileutils.c' line='1470' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable_async_safe'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <parameter type-id='type-id-452' name='atomic_flag_works' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='__ttyname_r_alias' mangled-name='ttyname_r' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_set_inheritable' mangled-name='_Py_set_inheritable' filepath='Python/fileutils.c' line='1461' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_set_inheritable'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <parameter type-id='type-id-8' name='inheritable' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <parameter type-id='type-id-452' name='atomic_flag_works' filepath='Python/fileutils.c' line='1470' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='faccessat' mangled-name='faccessat' filepath='/usr/include/unistd.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_get_inheritable' mangled-name='_Py_get_inheritable' filepath='Python/fileutils.c' line='1295' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_get_inheritable'>
-      <parameter type-id='type-id-8' name='c1' filepath='Parser/token.c' line='79' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='access' mangled-name='access' filepath='/usr/include/unistd.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <class-decl name='stat' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='46' column='1' id='type-id-838'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='st_dev' type-id='type-id-839' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='48' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='st_ino' type-id='type-id-840' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='53' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='st_nlink' type-id='type-id-841' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='61' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='st_mode' type-id='type-id-842' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='62' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='224'>
-        <var-decl name='st_uid' type-id='type-id-843' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='64' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='st_gid' type-id='type-id-844' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='65' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='__pad0' type-id='type-id-8' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='67' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='st_rdev' type-id='type-id-839' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='69' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='st_size' type-id='type-id-172' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='74' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='st_blksize' type-id='type-id-845' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='78' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='st_blocks' type-id='type-id-846' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='80' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='st_atim' type-id='type-id-807' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='91' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='st_mtim' type-id='type-id-807' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='92' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='st_ctim' type-id='type-id-807' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='93' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='960'>
-        <var-decl name='__glibc_reserved' type-id='type-id-847' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='106' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='__dev_t' type-id='type-id-18' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-839'/>
-    <typedef-decl name='__ino_t' type-id='type-id-18' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-840'/>
-    <typedef-decl name='__nlink_t' type-id='type-id-18' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-841'/>
-    <typedef-decl name='__mode_t' type-id='type-id-65' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-842'/>
-    <typedef-decl name='__uid_t' type-id='type-id-65' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='146' column='1' id='type-id-843'/>
-    <typedef-decl name='__gid_t' type-id='type-id-65' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-844'/>
-    <typedef-decl name='__blksize_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='174' column='1' id='type-id-845'/>
-    <typedef-decl name='__blkcnt_t' type-id='type-id-32' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='179' column='1' id='type-id-846'/>
-
-    <array-type-def dimensions='1' type-id='type-id-808' size-in-bits='192' id='type-id-847'>
-      <subrange length='3' type-id='type-id-18' id='type-id-322'/>
-
-    </array-type-def>
-    <pointer-type-def type-id='type-id-838' size-in-bits='64' id='type-id-848'/>
-    <function-decl name='_Py_stat' mangled-name='_Py_stat' filepath='Python/fileutils.c' line='1213' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_stat'>
-      <parameter type-id='type-id-15' name='path' filepath='Python/fileutils.c' line='1213' column='1'/>
-      <parameter type-id='type-id-848' name='statbuf' filepath='Python/fileutils.c' line='1213' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_fstat' mangled-name='_Py_fstat' filepath='Python/fileutils.c' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1185' column='1'/>
-      <parameter type-id='type-id-848' name='status' filepath='Python/fileutils.c' line='1185' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_fstat_noraise' mangled-name='_Py_fstat_noraise' filepath='Python/fileutils.c' line='1118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_fstat_noraise'>
-      <parameter type-id='type-id-8' name='fd' filepath='Python/fileutils.c' line='1118' column='1'/>
-      <parameter type-id='type-id-848' name='status' filepath='Python/fileutils.c' line='1118' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_GetLocaleEncodingObject' mangled-name='_Py_GetLocaleEncodingObject' filepath='Python/fileutils.c' line='922' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleEncodingObject'>
-      <return type-id='type-id-15'/>
-    </function-decl>
-    <function-decl name='_Py_GetLocaleEncoding' mangled-name='_Py_GetLocaleEncoding' filepath='Python/fileutils.c' line='882' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetLocaleEncoding'>
-      <return type-id='type-id-325'/>
+    <function-decl name='setgroups' mangled-name='setgroups' filepath='/usr/include/grp.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <pointer-type-def type-id='type-id-157' size-in-bits='64' id='type-id-849'/>
-    <function-decl name='_Py_EncodeLocaleEx' mangled-name='_Py_EncodeLocaleEx' filepath='Python/fileutils.c' line='861' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleEx'>
-      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='861' column='1'/>
-      <parameter type-id='type-id-215' name='str' filepath='Python/fileutils.c' line='861' column='1'/>
-      <parameter type-id='type-id-849' name='error_pos' filepath='Python/fileutils.c' line='862' column='1'/>
-      <parameter type-id='type-id-198' name='reason' filepath='Python/fileutils.c' line='862' column='1'/>
-      <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='863' column='1'/>
-      <parameter type-id='type-id-366' name='errors' filepath='Python/fileutils.c' line='863' column='1'/>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_Py_EncodeLocaleRaw' mangled-name='_Py_EncodeLocaleRaw' filepath='Python/fileutils.c' line='854' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_EncodeLocaleRaw'>
-      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='854' column='1'/>
-      <parameter type-id='type-id-849' name='error_pos' filepath='Python/fileutils.c' line='854' column='1'/>
-      <return type-id='type-id-72'/>
+    <function-decl name='PyMapping_Size' mangled-name='PyMapping_Size' filepath='./Include/abstract.h' line='789' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_EncodeLocale' mangled-name='Py_EncodeLocale' filepath='Python/fileutils.c' line='845' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_EncodeLocale'>
-      <parameter type-id='type-id-478' name='text' filepath='Python/fileutils.c' line='854' column='1'/>
-      <parameter type-id='type-id-849' name='error_pos' filepath='Python/fileutils.c' line='854' column='1'/>
-      <return type-id='type-id-72'/>
+    <function-decl name='PyMapping_Values' mangled-name='PyMapping_Values' filepath='./Include/abstract.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_DecodeLocale' mangled-name='Py_DecodeLocale' filepath='Python/fileutils.c' line='643' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_DecodeLocale'>
-      <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='643' column='1'/>
-      <parameter type-id='type-id-849' name='wlen' filepath='Python/fileutils.c' line='643' column='1'/>
-      <return type-id='type-id-325'/>
+    <function-decl name='PyBytes_FromFormat' mangled-name='PyBytes_FromFormat' filepath='./Include/bytesobject.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_DecodeLocaleEx' mangled-name='_Py_DecodeLocaleEx' filepath='Python/fileutils.c' line='581' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_DecodeLocaleEx'>
-      <parameter type-id='type-id-3' name='arg' filepath='Python/fileutils.c' line='581' column='1'/>
-      <parameter type-id='type-id-329' name='wstr' filepath='Python/fileutils.c' line='581' column='1'/>
-      <parameter type-id='type-id-849' name='wlen' filepath='Python/fileutils.c' line='581' column='1'/>
-      <parameter type-id='type-id-198' name='reason' filepath='Python/fileutils.c' line='582' column='1'/>
-      <parameter type-id='type-id-8' name='current_locale' filepath='Python/fileutils.c' line='583' column='1'/>
-      <parameter type-id='type-id-366' name='errors' filepath='Python/fileutils.c' line='583' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyLong_AsTime_t' mangled-name='_PyLong_AsTime_t' filepath='./Include/cpython/pytime.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_ResetForceASCII' mangled-name='_Py_ResetForceASCII' filepath='Python/fileutils.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_ResetForceASCII'>
-      <return type-id='type-id-69'/>
+    <function-decl name='uname' mangled-name='uname' filepath='/usr/include/x86_64-linux-gnu/sys/utsname.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_GetForceASCII' mangled-name='_Py_GetForceASCII' filepath='Python/fileutils.c' line='290' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_GetForceASCII'>
-      <return type-id='type-id-8'/>
+    <function-decl name='rename' mangled-name='rename' filepath='/usr/include/stdio.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_device_encoding' mangled-name='_Py_device_encoding' filepath='Python/fileutils.c' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_device_encoding'>
-      <parameter type-id='type-id-8' name='fd' filepath='Objects/fileobject.c' line='329' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='renameat' mangled-name='renameat' filepath='/usr/include/stdio.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Python/suggestions.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='_Py_UTF8_Edit_Cost' mangled-name='_Py_UTF8_Edit_Cost' filepath='Python/suggestions.c' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_UTF8_Edit_Cost'>
-      <parameter type-id='type-id-15' name='a' filepath='Python/suggestions.c' line='264' column='1'/>
-      <parameter type-id='type-id-15' name='b' filepath='Python/suggestions.c' line='264' column='1'/>
-      <parameter type-id='type-id-30' name='max_cost' filepath='Python/suggestions.c' line='264' column='1'/>
-      <return type-id='type-id-30'/>
+    <function-decl name='_PyLong_FromTime_t' mangled-name='_PyLong_FromTime_t' filepath='./Include/cpython/pytime.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='./Python/dynload_shlib.c' comp-dir-path='/src' language='LANG_C99'>
-
-    <array-type-def dimensions='1' type-id='type-id-3' size-in-bits='infinite' id='type-id-850'>
-      <subrange length='infinite' id='type-id-6'/>
-
-    </array-type-def>
-    <var-decl name='_PyImport_DynLoadFiletab' type-id='type-id-850' visibility='default' filepath='./Python/importdl.h' line='9' column='1'/>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Modules/main.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='Py_BytesMain' mangled-name='Py_BytesMain' filepath='Modules/main.c' line='713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_BytesMain'>
-      <parameter type-id='type-id-8' name='argc' filepath='Modules/main.c' line='713' column='1'/>
-      <parameter type-id='type-id-215' name='argv' filepath='Modules/main.c' line='713' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='sigaddset' mangled-name='sigaddset' filepath='/usr/include/signal.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_Main' mangled-name='Py_Main' filepath='Modules/main.c' line='701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_Main'>
-      <parameter type-id='type-id-8' name='argc' filepath='Modules/main.c' line='701' column='1'/>
-      <parameter type-id='type-id-329' name='argv' filepath='Modules/main.c' line='701' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyGILState_Reinit' mangled-name='_PyGILState_Reinit' filepath='./Include/internal/pycore_pystate.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='Py_RunMain' mangled-name='Py_RunMain' filepath='Modules/main.c' line='662' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='Py_RunMain'>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyEval_ReInitThreads' mangled-name='_PyEval_ReInitThreads' filepath='./Include/internal/pycore_ceval.h' line='28' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='Modules/gcmodule.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyObject_GC_IsFinalized' mangled-name='PyObject_GC_IsFinalized' filepath='Modules/gcmodule.c' line='2358' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsFinalized'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyImport_ReInitLock' mangled-name='_PyImport_ReInitLock' filepath='./Include/internal/pycore_import.h' line='9' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyObject_GC_IsTracked' mangled-name='PyObject_GC_IsTracked' filepath='Modules/gcmodule.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_IsTracked'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PySignal_AfterFork' mangled-name='_PySignal_AfterFork' filepath='./Include/internal/pycore_pystate.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyObject_GC_Del' mangled-name='PyObject_GC_Del' filepath='Modules/gcmodule.c' line='2335' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Del'>
-      <parameter type-id='type-id-20' name='op' filepath='Modules/gcmodule.c' line='2335' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='_PyRuntimeState_ReInitThreads' mangled-name='_PyRuntimeState_ReInitThreads' filepath='./Include/internal/pycore_runtime.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GC_Resize' mangled-name='_PyObject_GC_Resize' filepath='Modules/gcmodule.c' line='2317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Resize'>
-      <parameter type-id='type-id-474' name='op' filepath='Modules/gcmodule.c' line='2317' column='1'/>
-      <parameter type-id='type-id-30' name='nitems' filepath='Modules/gcmodule.c' line='2317' column='1'/>
-      <return type-id='type-id-474'/>
+    <function-decl name='_PyInterpreterState_DeleteExceptMain' mangled-name='_PyInterpreterState_DeleteExceptMain' filepath='./Include/internal/pycore_pystate.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GC_NewVar' mangled-name='_PyObject_GC_NewVar' filepath='Modules/gcmodule.c' line='2298' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_NewVar'>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='192' column='1'/>
-      <parameter type-id='type-id-30' name='nitems' filepath='Objects/object.c' line='192' column='1'/>
-      <return type-id='type-id-474'/>
+    <function-decl name='__readlinkat_alias' mangled-name='readlinkat' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GC_New' mangled-name='_PyObject_GC_New' filepath='Modules/gcmodule.c' line='2287' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_New'>
-      <parameter type-id='type-id-31' name='tp' filepath='Objects/object.c' line='181' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='_Py_set_blocking' mangled-name='_Py_set_blocking' filepath='./Include/cpython/fileutils.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GC_Calloc' mangled-name='_PyObject_GC_Calloc' filepath='Modules/gcmodule.c' line='2281' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Calloc'>
-      <parameter type-id='type-id-157' name='basicsize' filepath='Modules/gcmodule.c' line='2281' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='ftruncate' mangled-name='ftruncate64' filepath='/usr/include/unistd.h' line='1017' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyObject_GC_Malloc' mangled-name='_PyObject_GC_Malloc' filepath='Modules/gcmodule.c' line='2275' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyObject_GC_Malloc'>
-      <parameter type-id='type-id-157' name='basicsize' filepath='Modules/gcmodule.c' line='2281' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='unlink' mangled-name='unlink' filepath='/usr/include/unistd.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyObject_IS_GC' mangled-name='PyObject_IS_GC' filepath='Modules/gcmodule.c' line='2230' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_IS_GC'>
-      <parameter type-id='type-id-15' name='o' filepath='Objects/abstract.c' line='2310' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='_PyImport_ReleaseLock' mangled-name='_PyImport_ReleaseLock' filepath='./Include/cpython/import.h' line='14' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyObject_GC_UnTrack' mangled-name='PyObject_GC_UnTrack' filepath='Modules/gcmodule.c' line='2218' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_UnTrack'>
-      <parameter type-id='type-id-20' name='op_raw' filepath='Modules/gcmodule.c' line='2218' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='__fxstatat' mangled-name='__fxstatat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='415' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyObject_GC_Track' mangled-name='PyObject_GC_Track' filepath='Modules/gcmodule.c' line='2199' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyObject_GC_Track'>
-      <parameter type-id='type-id-20' name='op' filepath='Modules/gcmodule.c' line='2335' column='1'/>
-      <return type-id='type-id-69'/>
+    <function-decl name='__lxstat' mangled-name='__lxstat64' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGC_Collect' mangled-name='PyGC_Collect' filepath='Modules/gcmodule.c' line='2081' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Collect'>
-      <return type-id='type-id-30'/>
+    <function-decl name='__getgroups_alias' mangled-name='getgroups' filepath='/usr/include/x86_64-linux-gnu/bits/unistd.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGC_IsEnabled' mangled-name='PyGC_IsEnabled' filepath='Modules/gcmodule.c' line='2073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_IsEnabled'>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawn_file_actions_addclose' mangled-name='posix_spawn_file_actions_addclose' filepath='/usr/include/spawn.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGC_Disable' mangled-name='PyGC_Disable' filepath='Modules/gcmodule.c' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Disable'>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawn_file_actions_adddup2' mangled-name='posix_spawn_file_actions_adddup2' filepath='/usr/include/spawn.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyGC_Enable' mangled-name='PyGC_Enable' filepath='Modules/gcmodule.c' line='2055' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyGC_Enable'>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawn_file_actions_addopen' mangled-name='posix_spawn_file_actions_addopen' filepath='/usr/include/spawn.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyInit_gc' mangled-name='PyInit_gc' filepath='Modules/gcmodule.c' line='2048' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_gc'>
-      <return type-id='type-id-15'/>
+    <function-decl name='posix_spawn_file_actions_init' mangled-name='posix_spawn_file_actions_init' filepath='/usr/include/spawn.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-  </abi-instr>
-  <abi-instr version='1.0' address-size='64' path='./Modules/posixmodule.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyInit_posix' mangled-name='PyInit_posix' filepath='./Modules/posixmodule.c' line='15815' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_posix'>
-      <return type-id='type-id-15'/>
+    <function-decl name='posix_spawnattr_setpgroup' mangled-name='posix_spawnattr_setpgroup' filepath='/usr/include/spawn.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_FSPath' mangled-name='PyOS_FSPath' filepath='./Modules/posixmodule.c' line='14351' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_FSPath'>
-      <parameter type-id='type-id-15' name='v' filepath='Objects/abstract.c' line='2129' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='posix_spawnattr_setsigmask' mangled-name='posix_spawnattr_setsigmask' filepath='/usr/include/spawn.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.c' line='1501' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Sigset_Converter'>
-      <parameter type-id='type-id-15' name='obj' filepath='./Modules/posixmodule.c' line='1501' column='1'/>
-      <parameter type-id='type-id-20' name='addr' filepath='./Modules/posixmodule.c' line='1501' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawnattr_setsigdefault' mangled-name='posix_spawnattr_setsigdefault' filepath='/usr/include/spawn.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <typedef-decl name='gid_t' type-id='type-id-844' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='64' column='1' id='type-id-851'/>
-    <pointer-type-def type-id='type-id-851' size-in-bits='64' id='type-id-852'/>
-    <function-decl name='_Py_Gid_Converter' mangled-name='_Py_Gid_Converter' filepath='./Modules/posixmodule.c' line='789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Gid_Converter'>
-      <parameter type-id='type-id-15' name='obj' filepath='./Modules/posixmodule.c' line='789' column='1'/>
-      <parameter type-id='type-id-852' name='p' filepath='./Modules/posixmodule.c' line='789' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawnattr_setschedpolicy' mangled-name='posix_spawnattr_setschedpolicy' filepath='/usr/include/spawn.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <typedef-decl name='uid_t' type-id='type-id-843' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-853'/>
-    <pointer-type-def type-id='type-id-853' size-in-bits='64' id='type-id-854'/>
-    <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.c' line='683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_Uid_Converter'>
-      <parameter type-id='type-id-15' name='obj' filepath='./Modules/posixmodule.c' line='683' column='1'/>
-      <parameter type-id='type-id-854' name='p' filepath='./Modules/posixmodule.c' line='683' column='1'/>
-      <return type-id='type-id-8'/>
+    <function-decl name='posix_spawnattr_setschedparam' mangled-name='posix_spawnattr_setschedparam' filepath='/usr/include/spawn.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.c' line='675' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromGid'>
-      <parameter type-id='type-id-851' name='gid' filepath='./Modules/posixmodule.c' line='675' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='posix_spawnattr_init' mangled-name='posix_spawnattr_init' filepath='/usr/include/spawn.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.c' line='667' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyLong_FromUid'>
-      <parameter type-id='type-id-853' name='uid' filepath='./Modules/posixmodule.c' line='667' column='1'/>
-      <return type-id='type-id-15'/>
+    <function-decl name='posix_spawnattr_destroy' mangled-name='posix_spawnattr_destroy' filepath='/usr/include/spawn.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_AfterFork' mangled-name='PyOS_AfterFork' filepath='./Modules/posixmodule.c' line='649' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork'>
-      <return type-id='type-id-69'/>
+    <function-decl name='posix_spawnattr_setflags' mangled-name='posix_spawnattr_setflags' filepath='/usr/include/spawn.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_AfterFork_Child' mangled-name='PyOS_AfterFork_Child' filepath='./Modules/posixmodule.c' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Child'>
-      <return type-id='type-id-69'/>
+    <function-decl name='posix_spawn_file_actions_destroy' mangled-name='posix_spawn_file_actions_destroy' filepath='/usr/include/spawn.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_AfterFork_Parent' mangled-name='PyOS_AfterFork_Parent' filepath='./Modules/posixmodule.c' line='580' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_AfterFork_Parent'>
-      <return type-id='type-id-69'/>
+    <function-decl name='posix_spawnp' mangled-name='posix_spawnp' filepath='/usr/include/spawn.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
-    <function-decl name='PyOS_BeforeFork' mangled-name='PyOS_BeforeFork' filepath='./Modules/posixmodule.c' line='572' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_BeforeFork'>
-      <return type-id='type-id-69'/>
+    <function-decl name='posix_spawn' mangled-name='posix_spawn' filepath='/usr/include/spawn.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/errnomodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_errno' mangled-name='PyInit_errno' filepath='./Modules/errnomodule.c' line='957' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_errno'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/pwdmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_pwd' mangled-name='PyInit_pwd' filepath='./Modules/pwdmodule.c' line='370' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_pwd'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModule_AddType' mangled-name='PyModule_AddType' filepath='./Include/modsupport.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getpwuid_r' mangled-name='getpwuid_r' filepath='/usr/include/pwd.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromUid' mangled-name='_PyLong_FromUid' filepath='./Modules/posixmodule.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_Uid_Converter' mangled-name='_Py_Uid_Converter' filepath='./Modules/posixmodule.h' line='17' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_FromGid' mangled-name='_PyLong_FromGid' filepath='./Modules/posixmodule.h' line='16' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='endpwent' mangled-name='endpwent' filepath='/usr/include/pwd.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setpwent' mangled-name='setpwent' filepath='/usr/include/pwd.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getpwent' mangled-name='getpwent' filepath='/usr/include/pwd.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getpwnam_r' mangled-name='getpwnam_r' filepath='/usr/include/pwd.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_sre.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__sre' mangled-name='PyInit__sre' filepath='./Modules/_sre.c' line='2962' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__sre'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModule_AddStringConstant' mangled-name='PyModule_AddStringConstant' filepath='./Include/modsupport.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToLowercase' mangled-name='_PyUnicode_ToLowercase' filepath='./Include/cpython/unicodeobject.h' line='1076' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_ToUppercase' mangled-name='_PyUnicode_ToUppercase' filepath='./Include/cpython/unicodeobject.h' line='1080' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyBytes_Join' mangled-name='_PyBytes_Join' filepath='./Include/cpython/bytesobject.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__ctype_toupper_loc' mangled-name='__ctype_toupper_loc' filepath='/usr/include/ctype.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallObject' mangled-name='PyObject_CallObject' filepath='./Include/abstract.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_codecsmodule.c' comp-dir-path='/src' language='LANG_C99'>
-    <function-decl name='PyInit__codecs' mangled-name='PyInit__codecs' filepath='./Modules/_codecsmodule.c' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__codecs'>
-      <return type-id='type-id-15'/>
+    <function-decl name='PyInit__codecs' mangled-name='PyInit__codecs' filepath='./Modules/_codecsmodule.c' line='1064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__codecs'>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyCodec_Unregister' mangled-name='PyCodec_Unregister' filepath='./Include/codecs.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_Register' mangled-name='PyCodec_Register' filepath='./Include/codecs.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyCodec_RegisterError' mangled-name='PyCodec_RegisterError' filepath='./Include/codecs.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EncodeCharmap' mangled-name='_PyUnicode_EncodeCharmap' filepath='./Include/cpython/unicodeobject.h' line='901' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_AsLatin1String' mangled-name='_PyUnicode_AsLatin1String' filepath='./Include/cpython/unicodeobject.h' line='870' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsRawUnicodeEscapeString' mangled-name='PyUnicode_AsRawUnicodeEscapeString' filepath='./Include/unicodeobject.h' line='626' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUnicodeEscapeString' mangled-name='PyUnicode_AsUnicodeEscapeString' filepath='./Include/unicodeobject.h' line='614' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EncodeUTF32' mangled-name='_PyUnicode_EncodeUTF32' filepath='./Include/cpython/unicodeobject.h' line='795' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EncodeUTF16' mangled-name='_PyUnicode_EncodeUTF16' filepath='./Include/cpython/unicodeobject.h' line='829' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_EncodeUTF7' mangled-name='_PyUnicode_EncodeUTF7' filepath='./Include/cpython/unicodeobject.h' line='767' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='./Include/unicodeobject.h' line='677' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeRawUnicodeEscape' mangled-name='PyUnicode_DecodeRawUnicodeEscape' filepath='./Include/unicodeobject.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyUnicode_DecodeUnicodeEscapeStateful' mangled-name='_PyUnicode_DecodeUnicodeEscapeStateful' filepath='./Include/cpython/unicodeobject.h' line='838' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUTF32Stateful' mangled-name='PyUnicode_DecodeUTF32Stateful' filepath='./Include/unicodeobject.h' line='522' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='./Include/unicodeobject.h' line='589' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_DecodeUTF7Stateful' mangled-name='PyUnicode_DecodeUTF7Stateful' filepath='./Include/unicodeobject.h' line='445' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_DecodeEscape' mangled-name='PyBytes_DecodeEscape' filepath='./Include/bytesobject.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_BuildEncodingMap' mangled-name='PyUnicode_BuildEncodingMap' filepath='./Include/unicodeobject.h' line='433' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_weakref.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__weakref' mangled-name='PyInit__weakref' filepath='./Modules/_weakref.c' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__weakref'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyWeakref_NewProxy' mangled-name='PyWeakref_NewProxy' filepath='./Include/weakrefobject.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyWeakref_GetWeakrefCount' mangled-name='_PyWeakref_GetWeakrefCount' filepath='./Include/weakrefobject.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_DelItemIf' mangled-name='_PyDict_DelItemIf' filepath='./Include/cpython/dictobject.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_functoolsmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__functools' mangled-name='PyInit__functools' filepath='./Modules/_functoolsmodule.c' line='1534' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__functools'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyType_GetModuleByDef' mangled-name='_PyType_GetModuleByDef' filepath='./Include/cpython/object.h' line='307' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyDict_Pop_KnownHash' mangled-name='_PyDict_Pop_KnownHash' filepath='./Include/cpython/dictobject.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Concat' mangled-name='PySequence_Concat' filepath='./Include/abstract.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyDict_Merge' mangled-name='PyDict_Merge' filepath='./Include/dictobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_operator.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__operator' mangled-name='PyInit__operator' filepath='./Modules/_operator.c' line='1805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__operator'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='./Include/object.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_Count' mangled-name='PySequence_Count' filepath='./Include/abstract.h' line='738' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySequence_InPlaceConcat' mangled-name='PySequence_InPlaceConcat' filepath='./Include/abstract.h' line='771' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_collectionsmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__collections' mangled-name='PyInit__collections' filepath='./Modules/_collectionsmodule.c' line='2638' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__collections'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PySequence_GetSlice' mangled-name='PySequence_GetSlice' filepath='./Include/abstract.h' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyArg_ParseStack' mangled-name='_PyArg_ParseStack' filepath='./Include/modsupport.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyType_LookupId' mangled-name='_PyType_LookupId' filepath='./Include/cpython/object.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_abc.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__abc' mangled-name='PyInit__abc' filepath='./Modules/_abc.c' line='971' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__abc'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PySet_Clear' mangled-name='PySet_Clear' filepath='./Include/setobject.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PySet_Size' mangled-name='PySet_Size' filepath='./Include/setobject.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMapping_Items' mangled-name='PyMapping_Items' filepath='./Include/abstract.h' line='843' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/itertoolsmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_itertools' mangled-name='PyInit_itertools' filepath='./Modules/itertoolsmodule.c' line='4904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_itertools'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/atexitmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_atexit' mangled-name='PyInit_atexit' filepath='./Modules/atexitmodule.c' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_atexit'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/signalmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='_PyOS_IsMainThread' mangled-name='_PyOS_IsMainThread' filepath='./Modules/signalmodule.c' line='2027' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_IsMainThread'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyOS_InterruptOccurred' mangled-name='PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1994' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyOS_InterruptOccurred'>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <class-decl name='_ts' size-in-bits='2240' is-struct='yes' visibility='default' filepath='./Include/cpython/pystate.h' line='62' column='1' id='type-id-855'>
-      <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='prev' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='65' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='next' type-id='type-id-10' visibility='default' filepath='./Include/cpython/pystate.h' line='66' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='interp' type-id='type-id-222' visibility='default' filepath='./Include/cpython/pystate.h' line='67' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='192'>
-        <var-decl name='frame' type-id='type-id-12' visibility='default' filepath='./Include/cpython/pystate.h' line='70' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='256'>
-        <var-decl name='recursion_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='71' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='288'>
-        <var-decl name='recursion_headroom' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='72' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='320'>
-        <var-decl name='stackcheck_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='73' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='352'>
-        <var-decl name='tracing' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='78' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='384'>
-        <var-decl name='cframe' type-id='type-id-13' visibility='default' filepath='./Include/cpython/pystate.h' line='82' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='448'>
-        <var-decl name='c_profilefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='84' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='512'>
-        <var-decl name='c_tracefunc' type-id='type-id-14' visibility='default' filepath='./Include/cpython/pystate.h' line='85' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='576'>
-        <var-decl name='c_profileobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='86' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='640'>
-        <var-decl name='c_traceobj' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='87' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='704'>
-        <var-decl name='curexc_type' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='90' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='768'>
-        <var-decl name='curexc_value' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='91' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='832'>
-        <var-decl name='curexc_traceback' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='92' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='896'>
-        <var-decl name='exc_state' type-id='type-id-16' visibility='default' filepath='./Include/cpython/pystate.h' line='97' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1152'>
-        <var-decl name='exc_info' type-id='type-id-17' visibility='default' filepath='./Include/cpython/pystate.h' line='101' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1216'>
-        <var-decl name='dict' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='103' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1280'>
-        <var-decl name='gilstate_counter' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='105' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1344'>
-        <var-decl name='async_exc' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='107' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1408'>
-        <var-decl name='thread_id' type-id='type-id-18' visibility='default' filepath='./Include/cpython/pystate.h' line='108' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1472'>
-        <var-decl name='trash_delete_nesting' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='110' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1536'>
-        <var-decl name='trash_delete_later' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='111' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1600'>
-        <var-decl name='on_delete' type-id='type-id-19' visibility='default' filepath='./Include/cpython/pystate.h' line='136' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1664'>
-        <var-decl name='on_delete_data' type-id='type-id-20' visibility='default' filepath='./Include/cpython/pystate.h' line='137' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1728'>
-        <var-decl name='coroutine_origin_tracking_depth' type-id='type-id-8' visibility='default' filepath='./Include/cpython/pystate.h' line='139' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1792'>
-        <var-decl name='async_gen_firstiter' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='141' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1856'>
-        <var-decl name='async_gen_finalizer' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='142' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1920'>
-        <var-decl name='context' type-id='type-id-15' visibility='default' filepath='./Include/cpython/pystate.h' line='144' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='1984'>
-        <var-decl name='context_ver' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='145' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='2048'>
-        <var-decl name='id' type-id='type-id-21' visibility='default' filepath='./Include/cpython/pystate.h' line='148' column='1'/>
-      </data-member>
-      <data-member access='public' layout-offset-in-bits='2112'>
-        <var-decl name='root_cframe' type-id='type-id-22' visibility='default' filepath='./Include/cpython/pystate.h' line='150' column='1'/>
-      </data-member>
-    </class-decl>
-    <typedef-decl name='PyThreadState' type-id='type-id-855' filepath='./Include/pystate.h' line='20' column='1' id='type-id-856'/>
-    <pointer-type-def type-id='type-id-856' size-in-bits='64' id='type-id-857'/>
-    <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_InterruptOccurred'>
-      <parameter type-id='type-id-857' name='tstate' filepath='./Modules/signalmodule.c' line='1976' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_Py_RestoreSignals' mangled-name='_Py_RestoreSignals' filepath='./Modules/signalmodule.c' line='1914' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Py_RestoreSignals'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_SetInterrupt' mangled-name='PyErr_SetInterrupt' filepath='./Modules/signalmodule.c' line='1876' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterrupt'>
-      <return type-id='type-id-69'/>
+      <return type-id='type-id-4'/>
     </function-decl>
     <function-decl name='PyErr_SetInterruptEx' mangled-name='PyErr_SetInterruptEx' filepath='./Modules/signalmodule.c' line='1861' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_SetInterruptEx'>
-      <parameter type-id='type-id-8' name='signum' filepath='./Modules/signalmodule.c' line='1861' column='1'/>
-      <return type-id='type-id-8'/>
+      <parameter type-id='type-id-9' name='signum' filepath='./Modules/signalmodule.c' line='1861' column='1'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='_PyErr_CheckSignals' mangled-name='_PyErr_CheckSignals' filepath='./Modules/signalmodule.c' line='1849' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignals'>
-      <return type-id='type-id-8'/>
-    </function-decl>
-    <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Modules/signalmodule.c' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignalsTstate'>
-      <parameter type-id='type-id-857' name='tstate' filepath='./Modules/signalmodule.c' line='1767' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyErr_CheckSignals' mangled-name='PyErr_CheckSignals' filepath='./Modules/signalmodule.c' line='1754' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyErr_CheckSignals'>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyInit__signal' mangled-name='PyInit__signal' filepath='./Modules/signalmodule.c' line='1714' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__signal'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyErr_CheckSignalsTstate' mangled-name='_PyErr_CheckSignalsTstate' filepath='./Modules/signalmodule.c' line='1767' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyErr_CheckSignalsTstate'>
+      <parameter type-id='type-id-703' name='tstate' filepath='./Modules/signalmodule.c' line='1767' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyOS_InterruptOccurred' mangled-name='_PyOS_InterruptOccurred' filepath='./Modules/signalmodule.c' line='1976' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyOS_InterruptOccurred'>
+      <parameter type-id='type-id-703' name='tstate' filepath='./Modules/signalmodule.c' line='1976' column='1'/>
+      <return type-id='type-id-9'/>
+    </function-decl>
+    <function-decl name='_PyEval_AddPendingCall' mangled-name='_PyEval_AddPendingCall' filepath='./Include/internal/pycore_ceval.h' line='22' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyEval_SignalReceived' mangled-name='_PyEval_SignalReceived' filepath='./Include/internal/pycore_ceval.h' line='21' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__libc_current_sigrtmin' mangled-name='__libc_current_sigrtmin' filepath='/usr/include/signal.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='__libc_current_sigrtmax' mangled-name='__libc_current_sigrtmax' filepath='/usr/include/signal.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyOS_getsig' mangled-name='PyOS_getsig' filepath='./Include/pylifecycle.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_NewException' mangled-name='PyErr_NewException' filepath='./Include/pyerrors.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigismember' mangled-name='sigismember' filepath='/usr/include/signal.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_kill' mangled-name='pthread_kill' filepath='/usr/include/x86_64-linux-gnu/bits/sigthread.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigtimedwait' mangled-name='sigtimedwait' filepath='/usr/include/signal.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromSecondsObject' mangled-name='_PyTime_FromSecondsObject' filepath='./Include/cpython/pytime.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsTimespec' mangled-name='_PyTime_AsTimespec' filepath='./Include/cpython/pytime.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_Sigset_Converter' mangled-name='_Py_Sigset_Converter' filepath='./Modules/posixmodule.h' line='27' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigwaitinfo' mangled-name='sigwaitinfo' filepath='/usr/include/signal.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigfillset' mangled-name='sigfillset' filepath='/usr/include/signal.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigwait' mangled-name='sigwait' filepath='/usr/include/signal.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='sigpending' mangled-name='sigpending' filepath='/usr/include/signal.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_sigmask' mangled-name='pthread_sigmask' filepath='/usr/include/x86_64-linux-gnu/bits/sigthread.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getitimer' mangled-name='getitimer' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsTimeval' mangled-name='_PyTime_AsTimeval' filepath='./Include/cpython/pytime.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setitimer' mangled-name='setitimer' filepath='/usr/include/x86_64-linux-gnu/sys/time.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strsignal' mangled-name='strsignal' filepath='/usr/include/string.h' line='447' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='strstr' mangled-name='strstr' filepath='/usr/include/string.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='raise' mangled-name='raise' filepath='/usr/include/signal.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pause' mangled-name='pause' filepath='/usr/include/unistd.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='alarm' mangled-name='alarm' filepath='/usr/include/unistd.h' line='432' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_stat.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__stat' mangled-name='PyInit__stat' filepath='./Modules/_stat.c' line='630' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__stat'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/timemodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_time' mangled-name='PyInit_time' filepath='./Modules/timemodule.c' line='2042' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_time'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='time' mangled-name='time' filepath='/usr/include/time.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_localtime' mangled-name='_PyTime_localtime' filepath='./Include/cpython/pytime.h' line='216' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromTimespec' mangled-name='_PyTime_FromTimespec' filepath='./Include/cpython/pytime.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetSystemClockWithInfo' mangled-name='_PyTime_GetSystemClockWithInfo' filepath='./Include/cpython/pytime.h' line='185' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetMonotonicClockWithInfo' mangled-name='_PyTime_GetMonotonicClockWithInfo' filepath='./Include/cpython/pytime.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_GetPerfCounterWithInfo' mangled-name='_PyTime_GetPerfCounterWithInfo' filepath='./Include/cpython/pytime.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_AsNanosecondsObject' mangled-name='_PyTime_AsNanosecondsObject' filepath='./Include/cpython/pytime.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_ObjectToTime_t' mangled-name='_PyTime_ObjectToTime_t' filepath='./Include/cpython/pytime.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcsftime' mangled-name='wcsftime' filepath='/usr/include/wchar.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_gmtime' mangled-name='_PyTime_gmtime' filepath='./Include/cpython/pytime.h' line='220' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='pthread_getcpuclockid' mangled-name='pthread_getcpuclockid' filepath='/usr/include/pthread.h' line='1140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromTimeval' mangled-name='_PyTime_FromTimeval' filepath='./Include/cpython/pytime.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='clock' mangled-name='clock' filepath='/usr/include/time.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_MulDiv' mangled-name='_PyTime_MulDiv' filepath='./Include/cpython/pytime.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getrusage' mangled-name='getrusage' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='tzset' mangled-name='tzset' filepath='/usr/include/time.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='select' mangled-name='select' filepath='/usr/include/x86_64-linux-gnu/sys/select.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='clock_settime' mangled-name='clock_settime' filepath='/usr/include/time.h' line='216' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromNanosecondsObject' mangled-name='_PyTime_FromNanosecondsObject' filepath='./Include/cpython/pytime.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='mktime' mangled-name='mktime' filepath='/usr/include/time.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_threadmodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__thread' mangled-name='PyInit__thread' filepath='./Modules/_threadmodule.c' line='1709' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__thread'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_PyErr_Display' mangled-name='_PyErr_Display' filepath='./Include/internal/pycore_pylifecycle.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_get_thread_native_id' mangled-name='PyThread_get_thread_native_id' filepath='./Include/pythread.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_Prealloc' mangled-name='_PyThreadState_Prealloc' filepath='./Include/cpython/pystate.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_start_new_thread' mangled-name='PyThread_start_new_thread' filepath='./Include/pythread.h' line='24' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_Init' mangled-name='_PyThreadState_Init' filepath='./Include/internal/pycore_pystate.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyEval_AcquireThread' mangled-name='PyEval_AcquireThread' filepath='./Include/ceval.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyThreadState_DeleteCurrent' mangled-name='_PyThreadState_DeleteCurrent' filepath='./Include/internal/pycore_pylifecycle.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyObject_GenericGetAttrWithDict' mangled-name='_PyObject_GenericGetAttrWithDict' filepath='./Include/cpython/object.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyTime_FromSeconds' mangled-name='_PyTime_FromSeconds' filepath='./Include/cpython/pytime.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='./Include/pythread.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_get_stacksize' mangled-name='PyThread_get_stacksize' filepath='./Include/pythread.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThread_set_stacksize' mangled-name='PyThread_set_stacksize' filepath='./Include/pythread.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyErr_SetInterruptEx' mangled-name='PyErr_SetInterruptEx' filepath='./Include/pyerrors.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_localemodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__locale' mangled-name='PyInit__locale' filepath='./Modules/_localemodule.c' line='913' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__locale'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_GetLocaleEncodingObject' mangled-name='_Py_GetLocaleEncodingObject' filepath='./Include/internal/pycore_fileutils.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='bind_textdomain_codeset' mangled-name='bind_textdomain_codeset' filepath='/usr/include/libintl.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='bindtextdomain' mangled-name='bindtextdomain' filepath='/usr/include/libintl.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='dcgettext' mangled-name='dcgettext' filepath='/usr/include/libintl.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcscoll' mangled-name='wcscoll' filepath='/usr/include/wchar.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='textdomain' mangled-name='textdomain' filepath='/usr/include/libintl.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='wcsxfrm' mangled-name='wcsxfrm' filepath='/usr/include/wchar.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/_iomodule.c' comp-dir-path='/src' language='LANG_C99'>
-    <var-decl name='_PyIO_str_close' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='158' column='1'/>
-    <var-decl name='_PyIO_str_closed' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='159' column='1'/>
-    <var-decl name='_PyIO_str_decode' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='160' column='1'/>
-    <var-decl name='_PyIO_str_encode' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='161' column='1'/>
-    <var-decl name='_PyIO_str_fileno' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='162' column='1'/>
-    <var-decl name='_PyIO_str_flush' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='163' column='1'/>
-    <var-decl name='_PyIO_str_getstate' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='164' column='1'/>
-    <var-decl name='_PyIO_str_isatty' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='165' column='1'/>
-    <var-decl name='_PyIO_str_newlines' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='166' column='1'/>
-    <var-decl name='_PyIO_str_nl' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='167' column='1'/>
-    <var-decl name='_PyIO_str_peek' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='168' column='1'/>
-    <var-decl name='_PyIO_str_read' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='169' column='1'/>
-    <var-decl name='_PyIO_str_read1' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='170' column='1'/>
-    <var-decl name='_PyIO_str_readable' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='171' column='1'/>
-    <var-decl name='_PyIO_str_readall' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='172' column='1'/>
-    <var-decl name='_PyIO_str_readinto' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='173' column='1'/>
-    <var-decl name='_PyIO_str_readline' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='174' column='1'/>
-    <var-decl name='_PyIO_str_reset' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='175' column='1'/>
-    <var-decl name='_PyIO_str_seek' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='176' column='1'/>
-    <var-decl name='_PyIO_str_seekable' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='177' column='1'/>
-    <var-decl name='_PyIO_str_setstate' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='178' column='1'/>
-    <var-decl name='_PyIO_str_tell' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='179' column='1'/>
-    <var-decl name='_PyIO_str_truncate' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='180' column='1'/>
-    <var-decl name='_PyIO_str_writable' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='181' column='1'/>
-    <var-decl name='_PyIO_str_write' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='182' column='1'/>
-    <var-decl name='_PyIO_empty_str' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='184' column='1'/>
-    <var-decl name='_PyIO_empty_bytes' type-id='type-id-15' visibility='default' filepath='./Modules/_io/_iomodule.h' line='185' column='1'/>
+    <var-decl name='_PyIO_str_close' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='158' column='1'/>
+    <var-decl name='_PyIO_str_closed' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='159' column='1'/>
+    <var-decl name='_PyIO_str_decode' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='160' column='1'/>
+    <var-decl name='_PyIO_str_encode' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='161' column='1'/>
+    <var-decl name='_PyIO_str_fileno' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='162' column='1'/>
+    <var-decl name='_PyIO_str_flush' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='163' column='1'/>
+    <var-decl name='_PyIO_str_getstate' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='164' column='1'/>
+    <var-decl name='_PyIO_str_isatty' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='165' column='1'/>
+    <var-decl name='_PyIO_str_newlines' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='166' column='1'/>
+    <var-decl name='_PyIO_str_nl' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='167' column='1'/>
+    <var-decl name='_PyIO_str_peek' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='168' column='1'/>
+    <var-decl name='_PyIO_str_read' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='169' column='1'/>
+    <var-decl name='_PyIO_str_read1' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='170' column='1'/>
+    <var-decl name='_PyIO_str_readable' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='171' column='1'/>
+    <var-decl name='_PyIO_str_readall' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='172' column='1'/>
+    <var-decl name='_PyIO_str_readinto' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='173' column='1'/>
+    <var-decl name='_PyIO_str_readline' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='174' column='1'/>
+    <var-decl name='_PyIO_str_reset' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='175' column='1'/>
+    <var-decl name='_PyIO_str_seek' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='176' column='1'/>
+    <var-decl name='_PyIO_str_seekable' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='177' column='1'/>
+    <var-decl name='_PyIO_str_setstate' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='178' column='1'/>
+    <var-decl name='_PyIO_str_tell' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='179' column='1'/>
+    <var-decl name='_PyIO_str_truncate' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='180' column='1'/>
+    <var-decl name='_PyIO_str_writable' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='181' column='1'/>
+    <var-decl name='_PyIO_str_write' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='182' column='1'/>
+    <var-decl name='_PyIO_empty_str' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='184' column='1'/>
+    <var-decl name='_PyIO_empty_bytes' type-id='type-id-16' visibility='default' filepath='./Modules/_io/_iomodule.h' line='185' column='1'/>
     <var-decl name='_PyIO_Module' type-id='type-id-465' visibility='default' filepath='./Modules/_io/_iomodule.h' line='140' column='1'/>
     <function-decl name='PyInit__io' mangled-name='PyInit__io' filepath='./Modules/_io/_iomodule.c' line='691' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__io'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='PyModule_Create2' mangled-name='PyModule_Create2' filepath='./Include/modsupport.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyFile_OpenCodeObject' mangled-name='PyFile_OpenCodeObject' filepath='./Include/cpython/fileobject.h' line='15' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='./Include/pystate.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/iobase.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyIOBase_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='8' column='1'/>
     <var-decl name='PyRawIOBase_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='9' column='1'/>
+    <function-decl name='_PyIO_trap_eintr' mangled-name='_PyIO_trap_eintr' filepath='./Modules/_io/_iomodule.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallMethodObjArgs' mangled-name='PyObject_CallMethodObjArgs' filepath='./Include/abstract.h' line='226' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyByteArray_AsString' mangled-name='PyByteArray_AsString' filepath='./Include/bytearrayobject.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyIO_get_module_state' mangled-name='_PyIO_get_module_state' filepath='./Modules/_io/_iomodule.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyObject_CallFinalizer' mangled-name='PyObject_CallFinalizer' filepath='./Include/cpython/object.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/fileio.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyFileIO_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='14' column='1'/>
+    <function-decl name='_PyIOBase_finalize' mangled-name='_PyIOBase_finalize' filepath='./Modules/_io/_iomodule.h' line='45' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/bytesio.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyBytesIO_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='15' column='1'/>
     <var-decl name='_PyBytesIOBuffer_Type' type-id='type-id-149' mangled-name='_PyBytesIOBuffer_Type' visibility='default' filepath='./Modules/_io/_iomodule.h' line='187' column='1' elf-symbol-id='_PyBytesIOBuffer_Type'/>
+    <function-decl name='_PySys_GetSizeOf' mangled-name='_PySys_GetSizeOf' filepath='./Include/cpython/sysmodule.h' line='8' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/bufferedio.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyBufferedIOBase_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='10' column='1'/>
@@ -15672,65 +20541,161 @@
     <var-decl name='PyBufferedWriter_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='18' column='1'/>
     <var-decl name='PyBufferedRWPair_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='19' column='1'/>
     <var-decl name='PyBufferedRandom_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='20' column='1'/>
+    <function-decl name='_PyIOBase_check_seekable' mangled-name='_PyIOBase_check_seekable' filepath='./Modules/_io/_iomodule.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyIOBase_check_readable' mangled-name='_PyIOBase_check_readable' filepath='./Modules/_io/_iomodule.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyIOBase_check_writable' mangled-name='_PyIOBase_check_writable' filepath='./Modules/_io/_iomodule.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyFileIO_closed' mangled-name='_PyFileIO_closed' filepath='./Modules/_io/_iomodule.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyNumber_AsOff_t' mangled-name='PyNumber_AsOff_t' filepath='./Modules/_io/_iomodule.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyBytes_Concat' mangled-name='PyBytes_Concat' filepath='./Include/bytesobject.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/textio.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyTextIOBase_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='11' column='1'/>
     <var-decl name='PyIncrementalNewlineDecoder_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='22' column='1'/>
     <var-decl name='PyTextIOWrapper_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='21' column='1'/>
+    <function-decl name='_PyIOBase_check_closed' mangled-name='_PyIOBase_check_closed' filepath='./Modules/_io/_iomodule.h' line='39' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyLong_AsByteArray' mangled-name='_PyLong_AsByteArray' filepath='./Include/longobject.h' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodec_LookupTextEncoding' mangled-name='_PyCodec_LookupTextEncoding' filepath='./Include/codecs.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodecInfo_GetIncrementalEncoder' mangled-name='_PyCodecInfo_GetIncrementalEncoder' filepath='./Include/codecs.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyCodecInfo_GetIncrementalDecoder' mangled-name='_PyCodecInfo_GetIncrementalDecoder' filepath='./Include/codecs.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_io/stringio.c' comp-dir-path='/src' language='LANG_C99'>
     <var-decl name='PyStringIO_Type' type-id='type-id-149' visibility='default' filepath='./Modules/_io/_iomodule.h' line='16' column='1'/>
+    <function-decl name='_PyAccu_Destroy' mangled-name='_PyAccu_Destroy' filepath='./Include/internal/pycore_accu.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAccu_Init' mangled-name='_PyAccu_Init' filepath='./Include/internal/pycore_accu.h' line='29' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyIO_find_line_ending' mangled-name='_PyIO_find_line_ending' filepath='./Modules/_io/_iomodule.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAccu_Finish' mangled-name='_PyAccu_Finish' filepath='./Include/internal/pycore_accu.h' line='32' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyAccu_Accumulate' mangled-name='_PyAccu_Accumulate' filepath='./Include/internal/pycore_accu.h' line='30' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_PyIncrementalNewlineDecoder_decode' mangled-name='_PyIncrementalNewlineDecoder_decode' filepath='./Modules/_io/_iomodule.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUCS4' mangled-name='PyUnicode_AsUCS4' filepath='./Include/unicodeobject.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyUnicode_AsUCS4Copy' mangled-name='PyUnicode_AsUCS4Copy' filepath='./Include/unicodeobject.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/faulthandler.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_faulthandler' mangled-name='PyInit_faulthandler' filepath='./Modules/faulthandler.c' line='1323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_faulthandler'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='sigaltstack' mangled-name='sigaltstack' filepath='/usr/include/signal.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='getrlimit' mangled-name='getrlimit64' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='setrlimit' mangled-name='setrlimit64' filepath='/usr/include/x86_64-linux-gnu/sys/resource.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyThreadState_GetInterpreter' mangled-name='PyThreadState_GetInterpreter' filepath='./Include/pystate.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpTraceback' mangled-name='_Py_DumpTraceback' filepath='./Include/internal/pycore_traceback.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_DumpExtensionModules' mangled-name='_Py_DumpExtensionModules' filepath='./Include/internal/pycore_pyerrors.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/_tracemalloc.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='_PyTraceMalloc_GetTraceback' mangled-name='_PyTraceMalloc_GetTraceback' filepath='./Modules/_tracemalloc.c' line='1812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_PyTraceMalloc_GetTraceback'>
-      <parameter type-id='type-id-65' name='domain' filepath='./Modules/_tracemalloc.c' line='1812' column='1'/>
+      <parameter type-id='type-id-66' name='domain' filepath='./Modules/_tracemalloc.c' line='1812' column='1'/>
       <parameter type-id='type-id-321' name='ptr' filepath='./Modules/_tracemalloc.c' line='1812' column='1'/>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
     <function-decl name='PyTraceMalloc_Untrack' mangled-name='PyTraceMalloc_Untrack' filepath='./Modules/_tracemalloc.c' line='1753' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceMalloc_Untrack'>
-      <parameter type-id='type-id-65' name='domain' filepath='./Modules/_tracemalloc.c' line='1753' column='1'/>
+      <parameter type-id='type-id-66' name='domain' filepath='./Modules/_tracemalloc.c' line='1753' column='1'/>
       <parameter type-id='type-id-321' name='ptr' filepath='./Modules/_tracemalloc.c' line='1753' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyTraceMalloc_Track' mangled-name='PyTraceMalloc_Track' filepath='./Modules/_tracemalloc.c' line='1730' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyTraceMalloc_Track'>
-      <parameter type-id='type-id-65' name='domain' filepath='./Modules/_tracemalloc.c' line='1730' column='1'/>
+      <parameter type-id='type-id-66' name='domain' filepath='./Modules/_tracemalloc.c' line='1730' column='1'/>
       <parameter type-id='type-id-321' name='ptr' filepath='./Modules/_tracemalloc.c' line='1730' column='1'/>
       <parameter type-id='type-id-157' name='size' filepath='./Modules/_tracemalloc.c' line='1731' column='1'/>
-      <return type-id='type-id-8'/>
+      <return type-id='type-id-9'/>
     </function-decl>
     <function-decl name='PyInit__tracemalloc' mangled-name='PyInit__tracemalloc' filepath='./Modules/_tracemalloc.c' line='1695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__tracemalloc'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_get' mangled-name='_Py_hashtable_get' filepath='./Include/internal/pycore_hashtable.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_steal' mangled-name='_Py_hashtable_steal' filepath='./Include/internal/pycore_hashtable.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_size' mangled-name='_Py_hashtable_size' filepath='./Include/internal/pycore_hashtable.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_foreach' mangled-name='_Py_hashtable_foreach' filepath='./Include/internal/pycore_hashtable.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='_Py_hashtable_clear' mangled-name='_Py_hashtable_clear' filepath='./Include/internal/pycore_hashtable.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
+    </function-decl>
+    <function-decl name='PyMem_GetAllocator' mangled-name='PyMem_GetAllocator' filepath='./Include/cpython/pymem.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/symtablemodule.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit__symtable' mangled-name='PyInit__symtable' filepath='./Modules/symtablemodule.c' line='123' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit__symtable'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
+    </function-decl>
+    <function-decl name='_Py_SymtableStringObjectFlags' mangled-name='_Py_SymtableStringObjectFlags' filepath='./Include/internal/pycore_symtable.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-4'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='./Modules/xxsubtype.c' comp-dir-path='/src' language='LANG_C99'>
     <function-decl name='PyInit_xxsubtype' mangled-name='PyInit_xxsubtype' filepath='./Modules/xxsubtype.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='PyInit_xxsubtype'>
-      <return type-id='type-id-15'/>
+      <return type-id='type-id-16'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='Python/frozen.c' comp-dir-path='/src' language='LANG_C99'>
-    <class-decl name='_frozen' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='31' column='1' id='type-id-858'>
+    <class-decl name='_frozen' size-in-bits='192' is-struct='yes' visibility='default' filepath='./Include/cpython/import.h' line='34' column='1' id='type-id-858'>
       <data-member access='public' layout-offset-in-bits='0'>
-        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/import.h' line='32' column='1'/>
+        <var-decl name='name' type-id='type-id-3' visibility='default' filepath='./Include/cpython/import.h' line='35' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='64'>
-        <var-decl name='code' type-id='type-id-440' visibility='default' filepath='./Include/cpython/import.h' line='33' column='1'/>
+        <var-decl name='code' type-id='type-id-440' visibility='default' filepath='./Include/cpython/import.h' line='36' column='1'/>
       </data-member>
       <data-member access='public' layout-offset-in-bits='128'>
-        <var-decl name='size' type-id='type-id-8' visibility='default' filepath='./Include/cpython/import.h' line='34' column='1'/>
+        <var-decl name='size' type-id='type-id-9' visibility='default' filepath='./Include/cpython/import.h' line='37' column='1'/>
       </data-member>
     </class-decl>
     <qualified-type-def type-id='type-id-858' const='yes' id='type-id-859'/>
     <pointer-type-def type-id='type-id-859' size-in-bits='64' id='type-id-860'/>
-    <var-decl name='PyImport_FrozenModules' type-id='type-id-860' mangled-name='PyImport_FrozenModules' visibility='default' filepath='./Include/cpython/import.h' line='40' column='1' elf-symbol-id='PyImport_FrozenModules'/>
+    <var-decl name='PyImport_FrozenModules' type-id='type-id-860' mangled-name='PyImport_FrozenModules' visibility='default' filepath='./Include/cpython/import.h' line='43' column='1' elf-symbol-id='PyImport_FrozenModules'/>
   </abi-instr>
 </abi-corpus>
diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h
index 0b5067f5d3f4b..a00489534607d 100644
--- a/Include/cpython/unicodeobject.h
+++ b/Include/cpython/unicodeobject.h
@@ -834,12 +834,20 @@ PyAPI_FUNC(PyObject*) _PyUnicode_EncodeUTF16(
 
 /* --- Unicode-Escape Codecs ---------------------------------------------- */
 
+/* Variant of PyUnicode_DecodeUnicodeEscape that supports partial decoding. */
+PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscapeStateful(
+        const char *string,     /* Unicode-Escape encoded string */
+        Py_ssize_t length,      /* size of string */
+        const char *errors,     /* error handling */
+        Py_ssize_t *consumed    /* bytes consumed */
+);
 /* Helper for PyUnicode_DecodeUnicodeEscape that detects invalid escape
    chars. */
-PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscape(
+PyAPI_FUNC(PyObject*) _PyUnicode_DecodeUnicodeEscapeInternal(
         const char *string,     /* Unicode-Escape encoded string */
         Py_ssize_t length,      /* size of string */
         const char *errors,     /* error handling */
+        Py_ssize_t *consumed,   /* bytes consumed */
         const char **first_invalid_escape  /* on return, points to first
                                               invalid escaped char in
                                               string. */
diff --git a/Lib/encodings/unicode_escape.py b/Lib/encodings/unicode_escape.py
index 817f93265a463..9b1ce99b339ae 100644
--- a/Lib/encodings/unicode_escape.py
+++ b/Lib/encodings/unicode_escape.py
@@ -21,15 +21,16 @@ class IncrementalEncoder(codecs.IncrementalEncoder):
     def encode(self, input, final=False):
         return codecs.unicode_escape_encode(input, self.errors)[0]
 
-class IncrementalDecoder(codecs.IncrementalDecoder):
-    def decode(self, input, final=False):
-        return codecs.unicode_escape_decode(input, self.errors)[0]
+class IncrementalDecoder(codecs.BufferedIncrementalDecoder):
+    def _buffer_decode(self, input, errors, final):
+        return codecs.unicode_escape_decode(input, errors, final)
 
 class StreamWriter(Codec,codecs.StreamWriter):
     pass
 
 class StreamReader(Codec,codecs.StreamReader):
-    pass
+    def decode(self, input, errors='strict'):
+        return codecs.unicode_escape_decode(input, errors, False)
 
 ### encodings module API
 
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
index 328a47b2e3766..153912b241a09 100644
--- a/Lib/test/test_codecs.py
+++ b/Lib/test/test_codecs.py
@@ -114,7 +114,7 @@ def check_partial(self, input, partialresults):
         q = Queue(b"")
         r = codecs.getreader(self.encoding)(q)
         result = ""
-        for (c, partialresult) in zip(input.encode(self.encoding), partialresults):
+        for (c, partialresult) in zip(input.encode(self.encoding), partialresults, strict=True):
             q.write(bytes([c]))
             result += r.read()
             self.assertEqual(result, partialresult)
@@ -125,7 +125,7 @@ def check_partial(self, input, partialresults):
         # do the check again, this time using an incremental decoder
         d = codecs.getincrementaldecoder(self.encoding)()
         result = ""
-        for (c, partialresult) in zip(input.encode(self.encoding), partialresults):
+        for (c, partialresult) in zip(input.encode(self.encoding), partialresults, strict=True):
             result += d.decode(bytes([c]))
             self.assertEqual(result, partialresult)
         # check that there's nothing left in the buffers
@@ -135,7 +135,7 @@ def check_partial(self, input, partialresults):
         # Check whether the reset method works properly
         d.reset()
         result = ""
-        for (c, partialresult) in zip(input.encode(self.encoding), partialresults):
+        for (c, partialresult) in zip(input.encode(self.encoding), partialresults, strict=True):
             result += d.decode(bytes([c]))
             self.assertEqual(result, partialresult)
         # check that there's nothing left in the buffers
@@ -2341,7 +2341,11 @@ def test_unicode_escape(self):
                          (r"\x5c\x55\x30\x30\x31\x31\x30\x30\x30\x30", 10))
 
 
-class UnicodeEscapeTest(unittest.TestCase):
+class UnicodeEscapeTest(ReadTest, unittest.TestCase):
+    encoding = "unicode-escape"
+
+    test_lone_surrogates = None
+
     def test_empty(self):
         self.assertEqual(codecs.unicode_escape_encode(""), (b"", 0))
         self.assertEqual(codecs.unicode_escape_decode(b""), ("", 0))
@@ -2428,6 +2432,44 @@ def test_decode_errors(self):
         self.assertEqual(decode(br"\U00110000", "ignore"), ("", 10))
         self.assertEqual(decode(br"\U00110000", "replace"), ("\ufffd", 10))
 
+    def test_partial(self):
+        self.check_partial(
+            "\x00\t\n\r\\\xff\uffff\U00010000",
+            [
+                '',
+                '',
+                '',
+                '\x00',
+                '\x00',
+                '\x00\t',
+                '\x00\t',
+                '\x00\t\n',
+                '\x00\t\n',
+                '\x00\t\n\r',
+                '\x00\t\n\r',
+                '\x00\t\n\r\\',
+                '\x00\t\n\r\\',
+                '\x00\t\n\r\\',
+                '\x00\t\n\r\\',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff',
+                '\x00\t\n\r\\\xff\uffff\U00010000',
+            ]
+        )
 
 class RawUnicodeEscapeTest(unittest.TestCase):
     def test_empty(self):
diff --git a/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst b/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst
new file mode 100644
index 0000000000000..c1c4ed1ace248
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-10-14-00-19-02.bpo-45461.4LB_tJ.rst
@@ -0,0 +1,2 @@
+Fix incremental decoder and stream reader in the "unicode-escape" codec.
+Previously they failed if the escape sequence was split.
diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c
index 2e8cb97fe77c9..fc74127ce56c4 100644
--- a/Modules/_codecsmodule.c
+++ b/Modules/_codecsmodule.c
@@ -489,17 +489,20 @@ _codecs_utf_32_ex_decode_impl(PyObject *module, Py_buffer *data,
 _codecs.unicode_escape_decode
     data: Py_buffer(accept={str, buffer})
     errors: str(accept={str, NoneType}) = None
+    final: bool(accept={int}) = True
     /
 [clinic start generated code]*/
 
 static PyObject *
 _codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,
-                                   const char *errors)
-/*[clinic end generated code: output=3ca3c917176b82ab input=8328081a3a569bd6]*/
+                                   const char *errors, int final)
+/*[clinic end generated code: output=b284f97b12c635ee input=6154f039a9f7c639]*/
 {
-    PyObject *decoded = PyUnicode_DecodeUnicodeEscape(data->buf, data->len,
-                                                      errors);
-    return codec_tuple(decoded, data->len);
+    Py_ssize_t consumed = data->len;
+    PyObject *decoded = _PyUnicode_DecodeUnicodeEscapeStateful(data->buf, data->len,
+                                                               errors,
+                                                               final ? NULL : &consumed);
+    return codec_tuple(decoded, consumed);
 }
 
 /*[clinic input]
diff --git a/Modules/clinic/_codecsmodule.c.h b/Modules/clinic/_codecsmodule.c.h
index 43378f94f9845..a7086dd6e18d7 100644
--- a/Modules/clinic/_codecsmodule.c.h
+++ b/Modules/clinic/_codecsmodule.c.h
@@ -1063,7 +1063,7 @@ _codecs_utf_32_ex_decode(PyObject *module, PyObject *const *args, Py_ssize_t nar
 }
 
 PyDoc_STRVAR(_codecs_unicode_escape_decode__doc__,
-"unicode_escape_decode($module, data, errors=None, /)\n"
+"unicode_escape_decode($module, data, errors=None, final=True, /)\n"
 "--\n"
 "\n");
 
@@ -1072,7 +1072,7 @@ PyDoc_STRVAR(_codecs_unicode_escape_decode__doc__,
 
 static PyObject *
 _codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,
-                                   const char *errors);
+                                   const char *errors, int final);
 
 static PyObject *
 _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
@@ -1080,8 +1080,9 @@ _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_
     PyObject *return_value = NULL;
     Py_buffer data = {NULL, NULL};
     const char *errors = NULL;
+    int final = 1;
 
-    if (!_PyArg_CheckPositional("unicode_escape_decode", nargs, 1, 2)) {
+    if (!_PyArg_CheckPositional("unicode_escape_decode", nargs, 1, 3)) {
         goto exit;
     }
     if (PyUnicode_Check(args[0])) {
@@ -1122,8 +1123,15 @@ _codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_
         _PyArg_BadArgument("unicode_escape_decode", "argument 2", "str or None", args[1]);
         goto exit;
     }
+    if (nargs < 3) {
+        goto skip_optional;
+    }
+    final = _PyLong_AsInt(args[2]);
+    if (final == -1 && PyErr_Occurred()) {
+        goto exit;
+    }
 skip_optional:
-    return_value = _codecs_unicode_escape_decode_impl(module, &data, errors);
+    return_value = _codecs_unicode_escape_decode_impl(module, &data, errors, final);
 
 exit:
     /* Cleanup for data */
@@ -2801,4 +2809,4 @@ _codecs_lookup_error(PyObject *module, PyObject *arg)
 #ifndef _CODECS_CODE_PAGE_ENCODE_METHODDEF
     #define _CODECS_CODE_PAGE_ENCODE_METHODDEF
 #endif /* !defined(_CODECS_CODE_PAGE_ENCODE_METHODDEF) */
-/*[clinic end generated code: output=557c3b37e4c492ac input=a9049054013a1b77]*/
+/*[clinic end generated code: output=9e9fb1d5d81577e0 input=a9049054013a1b77]*/
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 11a3a6d0a4dce..e660834b4788f 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -6408,9 +6408,10 @@ PyUnicode_AsUTF16String(PyObject *unicode)
 static _PyUnicode_Name_CAPI *ucnhash_capi = NULL;
 
 PyObject *
-_PyUnicode_DecodeUnicodeEscape(const char *s,
+_PyUnicode_DecodeUnicodeEscapeInternal(const char *s,
                                Py_ssize_t size,
                                const char *errors,
+                               Py_ssize_t *consumed,
                                const char **first_invalid_escape)
 {
     const char *starts = s;
@@ -6423,6 +6424,9 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
     *first_invalid_escape = NULL;
 
     if (size == 0) {
+        if (consumed) {
+            *consumed = 0;
+        }
         _Py_RETURN_UNICODE_EMPTY();
     }
     /* Escaped strings will always be longer than the resulting
@@ -6473,7 +6477,7 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
         /* \ - Escapes */
         if (s >= end) {
             message = "\\ at end of string";
-            goto error;
+            goto incomplete;
         }
         c = (unsigned char) *s++;
 
@@ -6527,7 +6531,10 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
             count = 8;
             message = "truncated \\UXXXXXXXX escape";
         hexescape:
-            for (ch = 0; count && s < end; ++s, --count) {
+            for (ch = 0; count; ++s, --count) {
+                if (s >= end) {
+                    goto incomplete;
+                }
                 c = (unsigned char)*s;
                 ch <<= 4;
                 if (c >= '0' && c <= '9') {
@@ -6540,12 +6547,9 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
                     ch += c - ('A' - 10);
                 }
                 else {
-                    break;
+                    goto error;
                 }
             }
-            if (count) {
-                goto error;
-            }
 
             /* when we get here, ch is a 32-bit unicode character */
             if (ch > MAX_UNICODE) {
@@ -6572,14 +6576,20 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
             }
 
             message = "malformed \\N character escape";
-            if (s < end && *s == '{') {
+            if (s >= end) {
+                goto incomplete;
+            }
+            if (*s == '{') {
                 const char *start = ++s;
                 size_t namelen;
                 /* look for the closing brace */
                 while (s < end && *s != '}')
                     s++;
+                if (s >= end) {
+                    goto incomplete;
+                }
                 namelen = s - start;
-                if (namelen && s < end) {
+                if (namelen) {
                     /* found a name.  look it up in the unicode database */
                     s++;
                     ch = 0xffffffff; /* in case 'getcode' messes up */
@@ -6605,6 +6615,11 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
             continue;
         }
 
+      incomplete:
+        if (consumed) {
+            *consumed = startinpos;
+            break;
+        }
       error:
         endinpos = s-starts;
         writer.min_length = end - s + writer.pos;
@@ -6633,12 +6648,14 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
 }
 
 PyObject *
-PyUnicode_DecodeUnicodeEscape(const char *s,
+_PyUnicode_DecodeUnicodeEscapeStateful(const char *s,
                               Py_ssize_t size,
-                              const char *errors)
+                              const char *errors,
+                              Py_ssize_t *consumed)
 {
     const char *first_invalid_escape;
-    PyObject *result = _PyUnicode_DecodeUnicodeEscape(s, size, errors,
+    PyObject *result = _PyUnicode_DecodeUnicodeEscapeInternal(s, size, errors,
+                                                      consumed,
                                                       &first_invalid_escape);
     if (result == NULL)
         return NULL;
@@ -6653,6 +6670,14 @@ PyUnicode_DecodeUnicodeEscape(const char *s,
     return result;
 }
 
+PyObject *
+PyUnicode_DecodeUnicodeEscape(const char *s,
+                              Py_ssize_t size,
+                              const char *errors)
+{
+    return _PyUnicode_DecodeUnicodeEscapeStateful(s, size, errors, NULL);
+}
+
 /* Return a Unicode-Escape string version of the Unicode object. */
 
 PyObject *
diff --git a/Parser/string_parser.c b/Parser/string_parser.c
index fb37d37553a55..dcd298cb358ee 100644
--- a/Parser/string_parser.c
+++ b/Parser/string_parser.c
@@ -115,7 +115,7 @@ decode_unicode_with_escapes(Parser *parser, const char *s, size_t len, Token *t)
     s = buf;
 
     const char *first_invalid_escape;
-    v = _PyUnicode_DecodeUnicodeEscape(s, len, NULL, &first_invalid_escape);
+    v = _PyUnicode_DecodeUnicodeEscapeInternal(s, len, NULL, NULL, &first_invalid_escape);
 
     if (v != NULL && first_invalid_escape != NULL) {
         if (warn_invalid_escape_sequence(parser, *first_invalid_escape, t) < 0) {



More information about the Python-checkins mailing list