angr 9.2.111__tar.gz → 9.2.113__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of angr might be problematic. Click here for more details.

Files changed (1321) hide show
  1. {angr-9.2.111/angr.egg-info → angr-9.2.113}/PKG-INFO +6 -6
  2. {angr-9.2.111 → angr-9.2.113}/angr/__init__.py +1 -1
  3. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_base.py +4 -1
  4. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/condition_processor.py +9 -2
  5. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/__init__.py +3 -1
  6. angr-9.2.113/angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +367 -0
  7. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/deadblock_remover.py +1 -1
  8. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +99 -12
  9. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/optimization_pass.py +79 -9
  10. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +21 -0
  11. angr-9.2.113/angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +223 -0
  12. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/redundant_label_remover.py +17 -0
  13. angr-9.2.113/angr/analyses/decompiler/seq_cf_structure_counter.py +37 -0
  14. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structured_codegen/c.py +4 -5
  15. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/phoenix.py +3 -3
  16. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/rd_state.py +2 -0
  17. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/reaching_definitions.py +7 -0
  18. angr-9.2.113/angr/angrdb/serializers/loader.py +165 -0
  19. {angr-9.2.111 → angr-9.2.113}/angr/calling_conventions.py +11 -9
  20. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/live_definitions.py +5 -0
  21. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/propagations/states.py +3 -2
  22. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/variables/variable_manager.py +1 -1
  23. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/ReturnUnconstrained.py +1 -2
  24. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/syscall_stub.py +1 -2
  25. {angr-9.2.111 → angr-9.2.113}/angr/sim_type.py +354 -136
  26. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/debug_variables.py +2 -2
  27. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/solver.py +5 -13
  28. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/multi_value_merger_mixin.py +13 -3
  29. angr-9.2.113/angr/utils/orderedset.py +70 -0
  30. {angr-9.2.111 → angr-9.2.113}/angr/vaults.py +0 -1
  31. {angr-9.2.111 → angr-9.2.113/angr.egg-info}/PKG-INFO +6 -6
  32. {angr-9.2.111 → angr-9.2.113}/angr.egg-info/SOURCES.txt +3 -0
  33. {angr-9.2.111 → angr-9.2.113}/angr.egg-info/requires.txt +5 -5
  34. {angr-9.2.111 → angr-9.2.113}/pyproject.toml +1 -1
  35. {angr-9.2.111 → angr-9.2.113}/setup.cfg +5 -5
  36. {angr-9.2.111 → angr-9.2.113}/tests/test_types.py +27 -5
  37. angr-9.2.111/angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +0 -121
  38. angr-9.2.111/angr/angrdb/serializers/loader.py +0 -81
  39. {angr-9.2.111 → angr-9.2.113}/LICENSE +0 -0
  40. {angr-9.2.111 → angr-9.2.113}/MANIFEST.in +0 -0
  41. {angr-9.2.111 → angr-9.2.113}/README.md +0 -0
  42. {angr-9.2.111 → angr-9.2.113}/angr/__main__.py +0 -0
  43. {angr-9.2.111 → angr-9.2.113}/angr/analyses/__init__.py +0 -0
  44. {angr-9.2.111 → angr-9.2.113}/angr/analyses/analysis.py +0 -0
  45. {angr-9.2.111 → angr-9.2.113}/angr/analyses/backward_slice.py +0 -0
  46. {angr-9.2.111 → angr-9.2.113}/angr/analyses/binary_optimizer.py +0 -0
  47. {angr-9.2.111 → angr-9.2.113}/angr/analyses/bindiff.py +0 -0
  48. {angr-9.2.111 → angr-9.2.113}/angr/analyses/boyscout.py +0 -0
  49. {angr-9.2.111 → angr-9.2.113}/angr/analyses/callee_cleanup_finder.py +0 -0
  50. {angr-9.2.111 → angr-9.2.113}/angr/analyses/calling_convention.py +0 -0
  51. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cdg.py +0 -0
  52. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/__init__.py +0 -0
  53. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfb.py +0 -0
  54. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg.py +0 -0
  55. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_arch_options.py +0 -0
  56. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_emulated.py +0 -0
  57. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_fast.py +0 -0
  58. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_fast_soot.py +0 -0
  59. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/cfg_job_base.py +0 -0
  60. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/__init__.py +0 -0
  61. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +0 -0
  62. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +0 -0
  63. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +0 -0
  64. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +0 -0
  65. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +0 -0
  66. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +0 -0
  67. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +0 -0
  68. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +0 -0
  69. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/resolver.py +0 -0
  70. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +0 -0
  71. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +0 -0
  72. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg_slice_to_sink/__init__.py +0 -0
  73. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +0 -0
  74. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg_slice_to_sink/graph.py +0 -0
  75. {angr-9.2.111 → angr-9.2.113}/angr/analyses/cfg_slice_to_sink/transitions.py +0 -0
  76. {angr-9.2.111 → angr-9.2.113}/angr/analyses/class_identifier.py +0 -0
  77. {angr-9.2.111 → angr-9.2.113}/angr/analyses/code_tagging.py +0 -0
  78. {angr-9.2.111 → angr-9.2.113}/angr/analyses/complete_calling_conventions.py +0 -0
  79. {angr-9.2.111 → angr-9.2.113}/angr/analyses/congruency_check.py +0 -0
  80. {angr-9.2.111 → angr-9.2.113}/angr/analyses/data_dep/__init__.py +0 -0
  81. {angr-9.2.111 → angr-9.2.113}/angr/analyses/data_dep/data_dependency_analysis.py +0 -0
  82. {angr-9.2.111 → angr-9.2.113}/angr/analyses/data_dep/dep_nodes.py +0 -0
  83. {angr-9.2.111 → angr-9.2.113}/angr/analyses/data_dep/sim_act_location.py +0 -0
  84. {angr-9.2.111 → angr-9.2.113}/angr/analyses/datagraph_meta.py +0 -0
  85. {angr-9.2.111 → angr-9.2.113}/angr/analyses/ddg.py +0 -0
  86. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/__init__.py +0 -0
  87. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/ail_simplifier.py +0 -0
  88. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/ailgraph_walker.py +0 -0
  89. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/block_io_finder.py +0 -0
  90. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/block_similarity.py +0 -0
  91. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/block_simplifier.py +0 -0
  92. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/call_counter.py +0 -0
  93. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/callsite_maker.py +0 -0
  94. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/ccall_rewriters/__init__.py +0 -0
  95. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +0 -0
  96. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +0 -0
  97. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/clinic.py +0 -0
  98. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/decompilation_cache.py +0 -0
  99. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/decompilation_options.py +0 -0
  100. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/decompiler.py +0 -0
  101. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/empty_node_remover.py +0 -0
  102. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/expression_counters.py +0 -0
  103. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/expression_narrower.py +0 -0
  104. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/goto_manager.py +0 -0
  105. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/graph_region.py +0 -0
  106. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/jump_target_collector.py +0 -0
  107. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +0 -0
  108. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +0 -0
  109. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/code_motion.py +0 -0
  110. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/const_derefs.py +0 -0
  111. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +0 -0
  112. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/div_simplifier.py +0 -0
  113. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/engine_base.py +0 -0
  114. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +0 -0
  115. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +0 -0
  116. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +0 -0
  117. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +0 -0
  118. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/ite_region_converter.py +0 -0
  119. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/mod_simplifier.py +0 -0
  120. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/multi_simplifier.py +0 -0
  121. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +0 -0
  122. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +0 -0
  123. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +0 -0
  124. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +0 -0
  125. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/spilled_register_finder.py +0 -0
  126. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +0 -0
  127. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +0 -0
  128. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +0 -0
  129. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +0 -0
  130. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/__init__.py +0 -0
  131. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +0 -0
  132. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +0 -0
  133. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +0 -0
  134. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +0 -0
  135. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +0 -0
  136. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +0 -0
  137. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +0 -0
  138. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/base.py +0 -0
  139. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +0 -0
  140. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +0 -0
  141. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +0 -0
  142. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +0 -0
  143. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/bswap.py +0 -0
  144. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +0 -0
  145. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +0 -0
  146. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +0 -0
  147. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +0 -0
  148. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +0 -0
  149. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +0 -0
  150. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/eager_eval.py +0 -0
  151. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +0 -0
  152. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +0 -0
  153. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +0 -0
  154. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +0 -0
  155. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +0 -0
  156. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +0 -0
  157. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +0 -0
  158. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +0 -0
  159. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +0 -0
  160. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +0 -0
  161. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +0 -0
  162. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +0 -0
  163. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +0 -0
  164. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +0 -0
  165. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +0 -0
  166. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +0 -0
  167. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +0 -0
  168. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +0 -0
  169. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +0 -0
  170. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/rol_ror.py +0 -0
  171. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +0 -0
  172. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +0 -0
  173. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +0 -0
  174. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +0 -0
  175. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +0 -0
  176. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_identifier.py +0 -0
  177. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/__init__.py +0 -0
  178. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +0 -0
  179. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +0 -0
  180. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/expr_folding.py +0 -0
  181. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/goto.py +0 -0
  182. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/if_.py +0 -0
  183. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/ifelse.py +0 -0
  184. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/loop.py +0 -0
  185. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/node_address_finder.py +0 -0
  186. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/region_simplifier.py +0 -0
  187. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +0 -0
  188. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +0 -0
  189. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/region_walker.py +0 -0
  190. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/return_maker.py +0 -0
  191. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/seq_to_blocks.py +0 -0
  192. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/sequence_walker.py +0 -0
  193. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structured_codegen/__init__.py +0 -0
  194. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structured_codegen/base.py +0 -0
  195. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structured_codegen/dummy.py +0 -0
  196. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structured_codegen/dwarf_import.py +0 -0
  197. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/__init__.py +0 -0
  198. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/dream.py +0 -0
  199. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/recursive_structurer.py +0 -0
  200. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/structurer_base.py +0 -0
  201. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/structuring/structurer_nodes.py +0 -0
  202. {angr-9.2.111 → angr-9.2.113}/angr/analyses/decompiler/utils.py +0 -0
  203. {angr-9.2.111 → angr-9.2.113}/angr/analyses/disassembly.py +0 -0
  204. {angr-9.2.111 → angr-9.2.113}/angr/analyses/disassembly_utils.py +0 -0
  205. {angr-9.2.111 → angr-9.2.113}/angr/analyses/dominance_frontier.py +0 -0
  206. {angr-9.2.111 → angr-9.2.113}/angr/analyses/find_objects_static.py +0 -0
  207. {angr-9.2.111 → angr-9.2.113}/angr/analyses/flirt.py +0 -0
  208. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/__init__.py +0 -0
  209. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/forward_analysis.py +0 -0
  210. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/job_info.py +0 -0
  211. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/__init__.py +0 -0
  212. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/call_graph.py +0 -0
  213. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/function_graph.py +0 -0
  214. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/graph.py +0 -0
  215. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/loop.py +0 -0
  216. {angr-9.2.111 → angr-9.2.113}/angr/analyses/forward_analysis/visitors/single_node_graph.py +0 -0
  217. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/__init__.py +0 -0
  218. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/custom_callable.py +0 -0
  219. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/errors.py +0 -0
  220. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/func.py +0 -0
  221. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/__init__.py +0 -0
  222. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/atoi.py +0 -0
  223. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/based_atoi.py +0 -0
  224. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/fdprintf.py +0 -0
  225. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/free.py +0 -0
  226. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/int2str.py +0 -0
  227. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/malloc.py +0 -0
  228. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/memcmp.py +0 -0
  229. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/memcpy.py +0 -0
  230. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/memset.py +0 -0
  231. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/printf.py +0 -0
  232. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/recv_until.py +0 -0
  233. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/skip_calloc.py +0 -0
  234. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/skip_realloc.py +0 -0
  235. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/skip_recv_n.py +0 -0
  236. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/snprintf.py +0 -0
  237. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/sprintf.py +0 -0
  238. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strcasecmp.py +0 -0
  239. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strcmp.py +0 -0
  240. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strcpy.py +0 -0
  241. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strlen.py +0 -0
  242. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strncmp.py +0 -0
  243. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strncpy.py +0 -0
  244. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/functions/strtol.py +0 -0
  245. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/identify.py +0 -0
  246. {angr-9.2.111 → angr-9.2.113}/angr/analyses/identifier/runner.py +0 -0
  247. {angr-9.2.111 → angr-9.2.113}/angr/analyses/init_finder.py +0 -0
  248. {angr-9.2.111 → angr-9.2.113}/angr/analyses/loop_analysis.py +0 -0
  249. {angr-9.2.111 → angr-9.2.113}/angr/analyses/loopfinder.py +0 -0
  250. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/__init__.py +0 -0
  251. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/engine_ail.py +0 -0
  252. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/engine_base.py +0 -0
  253. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/engine_vex.py +0 -0
  254. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/outdated_definition_walker.py +0 -0
  255. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/propagator.py +0 -0
  256. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/tmpvar_finder.py +0 -0
  257. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/top_checker_mixin.py +0 -0
  258. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/values.py +0 -0
  259. {angr-9.2.111 → angr-9.2.113}/angr/analyses/propagator/vex_vars.py +0 -0
  260. {angr-9.2.111 → angr-9.2.113}/angr/analyses/proximity_graph.py +0 -0
  261. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/__init__.py +0 -0
  262. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/call_trace.py +0 -0
  263. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/dep_graph.py +0 -0
  264. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/engine_ail.py +0 -0
  265. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/engine_vex.py +0 -0
  266. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/external_codeloc.py +0 -0
  267. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/function_handler.py +0 -0
  268. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/heap_allocator.py +0 -0
  269. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/rd_initializer.py +0 -0
  270. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reaching_definitions/subject.py +0 -0
  271. {angr-9.2.111 → angr-9.2.113}/angr/analyses/reassembler.py +0 -0
  272. {angr-9.2.111 → angr-9.2.113}/angr/analyses/soot_class_hierarchy.py +0 -0
  273. {angr-9.2.111 → angr-9.2.113}/angr/analyses/stack_pointer_tracker.py +0 -0
  274. {angr-9.2.111 → angr-9.2.113}/angr/analyses/static_hooker.py +0 -0
  275. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/__init__.py +0 -0
  276. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/dfa.py +0 -0
  277. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/lifter.py +0 -0
  278. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/simple_solver.py +0 -0
  279. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/translator.py +0 -0
  280. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/typeconsts.py +0 -0
  281. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/typehoon.py +0 -0
  282. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/typevars.py +0 -0
  283. {angr-9.2.111 → angr-9.2.113}/angr/analyses/typehoon/variance.py +0 -0
  284. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/__init__.py +0 -0
  285. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/annotations.py +0 -0
  286. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/engine_ail.py +0 -0
  287. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/engine_base.py +0 -0
  288. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/engine_vex.py +0 -0
  289. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/irsb_scanner.py +0 -0
  290. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/variable_recovery.py +0 -0
  291. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/variable_recovery_base.py +0 -0
  292. {angr-9.2.111 → angr-9.2.113}/angr/analyses/variable_recovery/variable_recovery_fast.py +0 -0
  293. {angr-9.2.111 → angr-9.2.113}/angr/analyses/veritesting.py +0 -0
  294. {angr-9.2.111 → angr-9.2.113}/angr/analyses/vfg.py +0 -0
  295. {angr-9.2.111 → angr-9.2.113}/angr/analyses/vsa_ddg.py +0 -0
  296. {angr-9.2.111 → angr-9.2.113}/angr/analyses/vtable.py +0 -0
  297. {angr-9.2.111 → angr-9.2.113}/angr/analyses/xrefs.py +0 -0
  298. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/__init__.py +0 -0
  299. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/db.py +0 -0
  300. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/models.py +0 -0
  301. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/__init__.py +0 -0
  302. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/cfg_model.py +0 -0
  303. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/comments.py +0 -0
  304. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/funcs.py +0 -0
  305. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/kb.py +0 -0
  306. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/labels.py +0 -0
  307. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/structured_code.py +0 -0
  308. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/variables.py +0 -0
  309. {angr-9.2.111 → angr-9.2.113}/angr/angrdb/serializers/xrefs.py +0 -0
  310. {angr-9.2.111 → angr-9.2.113}/angr/annocfg.py +0 -0
  311. {angr-9.2.111 → angr-9.2.113}/angr/blade.py +0 -0
  312. {angr-9.2.111 → angr-9.2.113}/angr/block.py +0 -0
  313. {angr-9.2.111 → angr-9.2.113}/angr/callable.py +0 -0
  314. {angr-9.2.111 → angr-9.2.113}/angr/code_location.py +0 -0
  315. {angr-9.2.111 → angr-9.2.113}/angr/codenode.py +0 -0
  316. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/__init__.py +0 -0
  317. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/any.py +0 -0
  318. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/any_named.py +0 -0
  319. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/controlled_data.py +0 -0
  320. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/eval.py +0 -0
  321. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/logging.py +0 -0
  322. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/max.py +0 -0
  323. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/nonzero.py +0 -0
  324. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/nonzero_range.py +0 -0
  325. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/norepeats.py +0 -0
  326. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/norepeats_range.py +0 -0
  327. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/range.py +0 -0
  328. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/signed_add.py +0 -0
  329. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/single.py +0 -0
  330. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/solutions.py +0 -0
  331. {angr-9.2.111 → angr-9.2.113}/angr/concretization_strategies/unlimited_range.py +0 -0
  332. {angr-9.2.111 → angr-9.2.113}/angr/distributed/__init__.py +0 -0
  333. {angr-9.2.111 → angr-9.2.113}/angr/distributed/server.py +0 -0
  334. {angr-9.2.111 → angr-9.2.113}/angr/distributed/worker.py +0 -0
  335. {angr-9.2.111 → angr-9.2.113}/angr/engines/__init__.py +0 -0
  336. {angr-9.2.111 → angr-9.2.113}/angr/engines/concrete.py +0 -0
  337. {angr-9.2.111 → angr-9.2.113}/angr/engines/engine.py +0 -0
  338. {angr-9.2.111 → angr-9.2.113}/angr/engines/failure.py +0 -0
  339. {angr-9.2.111 → angr-9.2.113}/angr/engines/hook.py +0 -0
  340. {angr-9.2.111 → angr-9.2.113}/angr/engines/light/__init__.py +0 -0
  341. {angr-9.2.111 → angr-9.2.113}/angr/engines/light/data.py +0 -0
  342. {angr-9.2.111 → angr-9.2.113}/angr/engines/light/engine.py +0 -0
  343. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/__init__.py +0 -0
  344. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/behavior.py +0 -0
  345. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/cc.py +0 -0
  346. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/emulate.py +0 -0
  347. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/engine.py +0 -0
  348. {angr-9.2.111 → angr-9.2.113}/angr/engines/pcode/lifter.py +0 -0
  349. {angr-9.2.111 → angr-9.2.113}/angr/engines/procedure.py +0 -0
  350. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/__init__.py +0 -0
  351. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/engine.py +0 -0
  352. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/exceptions.py +0 -0
  353. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/__init__.py +0 -0
  354. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/arrayref.py +0 -0
  355. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/base.py +0 -0
  356. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/binop.py +0 -0
  357. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/cast.py +0 -0
  358. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/condition.py +0 -0
  359. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/constants.py +0 -0
  360. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/instanceOf.py +0 -0
  361. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/instancefieldref.py +0 -0
  362. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/invoke.py +0 -0
  363. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/length.py +0 -0
  364. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/local.py +0 -0
  365. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/new.py +0 -0
  366. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/newArray.py +0 -0
  367. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/newMultiArray.py +0 -0
  368. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/paramref.py +0 -0
  369. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/phi.py +0 -0
  370. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/staticfieldref.py +0 -0
  371. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/thisref.py +0 -0
  372. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/expressions/unsupported.py +0 -0
  373. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/field_dispatcher.py +0 -0
  374. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/method_dispatcher.py +0 -0
  375. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/__init__.py +0 -0
  376. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/assign.py +0 -0
  377. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/base.py +0 -0
  378. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/goto.py +0 -0
  379. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/identity.py +0 -0
  380. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/if_.py +0 -0
  381. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/invoke.py +0 -0
  382. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/return_.py +0 -0
  383. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/switch.py +0 -0
  384. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/statements/throw.py +0 -0
  385. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/__init__.py +0 -0
  386. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/arrayref.py +0 -0
  387. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/base.py +0 -0
  388. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/constants.py +0 -0
  389. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/instancefieldref.py +0 -0
  390. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/local.py +0 -0
  391. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/paramref.py +0 -0
  392. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/staticfieldref.py +0 -0
  393. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/strref.py +0 -0
  394. {angr-9.2.111 → angr-9.2.113}/angr/engines/soot/values/thisref.py +0 -0
  395. {angr-9.2.111 → angr-9.2.113}/angr/engines/successors.py +0 -0
  396. {angr-9.2.111 → angr-9.2.113}/angr/engines/syscall.py +0 -0
  397. {angr-9.2.111 → angr-9.2.113}/angr/engines/unicorn.py +0 -0
  398. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/__init__.py +0 -0
  399. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/claripy/__init__.py +0 -0
  400. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/claripy/ccall.py +0 -0
  401. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/claripy/datalayer.py +0 -0
  402. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/claripy/irop.py +0 -0
  403. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/__init__.py +0 -0
  404. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/actions.py +0 -0
  405. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/concretizers.py +0 -0
  406. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/dirty.py +0 -0
  407. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/heavy.py +0 -0
  408. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/inspect.py +0 -0
  409. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/resilience.py +0 -0
  410. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/heavy/super_fastpath.py +0 -0
  411. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/lifter.py +0 -0
  412. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/light/__init__.py +0 -0
  413. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/light/light.py +0 -0
  414. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/light/resilience.py +0 -0
  415. {angr-9.2.111 → angr-9.2.113}/angr/engines/vex/light/slicing.py +0 -0
  416. {angr-9.2.111 → angr-9.2.113}/angr/errors.py +0 -0
  417. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/__init__.py +0 -0
  418. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/bucketizer.py +0 -0
  419. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/common.py +0 -0
  420. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/dfs.py +0 -0
  421. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/director.py +0 -0
  422. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/driller_core.py +0 -0
  423. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/explorer.py +0 -0
  424. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/lengthlimiter.py +0 -0
  425. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/local_loop_seer.py +0 -0
  426. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/loop_seer.py +0 -0
  427. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/manual_mergepoint.py +0 -0
  428. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/memory_watcher.py +0 -0
  429. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/oppologist.py +0 -0
  430. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/slicecutor.py +0 -0
  431. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/spiller.py +0 -0
  432. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/spiller_db.py +0 -0
  433. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/stochastic.py +0 -0
  434. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/stub_stasher.py +0 -0
  435. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/suggestions.py +0 -0
  436. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/symbion.py +0 -0
  437. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/tech_builder.py +0 -0
  438. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/threading.py +0 -0
  439. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/timeout.py +0 -0
  440. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/tracer.py +0 -0
  441. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/unique.py +0 -0
  442. {angr-9.2.111 → angr-9.2.113}/angr/exploration_techniques/veritesting.py +0 -0
  443. {angr-9.2.111 → angr-9.2.113}/angr/factory.py +0 -0
  444. {angr-9.2.111 → angr-9.2.113}/angr/flirt/__init__.py +0 -0
  445. {angr-9.2.111 → angr-9.2.113}/angr/flirt/build_sig.py +0 -0
  446. {angr-9.2.111 → angr-9.2.113}/angr/graph_utils.py +0 -0
  447. {angr-9.2.111 → angr-9.2.113}/angr/keyed_region.py +0 -0
  448. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_base/__init__.py +0 -0
  449. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_base/knowledge_base.py +0 -0
  450. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/__init__.py +0 -0
  451. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/callsite_prototypes.py +0 -0
  452. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/__init__.py +0 -0
  453. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/cfg_manager.py +0 -0
  454. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/cfg_model.py +0 -0
  455. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/cfg_node.py +0 -0
  456. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/indirect_jump.py +0 -0
  457. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/cfg/memory_data.py +0 -0
  458. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/comments.py +0 -0
  459. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/custom_strings.py +0 -0
  460. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/data.py +0 -0
  461. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/debug_variables.py +0 -0
  462. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/functions/__init__.py +0 -0
  463. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/functions/function.py +0 -0
  464. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/functions/function_manager.py +0 -0
  465. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/functions/function_parser.py +0 -0
  466. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/functions/soot_function.py +0 -0
  467. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/indirect_jumps.py +0 -0
  468. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/__init__.py +0 -0
  469. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/atoms.py +0 -0
  470. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/constants.py +0 -0
  471. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/definition.py +0 -0
  472. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/environment.py +0 -0
  473. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/heap_address.py +0 -0
  474. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/key_definition_manager.py +0 -0
  475. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/liveness.py +0 -0
  476. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/rd_model.py +0 -0
  477. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/tag.py +0 -0
  478. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/undefined.py +0 -0
  479. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/unknown_size.py +0 -0
  480. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/key_definitions/uses.py +0 -0
  481. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/labels.py +0 -0
  482. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/patches.py +0 -0
  483. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/plugin.py +0 -0
  484. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/propagations/__init__.py +0 -0
  485. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/propagations/prop_value.py +0 -0
  486. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/propagations/propagation_manager.py +0 -0
  487. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/propagations/propagation_model.py +0 -0
  488. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/structured_code/__init__.py +0 -0
  489. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/structured_code/manager.py +0 -0
  490. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/sync/__init__.py +0 -0
  491. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/sync/sync_controller.py +0 -0
  492. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/types.py +0 -0
  493. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/variables/__init__.py +0 -0
  494. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/variables/variable_access.py +0 -0
  495. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/xrefs/__init__.py +0 -0
  496. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/xrefs/xref.py +0 -0
  497. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/xrefs/xref_manager.py +0 -0
  498. {angr-9.2.111 → angr-9.2.113}/angr/knowledge_plugins/xrefs/xref_types.py +0 -0
  499. {angr-9.2.111 → angr-9.2.113}/angr/misc/__init__.py +0 -0
  500. {angr-9.2.111 → angr-9.2.113}/angr/misc/ansi.py +0 -0
  501. {angr-9.2.111 → angr-9.2.113}/angr/misc/autoimport.py +0 -0
  502. {angr-9.2.111 → angr-9.2.113}/angr/misc/bug_report.py +0 -0
  503. {angr-9.2.111 → angr-9.2.113}/angr/misc/hookset.py +0 -0
  504. {angr-9.2.111 → angr-9.2.113}/angr/misc/loggers.py +0 -0
  505. {angr-9.2.111 → angr-9.2.113}/angr/misc/picklable_lock.py +0 -0
  506. {angr-9.2.111 → angr-9.2.113}/angr/misc/plugins.py +0 -0
  507. {angr-9.2.111 → angr-9.2.113}/angr/misc/range.py +0 -0
  508. {angr-9.2.111 → angr-9.2.113}/angr/misc/testing.py +0 -0
  509. {angr-9.2.111 → angr-9.2.113}/angr/misc/ux.py +0 -0
  510. {angr-9.2.111 → angr-9.2.113}/angr/misc/weakpatch.py +0 -0
  511. {angr-9.2.111 → angr-9.2.113}/angr/procedures/__init__.py +0 -0
  512. {angr-9.2.111 → angr-9.2.113}/angr/procedures/advapi32/__init__.py +0 -0
  513. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/__init__.py +0 -0
  514. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/_terminate.py +0 -0
  515. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/allocate.py +0 -0
  516. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/deallocate.py +0 -0
  517. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/fdwait.py +0 -0
  518. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/random.py +0 -0
  519. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/receive.py +0 -0
  520. {angr-9.2.111 → angr-9.2.113}/angr/procedures/cgc/transmit.py +0 -0
  521. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/__init__.py +0 -0
  522. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/cgc.py +0 -0
  523. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/glibc.py +0 -0
  524. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/gnulib.py +0 -0
  525. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/libstdcpp.py +0 -0
  526. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/linux_kernel.py +0 -0
  527. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/linux_loader.py +0 -0
  528. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/msvcr.py +0 -0
  529. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/parse_syscalls_from_local_system.py +0 -0
  530. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/parse_win32json.py +0 -0
  531. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/types_win32.py +0 -0
  532. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +0 -0
  533. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +0 -0
  534. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_clfs.py +0 -0
  535. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_fltmgr.py +0 -0
  536. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_fwpkclnt.py +0 -0
  537. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_fwpuclnt.py +0 -0
  538. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_gdi32.py +0 -0
  539. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_hal.py +0 -0
  540. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_ksecdd.py +0 -0
  541. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_ndis.py +0 -0
  542. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_ntoskrnl.py +0 -0
  543. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_offreg.py +0 -0
  544. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_pshed.py +0 -0
  545. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_secur32.py +0 -0
  546. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/wdk_vhfum.py +0 -0
  547. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_aclui.py +0 -0
  548. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_activeds.py +0 -0
  549. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_advapi32.py +0 -0
  550. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_advpack.py +0 -0
  551. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_amsi.py +0 -0
  552. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +0 -0
  553. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +0 -0
  554. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +0 -0
  555. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +0 -0
  556. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +0 -0
  557. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +0 -0
  558. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +0 -0
  559. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +0 -0
  560. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +0 -0
  561. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +0 -0
  562. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +0 -0
  563. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +0 -0
  564. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +0 -0
  565. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +0 -0
  566. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +0 -0
  567. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +0 -0
  568. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +0 -0
  569. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +0 -0
  570. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +0 -0
  571. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +0 -0
  572. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +0 -0
  573. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +0 -0
  574. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +0 -0
  575. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +0 -0
  576. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +0 -0
  577. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +0 -0
  578. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +0 -0
  579. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +0 -0
  580. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +0 -0
  581. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +0 -0
  582. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +0 -0
  583. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +0 -0
  584. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +0 -0
  585. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +0 -0
  586. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +0 -0
  587. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +0 -0
  588. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +0 -0
  589. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +0 -0
  590. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +0 -0
  591. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +0 -0
  592. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +0 -0
  593. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +0 -0
  594. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +0 -0
  595. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +0 -0
  596. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +0 -0
  597. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +0 -0
  598. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +0 -0
  599. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +0 -0
  600. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +0 -0
  601. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +0 -0
  602. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +0 -0
  603. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +0 -0
  604. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +0 -0
  605. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +0 -0
  606. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +0 -0
  607. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +0 -0
  608. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +0 -0
  609. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +0 -0
  610. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +0 -0
  611. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +0 -0
  612. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +0 -0
  613. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +0 -0
  614. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +0 -0
  615. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +0 -0
  616. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +0 -0
  617. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +0 -0
  618. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_apphelp.py +0 -0
  619. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_authz.py +0 -0
  620. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_avicap32.py +0 -0
  621. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_avifil32.py +0 -0
  622. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_avrt.py +0 -0
  623. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bcp47mrm.py +0 -0
  624. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bcrypt.py +0 -0
  625. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bcryptprimitives.py +0 -0
  626. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bluetoothapis.py +0 -0
  627. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bthprops.py +0 -0
  628. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_bthprops_cpl.py +0 -0
  629. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cabinet.py +0 -0
  630. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_certadm.py +0 -0
  631. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_certpoleng.py +0 -0
  632. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cfgmgr32.py +0 -0
  633. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_chakra.py +0 -0
  634. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cldapi.py +0 -0
  635. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_clfsw32.py +0 -0
  636. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_clusapi.py +0 -0
  637. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_comctl32.py +0 -0
  638. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_comdlg32.py +0 -0
  639. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_compstui.py +0 -0
  640. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_computecore.py +0 -0
  641. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_computenetwork.py +0 -0
  642. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_computestorage.py +0 -0
  643. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_comsvcs.py +0 -0
  644. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_coremessaging.py +0 -0
  645. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_credui.py +0 -0
  646. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_crypt32.py +0 -0
  647. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cryptnet.py +0 -0
  648. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cryptui.py +0 -0
  649. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cryptxml.py +0 -0
  650. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_cscapi.py +0 -0
  651. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d2d1.py +0 -0
  652. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3d10.py +0 -0
  653. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3d10_1.py +0 -0
  654. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3d11.py +0 -0
  655. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3d12.py +0 -0
  656. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3d9.py +0 -0
  657. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3dcompiler_47.py +0 -0
  658. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_d3dcsx.py +0 -0
  659. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_davclnt.py +0 -0
  660. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dbgeng.py +0 -0
  661. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dbghelp.py +0 -0
  662. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dbgmodel.py +0 -0
  663. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dciman32.py +0 -0
  664. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dcomp.py +0 -0
  665. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ddraw.py +0 -0
  666. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_deviceaccess.py +0 -0
  667. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dflayout.py +0 -0
  668. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dhcpcsvc.py +0 -0
  669. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dhcpcsvc6.py +0 -0
  670. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dhcpsapi.py +0 -0
  671. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_diagnosticdataquery.py +0 -0
  672. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dinput8.py +0 -0
  673. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_directml.py +0 -0
  674. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dmprocessxmlfiltered.py +0 -0
  675. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dnsapi.py +0 -0
  676. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_drt.py +0 -0
  677. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_drtprov.py +0 -0
  678. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_drttransport.py +0 -0
  679. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dsound.py +0 -0
  680. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dsparse.py +0 -0
  681. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dsprop.py +0 -0
  682. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dssec.py +0 -0
  683. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dsuiext.py +0 -0
  684. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dwmapi.py +0 -0
  685. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dwrite.py +0 -0
  686. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dxcompiler.py +0 -0
  687. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dxcore.py +0 -0
  688. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dxgi.py +0 -0
  689. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_dxva2.py +0 -0
  690. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_eappcfg.py +0 -0
  691. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_eappprxy.py +0 -0
  692. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_efswrt.py +0 -0
  693. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_elscore.py +0 -0
  694. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_esent.py +0 -0
  695. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_evr.py +0 -0
  696. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_faultrep.py +0 -0
  697. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_fhsvcctl.py +0 -0
  698. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_firewallapi.py +0 -0
  699. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_fltlib.py +0 -0
  700. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_fontsub.py +0 -0
  701. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_forceinline.py +0 -0
  702. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_fwpuclnt.py +0 -0
  703. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_fxsutility.py +0 -0
  704. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_gdi32.py +0 -0
  705. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_gdiplus.py +0 -0
  706. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_glu32.py +0 -0
  707. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_gpedit.py +0 -0
  708. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_hhctrl_ocx.py +0 -0
  709. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_hid.py +0 -0
  710. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_hlink.py +0 -0
  711. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_hrtfapo.py +0 -0
  712. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_httpapi.py +0 -0
  713. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_icm32.py +0 -0
  714. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_icmui.py +0 -0
  715. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_icu.py +0 -0
  716. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ieframe.py +0 -0
  717. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_imagehlp.py +0 -0
  718. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_imgutil.py +0 -0
  719. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_imm32.py +0 -0
  720. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_infocardapi.py +0 -0
  721. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_inkobjcore.py +0 -0
  722. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_iphlpapi.py +0 -0
  723. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_iscsidsc.py +0 -0
  724. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +0 -0
  725. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_kernel32.py +0 -0
  726. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_kernelbase.py +0 -0
  727. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_keycredmgr.py +0 -0
  728. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ksproxy_ax.py +0 -0
  729. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ksuser.py +0 -0
  730. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ktmw32.py +0 -0
  731. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_licenseprotection.py +0 -0
  732. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_loadperf.py +0 -0
  733. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_magnification.py +0 -0
  734. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mapi32.py +0 -0
  735. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mdmlocalmanagement.py +0 -0
  736. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mdmregistration.py +0 -0
  737. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mf.py +0 -0
  738. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfcore.py +0 -0
  739. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfplat.py +0 -0
  740. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfplay.py +0 -0
  741. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfreadwrite.py +0 -0
  742. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfsensorgroup.py +0 -0
  743. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mfsrcsnk.py +0 -0
  744. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mgmtapi.py +0 -0
  745. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mi.py +0 -0
  746. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mmdevapi.py +0 -0
  747. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mpr.py +0 -0
  748. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mprapi.py +0 -0
  749. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mqrt.py +0 -0
  750. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mrmsupport.py +0 -0
  751. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msacm32.py +0 -0
  752. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msajapi.py +0 -0
  753. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mscms.py +0 -0
  754. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mscoree.py +0 -0
  755. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msctfmonitor.py +0 -0
  756. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msdelta.py +0 -0
  757. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msdmo.py +0 -0
  758. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msdrm.py +0 -0
  759. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msi.py +0 -0
  760. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msimg32.py +0 -0
  761. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mspatcha.py +0 -0
  762. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mspatchc.py +0 -0
  763. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msports.py +0 -0
  764. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msrating.py +0 -0
  765. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mssign32.py +0 -0
  766. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mstask.py +0 -0
  767. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_msvfw32.py +0 -0
  768. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mswsock.py +0 -0
  769. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_mtxdm.py +0 -0
  770. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ncrypt.py +0 -0
  771. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ndfapi.py +0 -0
  772. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_netapi32.py +0 -0
  773. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_netsh.py +0 -0
  774. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_netshell.py +0 -0
  775. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_newdev.py +0 -0
  776. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ninput.py +0 -0
  777. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_normaliz.py +0 -0
  778. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ntdll.py +0 -0
  779. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ntdllk.py +0 -0
  780. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ntdsapi.py +0 -0
  781. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ntlanman.py +0 -0
  782. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_odbc32.py +0 -0
  783. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_odbcbcp.py +0 -0
  784. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ole32.py +0 -0
  785. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_oleacc.py +0 -0
  786. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_oleaut32.py +0 -0
  787. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_oledlg.py +0 -0
  788. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ondemandconnroutehelper.py +0 -0
  789. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_opengl32.py +0 -0
  790. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_opmxbox.py +0 -0
  791. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_p2p.py +0 -0
  792. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_p2pgraph.py +0 -0
  793. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_pdh.py +0 -0
  794. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_peerdist.py +0 -0
  795. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_powrprof.py +0 -0
  796. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_prntvpt.py +0 -0
  797. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_projectedfslib.py +0 -0
  798. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_propsys.py +0 -0
  799. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_psapi.py +0 -0
  800. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_quartz.py +0 -0
  801. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_query.py +0 -0
  802. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_qwave.py +0 -0
  803. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rasapi32.py +0 -0
  804. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rasdlg.py +0 -0
  805. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_resutils.py +0 -0
  806. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rometadata.py +0 -0
  807. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rpcns4.py +0 -0
  808. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rpcproxy.py +0 -0
  809. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rpcrt4.py +0 -0
  810. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rstrtmgr.py +0 -0
  811. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rtm.py +0 -0
  812. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rtutils.py +0 -0
  813. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_rtworkq.py +0 -0
  814. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sas.py +0 -0
  815. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_scarddlg.py +0 -0
  816. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_schannel.py +0 -0
  817. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sechost.py +0 -0
  818. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_secur32.py +0 -0
  819. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sensapi.py +0 -0
  820. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sensorsutilsv2.py +0 -0
  821. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_setupapi.py +0 -0
  822. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sfc.py +0 -0
  823. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_shdocvw.py +0 -0
  824. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_shell32.py +0 -0
  825. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_shlwapi.py +0 -0
  826. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_slc.py +0 -0
  827. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_slcext.py +0 -0
  828. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_slwga.py +0 -0
  829. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_snmpapi.py +0 -0
  830. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_spoolss.py +0 -0
  831. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_srclient.py +0 -0
  832. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_srpapi.py +0 -0
  833. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sspicli.py +0 -0
  834. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_sti.py +0 -0
  835. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_t2embed.py +0 -0
  836. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_tapi32.py +0 -0
  837. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_tbs.py +0 -0
  838. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_tdh.py +0 -0
  839. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_tokenbinding.py +0 -0
  840. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_traffic.py +0 -0
  841. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_txfw32.py +0 -0
  842. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ualapi.py +0 -0
  843. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_uiautomationcore.py +0 -0
  844. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_urlmon.py +0 -0
  845. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_user32.py +0 -0
  846. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_userenv.py +0 -0
  847. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_usp10.py +0 -0
  848. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_uxtheme.py +0 -0
  849. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_verifier.py +0 -0
  850. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_version.py +0 -0
  851. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_vertdll.py +0 -0
  852. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_virtdisk.py +0 -0
  853. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_vmdevicehost.py +0 -0
  854. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +0 -0
  855. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_vssapi.py +0 -0
  856. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wcmapi.py +0 -0
  857. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wdsbp.py +0 -0
  858. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wdsclientapi.py +0 -0
  859. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wdsmc.py +0 -0
  860. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wdspxe.py +0 -0
  861. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wdstptc.py +0 -0
  862. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_webauthn.py +0 -0
  863. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_webservices.py +0 -0
  864. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_websocket.py +0 -0
  865. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wecapi.py +0 -0
  866. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wer.py +0 -0
  867. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wevtapi.py +0 -0
  868. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winbio.py +0 -0
  869. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windows_ai_machinelearning.py +0 -0
  870. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windows_data_pdf.py +0 -0
  871. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windows_media_mediacontrol.py +0 -0
  872. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windows_networking.py +0 -0
  873. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windows_ui_xaml.py +0 -0
  874. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_windowscodecs.py +0 -0
  875. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winfax.py +0 -0
  876. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winhttp.py +0 -0
  877. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winhvemulation.py +0 -0
  878. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winhvplatform.py +0 -0
  879. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wininet.py +0 -0
  880. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winml.py +0 -0
  881. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winmm.py +0 -0
  882. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winscard.py +0 -0
  883. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winspool.py +0 -0
  884. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winspool_drv.py +0 -0
  885. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wintrust.py +0 -0
  886. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_winusb.py +0 -0
  887. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wlanapi.py +0 -0
  888. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wlanui.py +0 -0
  889. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wldap32.py +0 -0
  890. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wldp.py +0 -0
  891. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wmvcore.py +0 -0
  892. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wnvapi.py +0 -0
  893. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wofutil.py +0 -0
  894. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_ws2_32.py +0 -0
  895. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wscapi.py +0 -0
  896. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wsclient.py +0 -0
  897. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wsdapi.py +0 -0
  898. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wsmsvc.py +0 -0
  899. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wsnmp32.py +0 -0
  900. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_wtsapi32.py +0 -0
  901. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xaudio2_8.py +0 -0
  902. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xinput1_4.py +0 -0
  903. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xinputuap.py +0 -0
  904. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xmllite.py +0 -0
  905. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xolehlp.py +0 -0
  906. {angr-9.2.111 → angr-9.2.113}/angr/procedures/definitions/win32_xpsprint.py +0 -0
  907. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__ctype_b_loc.py +0 -0
  908. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__ctype_tolower_loc.py +0 -0
  909. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__ctype_toupper_loc.py +0 -0
  910. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__errno_location.py +0 -0
  911. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__init__.py +0 -0
  912. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__libc_init.py +0 -0
  913. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/__libc_start_main.py +0 -0
  914. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/dynamic_loading.py +0 -0
  915. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/scanf.py +0 -0
  916. {angr-9.2.111 → angr-9.2.113}/angr/procedures/glibc/sscanf.py +0 -0
  917. {angr-9.2.111 → angr-9.2.113}/angr/procedures/gnulib/__init__.py +0 -0
  918. {angr-9.2.111 → angr-9.2.113}/angr/procedures/gnulib/xalloc_die.py +0 -0
  919. {angr-9.2.111 → angr-9.2.113}/angr/procedures/gnulib/xstrtol_fatal.py +0 -0
  920. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java/__init__.py +0 -0
  921. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java/unconstrained.py +0 -0
  922. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_io/__init__.py +0 -0
  923. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_io/read.py +0 -0
  924. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_io/write.py +0 -0
  925. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/__init__.py +0 -0
  926. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/array_operations.py +0 -0
  927. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/class_and_interface_operations.py +0 -0
  928. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/field_access.py +0 -0
  929. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/global_and_local_refs.py +0 -0
  930. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/method_calls.py +0 -0
  931. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/not_implemented.py +0 -0
  932. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/object_operations.py +0 -0
  933. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/string_operations.py +0 -0
  934. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_jni/version_information.py +0 -0
  935. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/__init__.py +0 -0
  936. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/character.py +0 -0
  937. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/double.py +0 -0
  938. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/exit.py +0 -0
  939. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/getsimplename.py +0 -0
  940. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/integer.py +0 -0
  941. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/load_library.py +0 -0
  942. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/math.py +0 -0
  943. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/string.py +0 -0
  944. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/stringbuilder.py +0 -0
  945. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_lang/system.py +0 -0
  946. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/__init__.py +0 -0
  947. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/collection.py +0 -0
  948. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/iterator.py +0 -0
  949. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/list.py +0 -0
  950. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/map.py +0 -0
  951. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/random.py +0 -0
  952. {angr-9.2.111 → angr-9.2.113}/angr/procedures/java_util/scanner_nextline.py +0 -0
  953. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/__init__.py +0 -0
  954. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/abort.py +0 -0
  955. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/access.py +0 -0
  956. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/atoi.py +0 -0
  957. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/atol.py +0 -0
  958. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/calloc.py +0 -0
  959. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/closelog.py +0 -0
  960. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/err.py +0 -0
  961. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/error.py +0 -0
  962. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/exit.py +0 -0
  963. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fclose.py +0 -0
  964. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/feof.py +0 -0
  965. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fflush.py +0 -0
  966. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fgetc.py +0 -0
  967. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fgets.py +0 -0
  968. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fopen.py +0 -0
  969. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fprintf.py +0 -0
  970. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fputc.py +0 -0
  971. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fputs.py +0 -0
  972. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fread.py +0 -0
  973. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/free.py +0 -0
  974. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fscanf.py +0 -0
  975. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fseek.py +0 -0
  976. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/ftell.py +0 -0
  977. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/fwrite.py +0 -0
  978. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/getchar.py +0 -0
  979. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/getdelim.py +0 -0
  980. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/getegid.py +0 -0
  981. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/geteuid.py +0 -0
  982. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/getgid.py +0 -0
  983. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/gets.py +0 -0
  984. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/getuid.py +0 -0
  985. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/malloc.py +0 -0
  986. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/memcmp.py +0 -0
  987. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/memcpy.py +0 -0
  988. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/memset.py +0 -0
  989. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/openlog.py +0 -0
  990. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/perror.py +0 -0
  991. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/printf.py +0 -0
  992. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/putchar.py +0 -0
  993. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/puts.py +0 -0
  994. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/rand.py +0 -0
  995. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/realloc.py +0 -0
  996. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/rewind.py +0 -0
  997. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/scanf.py +0 -0
  998. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/setbuf.py +0 -0
  999. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/setvbuf.py +0 -0
  1000. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/snprintf.py +0 -0
  1001. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/sprintf.py +0 -0
  1002. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/srand.py +0 -0
  1003. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/sscanf.py +0 -0
  1004. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/stpcpy.py +0 -0
  1005. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strcat.py +0 -0
  1006. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strchr.py +0 -0
  1007. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strcmp.py +0 -0
  1008. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strcpy.py +0 -0
  1009. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strlen.py +0 -0
  1010. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strncat.py +0 -0
  1011. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strncmp.py +0 -0
  1012. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strncpy.py +0 -0
  1013. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strnlen.py +0 -0
  1014. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strstr.py +0 -0
  1015. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strtol.py +0 -0
  1016. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/strtoul.py +0 -0
  1017. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/system.py +0 -0
  1018. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/time.py +0 -0
  1019. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/tmpnam.py +0 -0
  1020. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/tolower.py +0 -0
  1021. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/toupper.py +0 -0
  1022. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/ungetc.py +0 -0
  1023. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/vsnprintf.py +0 -0
  1024. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libc/wchar.py +0 -0
  1025. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/__init__.py +0 -0
  1026. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/_unwind_resume.py +0 -0
  1027. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/std____throw_bad_alloc.py +0 -0
  1028. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/std____throw_bad_cast.py +0 -0
  1029. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/std____throw_length_error.py +0 -0
  1030. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/std____throw_logic_error.py +0 -0
  1031. {angr-9.2.111 → angr-9.2.113}/angr/procedures/libstdcpp/std__terminate.py +0 -0
  1032. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/__init__.py +0 -0
  1033. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/access.py +0 -0
  1034. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/arch_prctl.py +0 -0
  1035. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/arm_user_helpers.py +0 -0
  1036. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/brk.py +0 -0
  1037. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/cwd.py +0 -0
  1038. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/fstat.py +0 -0
  1039. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/fstat64.py +0 -0
  1040. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/futex.py +0 -0
  1041. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/getegid.py +0 -0
  1042. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/geteuid.py +0 -0
  1043. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/getgid.py +0 -0
  1044. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/getpid.py +0 -0
  1045. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/getrlimit.py +0 -0
  1046. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/gettid.py +0 -0
  1047. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/getuid.py +0 -0
  1048. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/iovec.py +0 -0
  1049. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/lseek.py +0 -0
  1050. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/mmap.py +0 -0
  1051. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/mprotect.py +0 -0
  1052. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/munmap.py +0 -0
  1053. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/openat.py +0 -0
  1054. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/set_tid_address.py +0 -0
  1055. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/sigaction.py +0 -0
  1056. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/sigprocmask.py +0 -0
  1057. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/stat.py +0 -0
  1058. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/sysinfo.py +0 -0
  1059. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/tgkill.py +0 -0
  1060. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/time.py +0 -0
  1061. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/uid.py +0 -0
  1062. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/uname.py +0 -0
  1063. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/unlink.py +0 -0
  1064. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_kernel/vsyscall.py +0 -0
  1065. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_loader/__init__.py +0 -0
  1066. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +0 -0
  1067. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_loader/_dl_rtld_lock.py +0 -0
  1068. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_loader/sim_loader.py +0 -0
  1069. {angr-9.2.111 → angr-9.2.113}/angr/procedures/linux_loader/tls.py +0 -0
  1070. {angr-9.2.111 → angr-9.2.113}/angr/procedures/msvcr/__getmainargs.py +0 -0
  1071. {angr-9.2.111 → angr-9.2.113}/angr/procedures/msvcr/__init__.py +0 -0
  1072. {angr-9.2.111 → angr-9.2.113}/angr/procedures/msvcr/_initterm.py +0 -0
  1073. {angr-9.2.111 → angr-9.2.113}/angr/procedures/msvcr/fmode.py +0 -0
  1074. {angr-9.2.111 → angr-9.2.113}/angr/procedures/ntdll/__init__.py +0 -0
  1075. {angr-9.2.111 → angr-9.2.113}/angr/procedures/ntdll/exceptions.py +0 -0
  1076. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/__init__.py +0 -0
  1077. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/accept.py +0 -0
  1078. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/bind.py +0 -0
  1079. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/bzero.py +0 -0
  1080. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/chroot.py +0 -0
  1081. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/close.py +0 -0
  1082. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/closedir.py +0 -0
  1083. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/dup.py +0 -0
  1084. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/fcntl.py +0 -0
  1085. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/fdopen.py +0 -0
  1086. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/fileno.py +0 -0
  1087. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/fork.py +0 -0
  1088. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/getenv.py +0 -0
  1089. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/gethostbyname.py +0 -0
  1090. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/getpass.py +0 -0
  1091. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/getsockopt.py +0 -0
  1092. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/htonl.py +0 -0
  1093. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/htons.py +0 -0
  1094. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/inet_ntoa.py +0 -0
  1095. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/listen.py +0 -0
  1096. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/mmap.py +0 -0
  1097. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/open.py +0 -0
  1098. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/opendir.py +0 -0
  1099. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/poll.py +0 -0
  1100. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/pread64.py +0 -0
  1101. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/pthread.py +0 -0
  1102. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/pwrite64.py +0 -0
  1103. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/read.py +0 -0
  1104. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/readdir.py +0 -0
  1105. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/recv.py +0 -0
  1106. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/recvfrom.py +0 -0
  1107. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/select.py +0 -0
  1108. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/send.py +0 -0
  1109. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/setsockopt.py +0 -0
  1110. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/sigaction.py +0 -0
  1111. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/sim_time.py +0 -0
  1112. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/sleep.py +0 -0
  1113. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/socket.py +0 -0
  1114. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/strcasecmp.py +0 -0
  1115. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/strdup.py +0 -0
  1116. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/strtok_r.py +0 -0
  1117. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/syslog.py +0 -0
  1118. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/tz.py +0 -0
  1119. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/unlink.py +0 -0
  1120. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/usleep.py +0 -0
  1121. {angr-9.2.111 → angr-9.2.113}/angr/procedures/posix/write.py +0 -0
  1122. {angr-9.2.111 → angr-9.2.113}/angr/procedures/procedure_dict.py +0 -0
  1123. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/CallReturn.py +0 -0
  1124. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/NoReturnUnconstrained.py +0 -0
  1125. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/Nop.py +0 -0
  1126. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/PathTerminator.py +0 -0
  1127. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/Redirect.py +0 -0
  1128. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/ReturnChar.py +0 -0
  1129. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/UnresolvableCallTarget.py +0 -0
  1130. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/UnresolvableJumpTarget.py +0 -0
  1131. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/UserHook.py +0 -0
  1132. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/__init__.py +0 -0
  1133. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/b64_decode.py +0 -0
  1134. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/caller.py +0 -0
  1135. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/crazy_scanf.py +0 -0
  1136. {angr-9.2.111 → angr-9.2.113}/angr/procedures/stubs/format_parser.py +0 -0
  1137. {angr-9.2.111 → angr-9.2.113}/angr/procedures/testing/__init__.py +0 -0
  1138. {angr-9.2.111 → angr-9.2.113}/angr/procedures/testing/manyargs.py +0 -0
  1139. {angr-9.2.111 → angr-9.2.113}/angr/procedures/testing/retreg.py +0 -0
  1140. {angr-9.2.111 → angr-9.2.113}/angr/procedures/tracer/__init__.py +0 -0
  1141. {angr-9.2.111 → angr-9.2.113}/angr/procedures/tracer/random.py +0 -0
  1142. {angr-9.2.111 → angr-9.2.113}/angr/procedures/tracer/receive.py +0 -0
  1143. {angr-9.2.111 → angr-9.2.113}/angr/procedures/tracer/transmit.py +0 -0
  1144. {angr-9.2.111 → angr-9.2.113}/angr/procedures/uclibc/__init__.py +0 -0
  1145. {angr-9.2.111 → angr-9.2.113}/angr/procedures/uclibc/__uClibc_main.py +0 -0
  1146. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/EncodePointer.py +0 -0
  1147. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/ExitProcess.py +0 -0
  1148. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetCommandLine.py +0 -0
  1149. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetCurrentProcessId.py +0 -0
  1150. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetCurrentThreadId.py +0 -0
  1151. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetLastInputInfo.py +0 -0
  1152. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetModuleHandle.py +0 -0
  1153. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/GetProcessAffinityMask.py +0 -0
  1154. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/InterlockedExchange.py +0 -0
  1155. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/IsProcessorFeaturePresent.py +0 -0
  1156. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/VirtualAlloc.py +0 -0
  1157. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/VirtualProtect.py +0 -0
  1158. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/__init__.py +0 -0
  1159. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/critical_section.py +0 -0
  1160. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/dynamic_loading.py +0 -0
  1161. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/file_handles.py +0 -0
  1162. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/gethostbyname.py +0 -0
  1163. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/heap.py +0 -0
  1164. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/is_bad_ptr.py +0 -0
  1165. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/local_storage.py +0 -0
  1166. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/mutex.py +0 -0
  1167. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/sim_time.py +0 -0
  1168. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32/system_paths.py +0 -0
  1169. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32_kernel/ExAllocatePool.py +0 -0
  1170. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32_kernel/ExFreePoolWithTag.py +0 -0
  1171. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win32_kernel/__init__.py +0 -0
  1172. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win_user32/__init__.py +0 -0
  1173. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win_user32/chars.py +0 -0
  1174. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win_user32/keyboard.py +0 -0
  1175. {angr-9.2.111 → angr-9.2.113}/angr/procedures/win_user32/messagebox.py +0 -0
  1176. {angr-9.2.111 → angr-9.2.113}/angr/project.py +0 -0
  1177. {angr-9.2.111 → angr-9.2.113}/angr/protos/__init__.py +0 -0
  1178. {angr-9.2.111 → angr-9.2.113}/angr/protos/cfg_pb2.py +0 -0
  1179. {angr-9.2.111 → angr-9.2.113}/angr/protos/function_pb2.py +0 -0
  1180. {angr-9.2.111 → angr-9.2.113}/angr/protos/primitives_pb2.py +0 -0
  1181. {angr-9.2.111 → angr-9.2.113}/angr/protos/variables_pb2.py +0 -0
  1182. {angr-9.2.111 → angr-9.2.113}/angr/protos/xrefs_pb2.py +0 -0
  1183. {angr-9.2.111 → angr-9.2.113}/angr/py.typed +0 -0
  1184. {angr-9.2.111 → angr-9.2.113}/angr/serializable.py +0 -0
  1185. {angr-9.2.111 → angr-9.2.113}/angr/service.py +0 -0
  1186. {angr-9.2.111 → angr-9.2.113}/angr/sim_manager.py +0 -0
  1187. {angr-9.2.111 → angr-9.2.113}/angr/sim_options.py +0 -0
  1188. {angr-9.2.111 → angr-9.2.113}/angr/sim_procedure.py +0 -0
  1189. {angr-9.2.111 → angr-9.2.113}/angr/sim_state.py +0 -0
  1190. {angr-9.2.111 → angr-9.2.113}/angr/sim_state_options.py +0 -0
  1191. {angr-9.2.111 → angr-9.2.113}/angr/sim_variable.py +0 -0
  1192. {angr-9.2.111 → angr-9.2.113}/angr/simos/__init__.py +0 -0
  1193. {angr-9.2.111 → angr-9.2.113}/angr/simos/cgc.py +0 -0
  1194. {angr-9.2.111 → angr-9.2.113}/angr/simos/javavm.py +0 -0
  1195. {angr-9.2.111 → angr-9.2.113}/angr/simos/linux.py +0 -0
  1196. {angr-9.2.111 → angr-9.2.113}/angr/simos/simos.py +0 -0
  1197. {angr-9.2.111 → angr-9.2.113}/angr/simos/snimmuc_nxp.py +0 -0
  1198. {angr-9.2.111 → angr-9.2.113}/angr/simos/userland.py +0 -0
  1199. {angr-9.2.111 → angr-9.2.113}/angr/simos/windows.py +0 -0
  1200. {angr-9.2.111 → angr-9.2.113}/angr/slicer.py +0 -0
  1201. {angr-9.2.111 → angr-9.2.113}/angr/state_hierarchy.py +0 -0
  1202. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/__init__.py +0 -0
  1203. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/callstack.py +0 -0
  1204. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/cgc.py +0 -0
  1205. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/concrete.py +0 -0
  1206. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/filesystem.py +0 -0
  1207. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/gdb.py +0 -0
  1208. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/globals.py +0 -0
  1209. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/__init__.py +0 -0
  1210. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/heap_base.py +0 -0
  1211. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/heap_brk.py +0 -0
  1212. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/heap_freelist.py +0 -0
  1213. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/heap_libc.py +0 -0
  1214. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/heap_ptmalloc.py +0 -0
  1215. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/heap/utils.py +0 -0
  1216. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/history.py +0 -0
  1217. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/inspect.py +0 -0
  1218. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/javavm_classloader.py +0 -0
  1219. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/jni_references.py +0 -0
  1220. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/libc.py +0 -0
  1221. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/light_registers.py +0 -0
  1222. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/log.py +0 -0
  1223. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/loop_data.py +0 -0
  1224. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/plugin.py +0 -0
  1225. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/posix.py +0 -0
  1226. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/preconstrainer.py +0 -0
  1227. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/scratch.py +0 -0
  1228. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/sim_action.py +0 -0
  1229. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/sim_action_object.py +0 -0
  1230. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/sim_event.py +0 -0
  1231. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/symbolizer.py +0 -0
  1232. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/trace_additions.py +0 -0
  1233. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/uc_manager.py +0 -0
  1234. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/unicorn_engine.py +0 -0
  1235. {angr-9.2.111 → angr-9.2.113}/angr/state_plugins/view.py +0 -0
  1236. {angr-9.2.111 → angr-9.2.113}/angr/storage/__init__.py +0 -0
  1237. {angr-9.2.111 → angr-9.2.113}/angr/storage/file.py +0 -0
  1238. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/__init__.py +0 -0
  1239. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/__init__.pyi +0 -0
  1240. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/actions_mixin.py +0 -0
  1241. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/address_concretization_mixin.py +0 -0
  1242. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/bvv_conversion_mixin.py +0 -0
  1243. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/clouseau_mixin.py +0 -0
  1244. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/conditional_store_mixin.py +0 -0
  1245. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/convenient_mappings_mixin.py +0 -0
  1246. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/default_filler_mixin.py +0 -0
  1247. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/dirty_addrs_mixin.py +0 -0
  1248. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/hex_dumper_mixin.py +0 -0
  1249. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/javavm_memory/__init__.py +0 -0
  1250. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py +0 -0
  1251. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/keyvalue_memory/__init__.py +0 -0
  1252. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py +0 -0
  1253. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/label_merger_mixin.py +0 -0
  1254. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/name_resolution_mixin.py +0 -0
  1255. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
  1256. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +0 -0
  1257. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +0 -0
  1258. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +0 -0
  1259. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/__init__.py +0 -0
  1260. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/cooperation.py +0 -0
  1261. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +0 -0
  1262. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +0 -0
  1263. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/list_page.py +0 -0
  1264. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/multi_values.py +0 -0
  1265. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +0 -0
  1266. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +0 -0
  1267. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +0 -0
  1268. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +0 -0
  1269. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/privileged_mixin.py +0 -0
  1270. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +0 -0
  1271. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/__init__.py +0 -0
  1272. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +0 -0
  1273. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +0 -0
  1274. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +0 -0
  1275. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/region_data.py +0 -0
  1276. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +0 -0
  1277. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +0 -0
  1278. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +0 -0
  1279. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +0 -0
  1280. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/simple_interface_mixin.py +0 -0
  1281. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/simplification_mixin.py +0 -0
  1282. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/size_resolution_mixin.py +0 -0
  1283. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/slotted_memory.py +0 -0
  1284. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/smart_find_mixin.py +0 -0
  1285. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/symbolic_merger_mixin.py +0 -0
  1286. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/top_merger_mixin.py +0 -0
  1287. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/underconstrained_mixin.py +0 -0
  1288. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_mixins/unwrapper_mixin.py +0 -0
  1289. {angr-9.2.111 → angr-9.2.113}/angr/storage/memory_object.py +0 -0
  1290. {angr-9.2.111 → angr-9.2.113}/angr/storage/pcap.py +0 -0
  1291. {angr-9.2.111 → angr-9.2.113}/angr/tablespecs.py +0 -0
  1292. {angr-9.2.111 → angr-9.2.113}/angr/utils/__init__.py +0 -0
  1293. {angr-9.2.111 → angr-9.2.113}/angr/utils/algo.py +0 -0
  1294. {angr-9.2.111 → angr-9.2.113}/angr/utils/constants.py +0 -0
  1295. {angr-9.2.111 → angr-9.2.113}/angr/utils/cowdict.py +0 -0
  1296. {angr-9.2.111 → angr-9.2.113}/angr/utils/dynamic_dictlist.py +0 -0
  1297. {angr-9.2.111 → angr-9.2.113}/angr/utils/endness.py +0 -0
  1298. {angr-9.2.111 → angr-9.2.113}/angr/utils/enums_conv.py +0 -0
  1299. {angr-9.2.111 → angr-9.2.113}/angr/utils/env.py +0 -0
  1300. {angr-9.2.111 → angr-9.2.113}/angr/utils/formatting.py +0 -0
  1301. {angr-9.2.111 → angr-9.2.113}/angr/utils/funcid.py +0 -0
  1302. {angr-9.2.111 → angr-9.2.113}/angr/utils/graph.py +0 -0
  1303. {angr-9.2.111 → angr-9.2.113}/angr/utils/lazy_import.py +0 -0
  1304. {angr-9.2.111 → angr-9.2.113}/angr/utils/library.py +0 -0
  1305. {angr-9.2.111 → angr-9.2.113}/angr/utils/loader.py +0 -0
  1306. {angr-9.2.111 → angr-9.2.113}/angr/utils/mp.py +0 -0
  1307. {angr-9.2.111 → angr-9.2.113}/angr/utils/segment_list.py +0 -0
  1308. {angr-9.2.111 → angr-9.2.113}/angr/utils/timing.py +0 -0
  1309. {angr-9.2.111 → angr-9.2.113}/angr/utils/typing.py +0 -0
  1310. {angr-9.2.111 → angr-9.2.113}/angr.egg-info/dependency_links.txt +0 -0
  1311. {angr-9.2.111 → angr-9.2.113}/angr.egg-info/entry_points.txt +0 -0
  1312. {angr-9.2.111 → angr-9.2.113}/angr.egg-info/top_level.txt +0 -0
  1313. {angr-9.2.111 → angr-9.2.113}/native/Makefile +0 -0
  1314. {angr-9.2.111 → angr-9.2.113}/native/Makefile-win +0 -0
  1315. {angr-9.2.111 → angr-9.2.113}/native/angr_native.def +0 -0
  1316. {angr-9.2.111 → angr-9.2.113}/native/log.c +0 -0
  1317. {angr-9.2.111 → angr-9.2.113}/native/log.h +0 -0
  1318. {angr-9.2.111 → angr-9.2.113}/native/sim_unicorn.cpp +0 -0
  1319. {angr-9.2.111 → angr-9.2.113}/native/sim_unicorn.hpp +0 -0
  1320. {angr-9.2.111 → angr-9.2.113}/setup.py +0 -0
  1321. {angr-9.2.111 → angr-9.2.113}/tests/test_calling_conventions.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: angr
3
- Version: 9.2.111
3
+ Version: 9.2.113
4
4
  Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
5
5
  Home-page: https://github.com/angr/angr
6
6
  License: BSD-2-Clause
@@ -15,13 +15,13 @@ Description-Content-Type: text/markdown
15
15
  License-File: LICENSE
16
16
  Requires-Dist: CppHeaderParser
17
17
  Requires-Dist: GitPython
18
- Requires-Dist: ailment==9.2.111
19
- Requires-Dist: archinfo==9.2.111
18
+ Requires-Dist: ailment==9.2.113
19
+ Requires-Dist: archinfo==9.2.113
20
20
  Requires-Dist: cachetools
21
21
  Requires-Dist: capstone==5.0.0.post1
22
22
  Requires-Dist: cffi>=1.14.0
23
- Requires-Dist: claripy==9.2.111
24
- Requires-Dist: cle==9.2.111
23
+ Requires-Dist: claripy==9.2.113
24
+ Requires-Dist: cle==9.2.113
25
25
  Requires-Dist: dpkt
26
26
  Requires-Dist: itanium-demangler
27
27
  Requires-Dist: mulpyplexer
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=3.19.0
31
31
  Requires-Dist: psutil
32
32
  Requires-Dist: pycparser>=2.18
33
33
  Requires-Dist: pyformlang
34
- Requires-Dist: pyvex==9.2.111
34
+ Requires-Dist: pyvex==9.2.113
35
35
  Requires-Dist: rich>=13.1.0
36
36
  Requires-Dist: rpyc
37
37
  Requires-Dist: sortedcontainers
@@ -1,7 +1,7 @@
1
1
  # pylint: disable=wildcard-import
2
2
  # pylint: disable=wrong-import-position
3
3
 
4
- __version__ = "9.2.111"
4
+ __version__ = "9.2.113"
5
5
 
6
6
  if bytes is str:
7
7
  raise Exception(
@@ -7,7 +7,6 @@ import networkx
7
7
  from sortedcontainers import SortedDict
8
8
 
9
9
  import pyvex
10
- from claripy.utils.orderedset import OrderedSet
11
10
  from cle import ELF, PE, Blob, TLSObject, MachO, ExternObject, KernelObject, FunctionHintSource, Hex, Coff, SRec, XBE
12
11
  from cle.backends import NamedRegion
13
12
  import archinfo
@@ -34,6 +33,7 @@ from angr.codenode import HookNode, BlockNode
34
33
  from angr.engines.vex.lifter import VEX_IRSB_MAX_SIZE, VEX_IRSB_MAX_INST
35
34
  from angr.analyses import Analysis
36
35
  from angr.analyses.stack_pointer_tracker import StackPointerTracker
36
+ from angr.utils.orderedset import OrderedSet
37
37
  from .indirect_jump_resolvers.default_resolvers import default_indirect_jump_resolvers
38
38
 
39
39
  if TYPE_CHECKING:
@@ -746,6 +746,9 @@ class CFGBase(Analysis):
746
746
  memory_regions = []
747
747
 
748
748
  for b in binaries:
749
+ if not b.has_memory:
750
+ continue
751
+
749
752
  if isinstance(b, ELF):
750
753
  # If we have sections, we get result from sections
751
754
  sections = []
@@ -184,7 +184,12 @@ class ConditionProcessor:
184
184
  self.edge_conditions = edge_conditions
185
185
 
186
186
  def recover_reaching_conditions(
187
- self, region, graph=None, with_successors=False, case_entry_to_switch_head: dict[int, int] | None = None
187
+ self,
188
+ region,
189
+ graph=None,
190
+ with_successors=False,
191
+ case_entry_to_switch_head: dict[int, int] | None = None,
192
+ simplify_conditions: bool = True,
188
193
  ):
189
194
  """
190
195
  Recover the reaching conditions for each block in an acyclic graph. Note that we assume the graph that's passed
@@ -255,7 +260,9 @@ class ConditionProcessor:
255
260
  reaching_condition = claripy.Or(claripy.And(pred_condition, edge_condition), reaching_condition)
256
261
 
257
262
  if reaching_condition is not None:
258
- reaching_conditions[node] = self.simplify_condition(reaching_condition)
263
+ reaching_conditions[node] = (
264
+ self.simplify_condition(reaching_condition) if simplify_conditions else reaching_condition
265
+ )
259
266
 
260
267
  # My hypothesis: for nodes where two paths come together *and* those that cannot be further structured into
261
268
  # another if-else construct (we take the short-cut by testing if the operator is an "Or" after running our
@@ -28,6 +28,7 @@ from .code_motion import CodeMotionOptimization
28
28
  from .switch_default_case_duplicator import SwitchDefaultCaseDuplicator
29
29
  from .deadblock_remover import DeadblockRemover
30
30
  from .inlined_string_transformation_simplifier import InlinedStringTransformationSimplifier
31
+ from .const_prop_reverter import ConstPropOptReverter
31
32
 
32
33
  # order matters!
33
34
  _all_optimization_passes = [
@@ -47,7 +48,8 @@ _all_optimization_passes = [
47
48
  (ReturnDuplicatorHigh, True),
48
49
  (DeadblockRemover, True),
49
50
  (SwitchDefaultCaseDuplicator, True),
50
- (LoweredSwitchSimplifier, False),
51
+ (ConstPropOptReverter, True),
52
+ (LoweredSwitchSimplifier, True),
51
53
  (ReturnDuplicatorLow, True),
52
54
  (ReturnDeduplicator, True),
53
55
  (CodeMotionOptimization, True),
@@ -0,0 +1,367 @@
1
+ import logging
2
+ from collections.abc import Callable
3
+ import itertools
4
+
5
+ import networkx
6
+ import claripy
7
+ from ailment import Const
8
+ from ailment.block_walker import AILBlockWalkerBase
9
+ from ailment.statement import Call, Statement, ConditionalJump, Assignment, Store, Return
10
+ from ailment.expression import Convert, Register
11
+
12
+ from .optimization_pass import OptimizationPass, OptimizationPassStage
13
+ from ..utils import remove_labels, add_labels
14
+ from ....knowledge_plugins.key_definitions.atoms import MemoryLocation
15
+ from ....knowledge_plugins.key_definitions.constants import OP_BEFORE
16
+
17
+
18
+ _l = logging.getLogger(__name__)
19
+
20
+
21
+ class PairAILBlockWalker:
22
+ """
23
+ This AILBlockWalker will walk two blocks at a time and call a handler for each pair of statements that are
24
+ instances of the same type. This is useful for comparing two statements for similarity across blocks.
25
+ """
26
+
27
+ def __init__(self, graph: networkx.DiGraph, stmt_pair_handlers=None):
28
+ self.graph = graph
29
+
30
+ _default_stmt_handlers = {
31
+ Assignment: self._handle_Assignment_pair,
32
+ Call: self._handle_Call_pair,
33
+ Store: self._handle_Store_pair,
34
+ ConditionalJump: self._handle_ConditionalJump_pair,
35
+ Return: self._handle_Return_pair,
36
+ }
37
+
38
+ self.stmt_pair_handlers: dict[Statement, Callable] = (
39
+ stmt_pair_handlers if stmt_pair_handlers else _default_stmt_handlers
40
+ )
41
+
42
+ # pylint: disable=no-self-use
43
+ def _walk_block(self, block):
44
+ walked_objs = {Assignment: set(), Call: set(), Store: set(), ConditionalJump: set(), Return: set()}
45
+
46
+ # create a walker that will:
47
+ # 1. recursively expand a stmt with the default handler then,
48
+ # 2. record the stmt parts in the walked_objs dict with the overwritten handler
49
+ #
50
+ # CallExpressions are a special case that require a handler in expressions, since they are statements.
51
+ walker = AILBlockWalkerBase()
52
+ _default_stmt_handlers = {
53
+ Assignment: walker._handle_Assignment,
54
+ Call: walker._handle_Call,
55
+ Store: walker._handle_Store,
56
+ ConditionalJump: walker._handle_ConditionalJump,
57
+ Return: walker._handle_Return,
58
+ }
59
+
60
+ def _handle_ail_obj(stmt_idx, stmt, block_):
61
+ _default_stmt_handlers[type(stmt)](stmt_idx, stmt, block_)
62
+ walked_objs[type(stmt)].add(stmt)
63
+
64
+ # pylint: disable=unused-argument
65
+ def _handle_call_expr(expr_idx: int, expr: Call, stmt_idx: int, stmt: Statement, block_):
66
+ walked_objs[Call].add(expr)
67
+
68
+ _stmt_handlers = {typ: _handle_ail_obj for typ in walked_objs}
69
+ walker.stmt_handlers = _stmt_handlers
70
+ walker.expr_handlers[Call] = _handle_call_expr
71
+
72
+ walker.walk(block)
73
+ return walked_objs
74
+
75
+ def walk(self):
76
+ for b0, b1 in itertools.combinations(self.graph.nodes, 2):
77
+ walked_obj_by_blk = {}
78
+
79
+ for blk in (b0, b1):
80
+ walked_obj_by_blk[blk] = self._walk_block(blk)
81
+
82
+ for typ, objs0 in walked_obj_by_blk[b0].items():
83
+ try:
84
+ handler = self.stmt_pair_handlers[typ]
85
+ except KeyError:
86
+ continue
87
+
88
+ if not objs0:
89
+ continue
90
+
91
+ objs1 = walked_obj_by_blk[b1][typ]
92
+ if not objs1:
93
+ continue
94
+
95
+ for o0 in objs0:
96
+ for o1 in objs1:
97
+ handler(o0, b0, o1, b1)
98
+
99
+ #
100
+ # default handlers
101
+ #
102
+
103
+ # pylint: disable=unused-argument,no-self-use
104
+ def _handle_Assignment_pair(self, obj0, blk0, obj1, blk1):
105
+ return
106
+
107
+ # pylint: disable=unused-argument,no-self-use
108
+ def _handle_Call_pair(self, obj0, blk0, obj1, blk1):
109
+ return
110
+
111
+ # pylint: disable=unused-argument,no-self-use
112
+ def _handle_Store_pair(self, obj0, blk0, obj1, blk1):
113
+ return
114
+
115
+ # pylint: disable=unused-argument,no-self-use
116
+ def _handle_ConditionalJump_pair(self, obj0, blk0, obj1, blk1):
117
+ return
118
+
119
+ # pylint: disable=unused-argument,no-self-use
120
+ def _handle_Return_pair(self, obj0, blk0, obj1, blk1):
121
+ return
122
+
123
+
124
+ class ConstPropOptReverter(OptimizationPass):
125
+ """
126
+ This optimization reverts the effects of constant propagation done by the compiler as discussed in the
127
+ USENIX 2024 paper SAILR. This optimization's main goal is to enable later optimizations that rely on
128
+ symbolic variables to be more effective. This optimization pass will convert two statements with a difference of
129
+ a const and a symbolic variable into two statements with the symbolic variables.
130
+
131
+ As an example:
132
+ x = 75
133
+ puts(x)
134
+ puts(75)
135
+
136
+ will be converted to:
137
+ x = 75
138
+ puts(x)
139
+ puts(x)
140
+ """
141
+
142
+ ARCHES = None
143
+ PLATFORMS = None
144
+ STAGE = OptimizationPassStage.DURING_REGION_IDENTIFICATION
145
+ NAME = "Revert Constant Propagation Optimizations"
146
+ DESCRIPTION = __doc__.strip()
147
+
148
+ def __init__(self, func, region_identifier=None, reaching_definitions=None, **kwargs):
149
+ self.ri = region_identifier
150
+ self.rd = reaching_definitions
151
+ super().__init__(func, **kwargs)
152
+
153
+ self._call_pair_targets = []
154
+ self.resolution = False
155
+ self.analyze()
156
+
157
+ def _check(self):
158
+ return True, {}
159
+
160
+ def _analyze(self, cache=None):
161
+ self.resolution = False
162
+ self.out_graph = remove_labels(self._graph)
163
+ # self.out_graph = self._graph
164
+
165
+ _pair_stmt_handlers = {
166
+ Call: self._handle_Call_pair,
167
+ Return: self._handle_Return_pair,
168
+ }
169
+
170
+ if self.out_graph is None:
171
+ return
172
+
173
+ walker = PairAILBlockWalker(self.out_graph, stmt_pair_handlers=_pair_stmt_handlers)
174
+ walker.walk()
175
+ if self._call_pair_targets:
176
+ self._analyze_call_pair_targets()
177
+
178
+ if not self.resolution:
179
+ self.out_graph = None
180
+ else:
181
+ self.out_graph = add_labels(self.out_graph)
182
+
183
+ def _analyze_call_pair_targets(self):
184
+ all_obs_points = []
185
+ for _, observation_points in self._call_pair_targets:
186
+ all_obs_points.extend(observation_points)
187
+
188
+ self.rd = self.project.analyses.ReachingDefinitions(subject=self._func, observation_points=all_obs_points)
189
+
190
+ for (call0, blk0, call1, blk1, arg_conflicts), _ in self._call_pair_targets:
191
+ # attempt to do constant resolution for each argument that differs
192
+ for i, args in arg_conflicts.items():
193
+ a0, a1 = args[:]
194
+ calls = {a0: call0, a1: call1}
195
+ blks = {call0: blk0, call1: blk1}
196
+
197
+ # we can only resolve two arguments where one is constant and one is symbolic
198
+ const_arg = None
199
+ sym_arg = None
200
+ for arg in calls:
201
+ if isinstance(arg, Const) and const_arg is None:
202
+ const_arg = arg
203
+ elif not isinstance(arg, Const) and sym_arg is None:
204
+ sym_arg = arg
205
+
206
+ if const_arg is None or sym_arg is None:
207
+ continue
208
+
209
+ unwrapped_sym_arg = sym_arg.operands[0] if isinstance(sym_arg, Convert) else sym_arg
210
+ try:
211
+ # TODO: make this support more than just Loads
212
+ # target must be a Load of a memory location
213
+ target_atom = MemoryLocation(unwrapped_sym_arg.addr.value, unwrapped_sym_arg.size, "Iend_LE")
214
+ const_state = self.rd.get_reaching_definitions_by_node(blks[calls[const_arg]].addr, OP_BEFORE)
215
+
216
+ state_load_vals = const_state.get_value_from_atom(target_atom)
217
+ except AttributeError:
218
+ continue
219
+ except KeyError:
220
+ continue
221
+
222
+ if not state_load_vals:
223
+ continue
224
+
225
+ state_vals = list(state_load_vals.values())
226
+ # the symbolic variable MUST resolve to only a single value
227
+ if len(state_vals) != 1:
228
+ continue
229
+
230
+ state_val = list(state_vals[0])[0]
231
+ if hasattr(state_val, "concrete") and state_val.concrete:
232
+ const_value = claripy.Solver().eval(state_val, 1)[0]
233
+ else:
234
+ continue
235
+
236
+ if not const_value == const_arg.value:
237
+ continue
238
+
239
+ _l.debug("Constant argument at position %d was resolved to symbolic arg %s", i, sym_arg)
240
+ const_call = calls[const_arg]
241
+ const_arg_i = const_call.args.index(const_arg)
242
+ const_call.args[const_arg_i] = sym_arg
243
+ self.resolution = True
244
+
245
+ #
246
+ # Handle Similar Returns
247
+ #
248
+
249
+ def _handle_Return_pair(self, obj0: Return, blk0: Return, obj1, blk1):
250
+ if obj0 is obj1:
251
+ return
252
+
253
+ rexp0, rexp1 = obj0.ret_exprs, obj1.ret_exprs
254
+ if rexp0 is None or rexp1 is None or len(rexp0) != len(rexp1):
255
+ return
256
+
257
+ conflicts = {
258
+ i: ret_exprs
259
+ for i, ret_exprs in enumerate(zip(rexp0, rexp1))
260
+ if hasattr(ret_exprs[0], "likes") and not ret_exprs[0].likes(ret_exprs[1])
261
+ }
262
+ # only single expr return is supported
263
+ if len(conflicts) != 1:
264
+ return
265
+
266
+ _, ret_exprs = list(conflicts.items())[0]
267
+ expr_to_blk = {ret_exprs[0]: blk0, ret_exprs[1]: blk1}
268
+ # find the expression that is symbolic
269
+ symb_expr, const_expr = None, None
270
+ for expr in ret_exprs:
271
+ unpacked_expr = expr
272
+ if isinstance(expr, Convert):
273
+ unpacked_expr = expr.operands[0]
274
+
275
+ if isinstance(unpacked_expr, Const):
276
+ const_expr = expr
277
+ elif isinstance(unpacked_expr, Call):
278
+ const_expr = expr
279
+ else:
280
+ symb_expr = expr
281
+
282
+ if symb_expr is None or const_expr is None:
283
+ return
284
+
285
+ # now we do specific cases for matching
286
+ if (
287
+ isinstance(symb_expr, Register)
288
+ and isinstance(const_expr, Call)
289
+ and isinstance(const_expr.ret_expr, Register)
290
+ ):
291
+ # Handles the following case
292
+ # B0:
293
+ # return foo(); // considered constant
294
+ # B1:
295
+ # return rax; // considered symbolic
296
+ #
297
+ # =>
298
+ #
299
+ # B0:
300
+ # rax = foo();
301
+ # return rax;
302
+ # B1:
303
+ # return rax;
304
+ #
305
+ # This is useful later for merging the return.
306
+ #
307
+ call_return_reg = const_expr.ret_expr
308
+ if symb_expr.likes(call_return_reg):
309
+ symb_return_stmt = expr_to_blk[symb_expr].statements[-1]
310
+ const_block = expr_to_blk[const_expr]
311
+
312
+ # rax = foo();
313
+ reg_assign = Assignment(None, symb_expr, const_expr, **const_expr.tags)
314
+
315
+ # construct new constant block
316
+ new_const_block = const_block.copy()
317
+ new_const_block.statements = new_const_block.statements[:-1] + [reg_assign] + [symb_return_stmt.copy()]
318
+ self._update_block(const_block, new_const_block)
319
+ self.resolution = True
320
+ else:
321
+ _l.debug("This case is not supported yet for Return de-propagation")
322
+
323
+ #
324
+ # Handle Similar Calls
325
+ #
326
+
327
+ def _handle_Call_pair(self, obj0: Call, blk0, obj1: Call, blk1):
328
+ if obj0 is obj1:
329
+ return
330
+
331
+ # verify both calls are calls to the same function
332
+ if (isinstance(obj0.target, str) or isinstance(obj1.target, str)) and obj0.target != obj1.target:
333
+ return
334
+ elif not obj0.target.likes(obj1.target):
335
+ return
336
+
337
+ call0, call1 = obj0, obj1
338
+ arg_conflicts = self.find_conflicting_call_args(call0, call1)
339
+ # if there is no conflict, then there is nothing to fix
340
+ if not arg_conflicts:
341
+ return
342
+
343
+ _l.debug(
344
+ "Found two calls at (%x, %x) that are similar. Attempting to resolve const args now...",
345
+ blk0.addr,
346
+ blk1.addr,
347
+ )
348
+
349
+ # destroy old ReachDefs, since we need a new one
350
+ observation_points = ("node", blk0.addr, OP_BEFORE), ("node", blk1.addr, OP_BEFORE)
351
+
352
+ # do full analysis after collecting all calls in _analyze
353
+ self._call_pair_targets.append(((call0, blk0, call1, blk1, arg_conflicts), observation_points))
354
+
355
+ @staticmethod
356
+ def find_conflicting_call_args(call0: Call, call1: Call):
357
+ if not call0.args or not call1.args:
358
+ return None
359
+
360
+ # TODO: update this to work for variable-arg functions
361
+ if len(call0.args) != len(call1.args):
362
+ return None
363
+
364
+ # zip args of call 0 and 1 conflict if they are not like each other
365
+ conflicts = {i: args for i, args in enumerate(zip(call0.args, call1.args)) if not args[0].likes(args[1])}
366
+
367
+ return conflicts
@@ -36,7 +36,7 @@ class DeadblockRemover(OptimizationPass):
36
36
  acyclic_graph = self._graph
37
37
  else:
38
38
  acyclic_graph = to_acyclic_graph(self._graph)
39
- cond_proc.recover_reaching_conditions(region=None, graph=acyclic_graph)
39
+ cond_proc.recover_reaching_conditions(region=None, graph=acyclic_graph, simplify_conditions=False)
40
40
 
41
41
  if not any(claripy.is_false(c) for c in cond_proc.reaching_conditions.values()):
42
42
  return False, None
@@ -11,7 +11,8 @@ from ailment.expression import Expression, BinaryOp, Const, Load
11
11
  from angr.utils.graph import GraphUtils
12
12
  from ..utils import first_nonlabel_statement, remove_last_statement
13
13
  from ..structuring.structurer_nodes import IncompleteSwitchCaseHeadStatement, SequenceNode, MultiNode
14
- from .optimization_pass import OptimizationPass, OptimizationPassStage, MultipleBlocksException
14
+ from .optimization_pass import OptimizationPassStage, MultipleBlocksException, StructuringOptimizationPass
15
+ from ..region_simplifiers.switch_cluster_simplifier import SwitchClusterFinder
15
16
 
16
17
  if TYPE_CHECKING:
17
18
  from ailment.expression import UnaryOp, Convert
@@ -130,15 +131,19 @@ class StableVarExprHasher(AILBlockWalkerBase):
130
131
  super()._handle_Convert(expr_idx, expr, stmt_idx, stmt, block)
131
132
 
132
133
 
133
- class LoweredSwitchSimplifier(OptimizationPass):
134
+ class LoweredSwitchSimplifier(StructuringOptimizationPass):
134
135
  """
135
- Recognize and simplify lowered switch-case constructs.
136
+ This optimization recognizes and reverts switch cases that have been lowered and possibly split into multiple
137
+ if-else statements. This optimization, discussed in the USENIX 2024 paper SAILR, aims to undo the compiler
138
+ optimization known as "Switch Lowering", present in both GCC and Clang. An in-depth discussion of this
139
+ optimization can be found in the paper or in our documentation of the optimization:
140
+ https://github.com/mahaloz/sailr-eval/issues/14#issue-2232616411
141
+
142
+ Note, this optimization does not occur in MSVC, which uses a different optimization strategy for switch cases.
143
+ As a hack for now, we only run this deoptimization on Linux binaries.
136
144
  """
137
145
 
138
- ARCHES = [
139
- "AMD64",
140
- ]
141
- PLATFORMS = ["linux", "windows"]
146
+ PLATFORMS = ["linux"]
142
147
  STAGE = OptimizationPassStage.DURING_REGION_IDENTIFICATION
143
148
  NAME = "Convert lowered switch-cases (if-else) to switch-cases"
144
149
  DESCRIPTION = (
@@ -147,12 +152,60 @@ class LoweredSwitchSimplifier(OptimizationPass):
147
152
  )
148
153
  STRUCTURING = ["phoenix"]
149
154
 
150
- def __init__(self, func, blocks_by_addr=None, blocks_by_addr_and_idx=None, graph=None, **kwargs):
155
+ def __init__(self, func, min_distinct_cases=2, **kwargs):
151
156
  super().__init__(
152
- func, blocks_by_addr=blocks_by_addr, blocks_by_addr_and_idx=blocks_by_addr_and_idx, graph=graph, **kwargs
157
+ func,
158
+ require_gotos=False,
159
+ prevent_new_gotos=False,
160
+ simplify_ail=False,
161
+ must_improve_rel_quality=True,
162
+ **kwargs,
153
163
  )
164
+
165
+ # this is the max number of cases that can be in a switch that can be converted to a
166
+ # if-tree (if the number of cases is greater than this, the switch will not be converted)
167
+ # https://github.com/gcc-mirror/gcc/blob/f9a60d575f02822852aa22513c636be38f9c63ea/gcc/targhooks.cc#L1899
168
+ # TODO: add architecture specific values
169
+ default_case_values_threshold = 6
170
+ # NOTE: this means that there must be less than default_case_values for us to convert an if-tree to a switch
171
+ self._max_case_values = default_case_values_threshold
172
+
173
+ self._min_distinct_cases = min_distinct_cases
174
+
175
+ # used to determine if a switch-case construct is present in the code, useful for invalidating
176
+ # other heuristics that minimize false positives
177
+ self._switches_present_in_code = 0
178
+
154
179
  self.analyze()
155
180
 
181
+ @staticmethod
182
+ def _count_max_continuous_cases(cases: list[Case]) -> int:
183
+ if not cases: # Return 0 if the list is empty
184
+ return 0
185
+
186
+ max_len = 0
187
+ current_len = 1 # Start with 1 since a single number is a sequence of length 1
188
+ sorted_cases = sorted(cases, key=lambda c: c.value)
189
+ for i in range(1, len(sorted_cases)):
190
+ if sorted_cases[i].value == sorted_cases[i - 1].value + 1:
191
+ current_len += 1
192
+ else:
193
+ max_len = max(max_len, current_len)
194
+ current_len = 1
195
+
196
+ # Final check to include the last sequence
197
+ max_len = max(max_len, current_len)
198
+ return max_len
199
+
200
+ @staticmethod
201
+ def _count_distinct_cases(cases: list[Case]) -> int:
202
+ return len({case.target for case in cases})
203
+
204
+ def _analyze_simplified_region(self, region, initial=False):
205
+ super()._analyze_simplified_region(region, initial=initial)
206
+ finder = SwitchClusterFinder(region)
207
+ self._switches_present_in_code = len(finder.var2switches.values())
208
+
156
209
  def _check(self):
157
210
  # TODO: More filtering
158
211
  return True, None
@@ -161,7 +214,7 @@ class LoweredSwitchSimplifier(OptimizationPass):
161
214
  variablehash_to_cases = self._find_cascading_switch_variable_comparisons()
162
215
 
163
216
  if not variablehash_to_cases:
164
- return
217
+ return False
165
218
 
166
219
  graph_copy = networkx.DiGraph(self._graph)
167
220
  self.out_graph = graph_copy
@@ -169,7 +222,39 @@ class LoweredSwitchSimplifier(OptimizationPass):
169
222
 
170
223
  for _, caselists in variablehash_to_cases.items():
171
224
  for cases, redundant_nodes in caselists:
172
- original_nodes = [case.original_node for case in cases if case.value != "default"]
225
+ real_cases = [case for case in cases if case.value != "default"]
226
+ max_continuous_cases = self._count_max_continuous_cases(real_cases)
227
+
228
+ # There are a few rules used in most compilers about when to lower a switch that would otherwise
229
+ # be a jump table into either a series of if-trees or into series of bit tests.
230
+ #
231
+ # RULE 1: You only ever convert a Switch into if-stmts if there are less continuous cases
232
+ # then specified by the default_case_values_threshold, therefore we should never try to rever it
233
+ # if there is more or equal than that.
234
+ # https://github.com/gcc-mirror/gcc/blob/f9a60d575f02822852aa22513c636be38f9c63ea/gcc/tree-switch-conversion.cc#L1406
235
+ if max_continuous_cases >= self._max_case_values:
236
+ _l.debug("Skipping switch-case conversion due to too many cases for %s", real_cases[0])
237
+ continue
238
+
239
+ # RULE 2: You only ever convert a Switch into if-stmts if at least one of the cases is not continuous.
240
+ # https://github.com/gcc-mirror/gcc/blob/f9a60d575f02822852aa22513c636be38f9c63ea/gcc/tree-switch-conversion.cc#L1960
241
+ #
242
+ # However, we need to also consider the case where the cases we are looking at are currently a smaller
243
+ # cluster split off a non-continuous cluster. In this case, we should still convert it to a switch-case
244
+ # iff a switch-case construct is present in the code.
245
+ is_all_continuous = max_continuous_cases == len(real_cases)
246
+ if is_all_continuous and self._switches_present_in_code == 0:
247
+ _l.debug("Skipping switch-case conversion due to all cases being continuous for %s", real_cases[0])
248
+ continue
249
+
250
+ # RULE 3: It is not a real cluster if there are not enough distinct cases.
251
+ # A distinct case is a case that has a different body of code.
252
+ distinct_cases = self._count_distinct_cases(real_cases)
253
+ if distinct_cases < self._min_distinct_cases and self._switches_present_in_code == 0:
254
+ _l.debug("Skipping switch-case conversion due to too few distinct cases for %s", real_cases[0])
255
+ continue
256
+
257
+ original_nodes = [case.original_node for case in real_cases]
173
258
  original_head: Block = original_nodes[0]
174
259
  original_nodes = original_nodes[1:]
175
260
  existing_nodes_by_addr_and_idx = {(nn.addr, nn.idx): nn for nn in graph_copy}
@@ -221,7 +306,7 @@ class LoweredSwitchSimplifier(OptimizationPass):
221
306
  # would result in a successor node no longer being present in the graph
222
307
  if any(onode not in graph_copy for onode in original_nodes):
223
308
  self.out_graph = None
224
- return
309
+ return False
225
310
 
226
311
  # add edges between the head and case nodes
227
312
  for onode in original_nodes:
@@ -277,6 +362,8 @@ class LoweredSwitchSimplifier(OptimizationPass):
277
362
  else:
278
363
  graph_copy.add_edge(node_copy, succ)
279
364
 
365
+ return True
366
+
280
367
  def _find_cascading_switch_variable_comparisons(self):
281
368
  sorted_nodes = GraphUtils.quasi_topological_sort_nodes(self._graph)
282
369
  variable_comparisons = OrderedDict()