angr 9.2.114__py3-none-manylinux2014_aarch64.whl → 9.2.116__py3-none-manylinux2014_aarch64.whl

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 (49) hide show
  1. angr/__init__.py +1 -1
  2. angr/__main__.py +2 -2
  3. angr/analyses/cfg/cfg_fast.py +1 -1
  4. angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +2 -2
  5. angr/analyses/decompiler/decompilation_options.py +2 -12
  6. angr/analyses/decompiler/decompiler.py +14 -3
  7. angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +3 -0
  8. angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +0 -3
  9. angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +2 -3
  10. angr/analyses/decompiler/optimization_passes/optimization_pass.py +9 -2
  11. angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +2 -0
  12. angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +2 -0
  13. angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +5 -1
  14. angr/analyses/decompiler/structured_codegen/c.py +10 -13
  15. angr/analyses/decompiler/structuring/__init__.py +6 -2
  16. angr/analyses/decompiler/structuring/dream.py +3 -4
  17. angr/analyses/decompiler/structuring/phoenix.py +29 -93
  18. angr/analyses/decompiler/structuring/recursive_structurer.py +0 -3
  19. angr/analyses/decompiler/structuring/sailr.py +111 -0
  20. angr/analyses/decompiler/structuring/structurer_base.py +2 -5
  21. angr/analyses/decompiler/structuring/structurer_nodes.py +3 -3
  22. angr/analyses/reaching_definitions/dep_graph.py +62 -5
  23. angr/analyses/reaching_definitions/function_handler.py +11 -1
  24. angr/analyses/reaching_definitions/function_handler_library/__init__.py +11 -0
  25. angr/analyses/reaching_definitions/function_handler_library/stdio.py +262 -0
  26. angr/analyses/reaching_definitions/function_handler_library/stdlib.py +157 -0
  27. angr/analyses/reaching_definitions/function_handler_library/string.py +93 -0
  28. angr/analyses/reaching_definitions/function_handler_library/unistd.py +23 -0
  29. angr/analyses/reaching_definitions/rd_state.py +28 -29
  30. angr/analyses/variable_recovery/engine_vex.py +0 -9
  31. angr/analyses/vfg.py +13 -14
  32. angr/code_location.py +4 -4
  33. angr/engines/pcode/cc.py +2 -0
  34. angr/engines/vex/heavy/heavy.py +1 -1
  35. angr/knowledge_plugins/key_definitions/live_definitions.py +12 -13
  36. angr/procedures/libc/strlen.py +5 -2
  37. angr/sim_variable.py +3 -18
  38. angr/state_plugins/solver.py +3 -9
  39. angr/storage/memory_mixins/address_concretization_mixin.py +1 -1
  40. angr/storage/memory_mixins/paged_memory/pages/cooperation.py +2 -1
  41. angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +4 -2
  42. angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +5 -5
  43. angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +3 -3
  44. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/METADATA +7 -7
  45. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/RECORD +49 -43
  46. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/WHEEL +1 -1
  47. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/LICENSE +0 -0
  48. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/entry_points.txt +0 -0
  49. {angr-9.2.114.dist-info → angr-9.2.116.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,11 @@
1
+ import logging
2
+
3
+ import claripy
4
+
1
5
  import angr
2
6
  from angr.sim_options import MEMORY_CHUNK_INDIVIDUAL_READS
3
7
  from angr.storage.memory_mixins.regioned_memory.abstract_address_descriptor import AbstractAddressDescriptor
4
8
 
5
- import logging
6
9
 
7
10
  l = logging.getLogger(name=__name__)
8
11
 
@@ -52,7 +55,7 @@ class strlen(angr.SimProcedure):
52
55
  # Convert r to the same region as s
53
56
  r_desc = self.state.memory._normalize_address(r)
54
57
  r_aw_iter = self.state.memory._concretize_address_descriptor(
55
- r_desc, None, target_region=next(iter(s_ptr._model_vsa.regions.keys()))
58
+ r_desc, None, target_region=next(iter(claripy.backends.vsa.convert(s_ptr).regions.keys()))
56
59
  )
57
60
 
58
61
  for r_aw in r_aw_iter:
angr/sim_variable.py CHANGED
@@ -1,7 +1,8 @@
1
1
  import collections.abc
2
- import claripy
3
2
  from typing import TYPE_CHECKING
4
3
 
4
+ import claripy
5
+
5
6
  from .protos import variables_pb2 as pb2
6
7
  from .serializable import Serializable
7
8
 
@@ -271,20 +272,7 @@ class SimMemoryVariable(SimVariable):
271
272
  if self._hash is not None:
272
273
  return self._hash
273
274
 
274
- if isinstance(self.addr, AddressWrapper):
275
- addr_hash = hash(self.addr)
276
- elif type(self.addr) is int:
277
- addr_hash = self.addr
278
- elif self.addr._model_concrete is not self.addr:
279
- addr_hash = hash(self.addr._model_concrete)
280
- elif self.addr._model_vsa is not self.addr:
281
- addr_hash = hash(self.addr._model_vsa)
282
- elif self.addr._model_z3 is not self.addr:
283
- addr_hash = hash(self.addr._model_z3)
284
- else:
285
- addr_hash = hash(self.addr)
286
- self._hash = hash((addr_hash, hash(self.size), self.ident))
287
-
275
+ self._hash = hash((hash(self.addr), hash(self.size), self.ident))
288
276
  return self._hash
289
277
 
290
278
  def __eq__(self, other):
@@ -557,6 +545,3 @@ class SimVariableSet(collections.abc.MutableSet):
557
545
  else:
558
546
  __import__("ipdb").set_trace()
559
547
  raise Exception("WTF is this variable?")
560
-
561
-
562
- from .storage.memory_mixins.regioned_memory.region_data import AddressWrapper
@@ -299,17 +299,11 @@ class SimSolver(SimStatePlugin):
299
299
  approximate_first = o.APPROXIMATE_FIRST in self.state.options
300
300
 
301
301
  if o.STRINGS_ANALYSIS in self.state.options:
302
- if "smtlib_cvc4" in backend_manager.backends._backends_by_name:
303
- our_backend = backend_manager.backends.smtlib_cvc4
304
- elif "smtlib_z3" in backend_manager.backends._backends_by_name:
305
- our_backend = backend_manager.backends.smtlib_z3
306
- elif "smtlib_abc" in backend_manager.backends._backends_by_name:
307
- our_backend = backend_manager.backends.smtlib_abc
308
- else:
309
- our_backend = backend_manager.backends.z3
310
302
  if o.COMPOSITE_SOLVER in self.state.options:
311
303
  self._stored_solver = claripy.SolverComposite(
312
- template_solver_string=claripy.SolverCompositeChild(backend=our_backend, track=track)
304
+ template_solver_string=claripy.SolverCompositeChild(
305
+ backend=backend_manager.backends.z3, track=track
306
+ )
313
307
  )
314
308
  elif o.ABSTRACT_SOLVER in self.state.options:
315
309
  self._stored_solver = claripy.SolverVSA()
@@ -326,7 +326,7 @@ class AddressConcretizationMixin(MemoryMixin):
326
326
  return
327
327
 
328
328
  try:
329
- concrete_addrs = self._interleave_ints(sorted(self.concretize_write_addr(addr)))
329
+ concrete_addrs = self._interleave_ints(sorted(self.concretize_write_addr(addr, condition=condition)))
330
330
  except SimMemoryError:
331
331
  if options.CONSERVATIVE_WRITE_STRATEGY in self.state.options:
332
332
  return # not completed
@@ -266,7 +266,8 @@ class MemoryObjectSetMixin(CooperationBase):
266
266
  old_size = size
267
267
 
268
268
  size = yield mos, first_mo.base, first_mo.length
269
- cur_addr += min(first_mo.length, old_size)
269
+ delta = min(first_mo.length - (cur_addr - first_mo.base), old_size)
270
+ cur_addr += delta
270
271
  if sorted_offsets[pos] + first_mo.length <= cur_addr - addr - page_addr:
271
272
  pos += 1
272
273
 
@@ -1,6 +1,8 @@
1
1
  import logging
2
- from typing import Any
3
2
  from collections.abc import Iterable
3
+ from typing import Any
4
+
5
+ import claripy
4
6
 
5
7
  from .. import MemoryMixin
6
8
 
@@ -40,4 +42,4 @@ class AbstractMergerMixin(MemoryMixin):
40
42
 
41
43
  @staticmethod
42
44
  def _is_uninitialized(a):
43
- return getattr(a._model_vsa, "uninitialized", False)
45
+ return getattr(claripy.backends.vsa.convert(a), "uninitialized", False)
@@ -96,7 +96,7 @@ class RegionedMemoryMixin(MemoryMixin):
96
96
  return o
97
97
 
98
98
  def load(self, addr, size: BV | int | None = None, endness=None, condition: Bool | None = None, **kwargs):
99
- if isinstance(size, BV) and isinstance(size._model_vsa, ValueSet):
99
+ if isinstance(size, BV) and isinstance(claripy.backends.vsa.convert(size), ValueSet):
100
100
  _l.critical("load(): size %s is a ValueSet. Something is wrong.", size)
101
101
  if self.state.scratch.ins_addr is not None:
102
102
  var_name = "invalid_read_%d_%#x" % (next(invalid_read_ctr), self.state.scratch.ins_addr)
@@ -176,7 +176,7 @@ class RegionedMemoryMixin(MemoryMixin):
176
176
  r, s, i = self._regions[region].find(si, data, max_search, **kwargs)
177
177
  # Post-process r so that it's still a ValueSet
178
178
  region_base_addr = self._region_base(region)
179
- r = self.state.solver.ValueSet(r.size(), region, region_base_addr, r._model_vsa)
179
+ r = self.state.solver.ValueSet(r.size(), region, region_base_addr, claripy.backends.vsa.convert(r))
180
180
  return r, s, i
181
181
 
182
182
  def set_state(self, state):
@@ -449,11 +449,11 @@ class RegionedMemoryMixin(MemoryMixin):
449
449
  raise SimMemoryError("_normalize_address_type() does not take claripy models.")
450
450
 
451
451
  if isinstance(addr_e, claripy.ast.Base):
452
- if not isinstance(addr_e._model_vsa, ValueSet):
452
+ if not isinstance(claripy.backends.vsa.convert(addr_e), ValueSet):
453
453
  # Convert it to a ValueSet first by annotating it
454
- addr_e = addr_e.annotate(RegionAnnotation("global", 0, addr_e._model_vsa))
454
+ addr_e = addr_e.annotate(RegionAnnotation("global", 0, claripy.backends.vsa.convert(addr_e)))
455
455
 
456
- model_vsa = addr_e._model_vsa
456
+ model_vsa = claripy.backends.vsa.convert(addr_e)
457
457
  if isinstance(model_vsa, ValueSet):
458
458
  yield from model_vsa.items()
459
459
  else:
@@ -53,8 +53,8 @@ class StaticFindMixin(SmartFindMixin): # pylint:disable=abstract-method
53
53
  return r_union, [], match_indices
54
54
 
55
55
  def _find_compare(self, element, target, **kwargs):
56
- elem_si = element._model_vsa # pylint:disable=protected-access
57
- target_si = target._model_vsa # pylint:disable=protected-access
56
+ elem_si = claripy.backends.vsa.convert(element)
57
+ target_si = claripy.backends.vsa.convert(target)
58
58
 
59
59
  comparison, concrete_comparison = False, False
60
60
 
@@ -67,4 +67,4 @@ class StaticFindMixin(SmartFindMixin): # pylint:disable=abstract-method
67
67
 
68
68
  def _find_are_bytes_symbolic(self, b):
69
69
  # we only support strided intervals
70
- return not isinstance(b._model_vsa, claripy.vsa.StridedInterval) # pylint:disable=protected-access
70
+ return not isinstance(claripy.backends.vsa.convert(b), claripy.vsa.StridedInterval)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: angr
3
- Version: 9.2.114
3
+ Version: 9.2.116
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.114
19
- Requires-Dist: archinfo==9.2.114
18
+ Requires-Dist: ailment==9.2.116
19
+ Requires-Dist: archinfo==9.2.116
20
20
  Requires-Dist: cachetools
21
- Requires-Dist: capstone==5.0.0.post1
21
+ Requires-Dist: capstone==5.0.2
22
22
  Requires-Dist: cffi>=1.14.0
23
- Requires-Dist: claripy==9.2.114
24
- Requires-Dist: cle==9.2.114
23
+ Requires-Dist: claripy==9.2.116
24
+ Requires-Dist: cle==9.2.116
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.114
34
+ Requires-Dist: pyvex==9.2.116
35
35
  Requires-Dist: rich>=13.1.0
36
36
  Requires-Dist: rpyc
37
37
  Requires-Dist: sortedcontainers
@@ -1,11 +1,11 @@
1
- angr/__init__.py,sha256=mLvFdIV2FcGXydJ8V0yBwu3VCookiOEbyv7KBW1YhmA,3708
2
- angr/__main__.py,sha256=kaO56Te6h73SM94BVtASF00q5QbBbC3eBs9poVc9sVI,1887
1
+ angr/__init__.py,sha256=Gqti6Jpeux5trHTnayZ68afJ6dbMblbYvPeNzHVyF4o,3708
2
+ angr/__main__.py,sha256=r_0MUFPLo4SOr0ejkF194aKdfRFivsbB9EIOiqVaIHQ,1921
3
3
  angr/annocfg.py,sha256=1tnBfxgLJh9I6Brm1JDdsWLHGmCQYdD6PTC_bFTOMrg,10775
4
4
  angr/blade.py,sha256=B8QXVQ93jz1YCIlb-dZLeBqYmVFdMXI5GleP1Wnxjrw,15519
5
5
  angr/block.py,sha256=tHxXlBBFrPZbp5phhTn63K55khjDIIUSNJgFn4lPd9I,14761
6
6
  angr/callable.py,sha256=-E9HelavtRY1xPAxCVXl120H8Rb7Myd2IcrXtWZFAOU,6034
7
7
  angr/calling_conventions.py,sha256=QJ7SwD3IQ7Mr7SLe-OL6iTVcqciL_W9YfuMrtJ44Nig,91642
8
- angr/code_location.py,sha256=IudWSR-gJzq_EeVw-jEZvQumVYwUUDWXR1vmLAkS-SQ,5432
8
+ angr/code_location.py,sha256=ToSlZdmpVU8x1_neFpc-vBnjDQCHsCdV-hlpc9-tQlE,5465
9
9
  angr/codenode.py,sha256=Di6ZxGqf-e6tKL49Zr0sq4vqpy_-nUDYkBdLj2Tg2Po,3760
10
10
  angr/errors.py,sha256=Yh_qSz7FjMSqqK9P3CVJHQZUzvTELLg6dRGYyINVZSM,8348
11
11
  angr/factory.py,sha256=C6HlSkBcl9T8y8s7EvFwj5JCV2OMyKrd317fqOjKcYQ,17305
@@ -21,7 +21,7 @@ angr/sim_procedure.py,sha256=SKlD_-qGh-llcuennKZoHK1yzDUTaa5z5W2l22Ean-U,26259
21
21
  angr/sim_state.py,sha256=-BhSkyucG6wwZSrgSoAKWNRFHQjcVP8R7ux0z7E2AOg,37820
22
22
  angr/sim_state_options.py,sha256=lfP7ygngjGe0AGV5rkE24tvBazJBZG-RTdrKj4rL9XE,12530
23
23
  angr/sim_type.py,sha256=icyNGAqA2q_cfazRS5HzBmsR5N0OTFadNWjYP_d_HwA,130970
24
- angr/sim_variable.py,sha256=FC2FHlMWeBDYrFI_pK6C5WuqmImvxRdTQDFTAC-q4qY,17203
24
+ angr/sim_variable.py,sha256=NOhNiFKApu7umseP-Lzde8uTo-NXSkU0h-qELmOUjwY,16597
25
25
  angr/slicer.py,sha256=kbLKMAjf2kC6ov-OiGb95BqLmgV0QRl5mmEANcvzuAk,10640
26
26
  angr/state_hierarchy.py,sha256=w_5Tl-7h9xUXBsIKZRAWw8Xh0we8GIAaN6nbKgYH_Qo,8467
27
27
  angr/tablespecs.py,sha256=RRtYqHneKd1ZHhnm9sUdLflplk_K3EP7_gBJaSlX6UY,3239
@@ -55,7 +55,7 @@ angr/analyses/soot_class_hierarchy.py,sha256=Cs_LRV1RLXH6sF_E49tJWg9Inxvv_o5mB-V
55
55
  angr/analyses/stack_pointer_tracker.py,sha256=9TOGwz5Rx4jXxoGbdtrBrMca6mJi3SXn4MS4Gx-vrmk,30207
56
56
  angr/analyses/static_hooker.py,sha256=g57k_fwxgS4oTzslyCpOf4faG17E685a4-4SpEz8Ges,1711
57
57
  angr/analyses/veritesting.py,sha256=2ATcoDtZT_iGbIdMwcTRhSbYHWNxDkHZBo2r1H1xuEA,25199
58
- angr/analyses/vfg.py,sha256=LGlMkTDwbP56rx0W9CxcKQIF6O4NXzNdaqBeLpnJvA8,75150
58
+ angr/analyses/vfg.py,sha256=Qi1co5ne43Wo1oti30Yu71-Xa4uZgimB9nsjzfFLAPw,75124
59
59
  angr/analyses/vsa_ddg.py,sha256=7c7sTwMqNsian9rVRijqsHQ2797XF5XsfbJ7AvtXwvI,16173
60
60
  angr/analyses/vtable.py,sha256=MzSFDAbGTNYH4-rtnrN1v2HSNR3nbVIWQi2Suim0Af4,3874
61
61
  angr/analyses/xrefs.py,sha256=6OSgC3UQDbyTSvz5qZtOfRQ6Bqj-OwD39ZZp-HFOlIY,9683
@@ -65,7 +65,7 @@ angr/analyses/cfg/cfg.py,sha256=1JpPGlqXXRFwE0tk26xjabT_-dq-kqAxMv7o6-DUhp4,3146
65
65
  angr/analyses/cfg/cfg_arch_options.py,sha256=YONHg6y-h6BCsBkJK9tuxb94DDfeOoy9CUS-LVyyDyg,3112
66
66
  angr/analyses/cfg/cfg_base.py,sha256=tFjNjjIzmbM40daHKqitF21P8P4vfNFdZ0RFJ0QDNKk,123132
67
67
  angr/analyses/cfg/cfg_emulated.py,sha256=Bi5PJzv0-0iQoCHzexSGAtkUAp6npb_RSODwW0Nv7zk,152812
68
- angr/analyses/cfg/cfg_fast.py,sha256=yeCEAlJTuz4jyFCZvUU6olaAMS07bA9tGg1lFBVn-BY,218149
68
+ angr/analyses/cfg/cfg_fast.py,sha256=T-jFnOrBRTRizu3Vg3reU62JOGKCN5OOJcxGwb2cLOc,218168
69
69
  angr/analyses/cfg/cfg_fast_soot.py,sha256=dQglRl4h10i8DNd5oCSJ4umpSotMthjKc5E03bd3BJI,26023
70
70
  angr/analyses/cfg/cfg_job_base.py,sha256=vmezyE1gOCWtJKk8P6qWCXz2sn-jQJ42fP8xNjSoBow,5976
71
71
  angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=T2rCpXy_fIoW_kHwZAVZupoj2UljitHvpI2uWJZ8NwU,361
@@ -74,7 +74,7 @@ angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=mMLQ5cUDjpGXD38
74
74
  angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=VhgIEDBSN6K_1pNHW1O23bOvc_gbi7bPpmlTGE7_5Uw,5231
75
75
  angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=9ctRVLyVUMhkBV0y-Iy48usHBodGfkaWK1C7Dim2fgE,5273
76
76
  angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=TyRIBvH8St1eHktpRrErD4zp8HKP3ppglfPuCEE0wg0,1441
77
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=QBhmtwgYUTwsvCOVLHODuSvn3RFQf8_fsLZyW5W9keg,101967
77
+ angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=3RJyiPqQOz1kik_1ks56BSEEpODPOGeYiGyYFoYBBNE,102005
78
78
  angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=JGUvjW5DQGX5OxLzB9eEVdKw7mPCYeNid3_oFeig9VY,19318
79
79
  angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=z77LC9YyQjNEr8ncVwIXVVqPyUjL2x2pGvqAax6QlYo,957
80
80
  angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=2YyKPaXuWVbPwUQZcn0CKuba3ydYGIMT0Vxhy09kcV0,3019
@@ -99,8 +99,8 @@ angr/analyses/decompiler/callsite_maker.py,sha256=GUgUkSsOznUaTIB9PUoBFyWJp9WkH4
99
99
  angr/analyses/decompiler/clinic.py,sha256=81gi7DBCaZy-xK_TZGrApUEz00y756V4ZKVAHtugmwk,95748
100
100
  angr/analyses/decompiler/condition_processor.py,sha256=71ryhINcX3-RNPwShjy62fvzj1HDTevco8GhmwqMrkQ,50009
101
101
  angr/analyses/decompiler/decompilation_cache.py,sha256=NKbvKYZOe7791udwdf70tq9hJe79GMS6M1jaDJC8lSQ,1130
102
- angr/analyses/decompiler/decompilation_options.py,sha256=FMfcQ0aFDMPW9d0sYpqCwrOVYoq75YkExAvR6CjZCt4,8224
103
- angr/analyses/decompiler/decompiler.py,sha256=152EWqKPC2J_JcC3_rnJPNL9iDbFTm-AXamm3hjzfFE,22253
102
+ angr/analyses/decompiler/decompilation_options.py,sha256=LBlmMP5rxTXFeI4X_bCIqOrrKChDOcyuacAJrv8xNyU,7922
103
+ angr/analyses/decompiler/decompiler.py,sha256=CVeLmy6SQpfAcxi2lJFKY2CrKSPsxMwmKuh6H1bhTm8,22874
104
104
  angr/analyses/decompiler/empty_node_remover.py,sha256=KhH88_x3A1nR22H3wrdp1gznLuFH12IBLaay4Xa3Law,7368
105
105
  angr/analyses/decompiler/expression_counters.py,sha256=wtFX4fFl_8cfJCZ8r9PEe5J_J1IClhSBO9vpBakld6c,2832
106
106
  angr/analyses/decompiler/expression_narrower.py,sha256=64VR1xdPVVoCLHOYRPacV9ecQb33rP7nC1l8rpFxTkg,3545
@@ -123,8 +123,8 @@ angr/analyses/decompiler/optimization_passes/__init__.py,sha256=mu8cqtQo4458zAdy
123
123
  angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=bjpEMW-Lqj5XW9NWUikGPcRn5scKNc8VvEjVMXxAuq8,5289
124
124
  angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=RoOVC1IyziUh_N6quZzRmBwkSNLSzvc8A3-EGAUsETU,15263
125
125
  angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=n2JKyEymGDMhIoXc2zsn6pAxxx9T5eu-jxyO3Cg8Fts,10658
126
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=s3H1J3JTp309NX-NqniUhPd-kPIarQqkWd-TxHP-W-4,12985
127
- angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=CP-WjyQGOw_mnUF0ZpC5C4syMxlx4Tvy0T_EIZQxXrY,4033
126
+ angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=B2ca-_X3GJsoLGI3BxN-xoiBs1SjMz6HdIvObgvRQQk,13162
127
+ angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=J4Zh3WZCW7Pts-ULeMejPv_eGVHGWgoycrMpZwPBh9M,3964
128
128
  angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=Km7nX7hNDVZGgEg7wmXAIiiA5edhpo7Bxqc13iyjiEk,2330
129
129
  angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=J7LRc3-DKfToxKVejnkHbNel9_56-7xsGyJJiTCwqsQ,17442
130
130
  angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=BkBZqDGQH-_9bVVOvrbEQbZmkr63Oh9OZvHbY0-yJmg,10974
@@ -133,18 +133,18 @@ angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=4r6nVFuX
133
133
  angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=jebdKHbkFDRdz50SiDbwPYuh0u8yWYEEOafZcwa8q7I,16385
134
134
  angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=mTguIblic1kqvQYgcKs8awGAiFSqL6YbcqWzUB2pRfQ,7750
135
135
  angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=vjDRO-Rh5LVIlxGRCuggjcz12CIxQuISB0LCC-vF6ZM,7207
136
- angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=E3FRtgTyqMKFAL1nnCNq1jM6xpymwUaLzrGs6SJmmVU,39236
136
+ angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=czsRMgGRTBYQvTCTXIL9h8Br-6GzaAjqhi3LnbrsqZk,39208
137
137
  angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=o2AZIpj4NpOAaWOGbudDUfGJJAD2exu-HvNbwph3mi8,3124
138
138
  angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=_63Y2vMNLSXYM6_Grfs89Nu63i5YLxTPmxTR_Z6fwLY,10420
139
- angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=hIgDKGXN-EeT6SOn1oz3TRilKdp9P-Felc10XLz0m5k,17505
139
+ angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=u1MZszwdCyVkknzGf0_8VxYYRYPf8XjxwL0J3kW0njI,17760
140
140
  angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=wzTeZtvneW-hETkwMw7fVRqLG7ey9cs4Im_sQBqUN14,7590
141
141
  angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=NIzv8I4iK5GDd-dMmWgt6m8TgTwaQ-HMtnh6cRHr6ps,6441
142
- angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=hE67-14bUWRw9qJgTUxFaH1dDJkhYVN5eH3ZThlbZnc,7797
142
+ angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=VeA2VpjPLL6NN3qf1iqBKZh2FbohybM4e8WkjVqX9Dg,7919
143
143
  angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=NjeEbLh62qmMiBC9tlIsRleFBLIqGKEtxaOSuYe-jbo,19356
144
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=l4JO9rgzVaLganGGdhVFB6iw55ZN3jo0VTGzUVNDSsI,1803
144
+ angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=Cc7AA_Yi-zghlvJO90zZZjTkEo3o0jsAEhHthaOT1gY,1925
145
145
  angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=3RRwzrekCnGJjf5lv7OBajHVb5zo9HNuIVFTEIkSkBg,9783
146
146
  angr/analyses/decompiler/optimization_passes/spilled_register_finder.py,sha256=YTRlIfcooZnTaYRN6FNJ60uBqRNH4rFcgkp1_QJCdXY,552
147
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=U96EaEZzHo-iJ0rbe80E-Jj1s8ilEZh8QXCTOIM0oBE,12537
147
+ angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=cXnKp8Of3q6GxvSpBGRcadrvs00j0NDRFtTEWPCYc0Q,12615
148
148
  angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=U9XIMXWYI_UHTamKHdjdXP4QVBvi386SSI0f2KoHu3I,4523
149
149
  angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=NVQH6WRUqVRLLDtu8gxgxmEI7Ro1Y6VD0hjFufsK4Aw,12275
150
150
  angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=7Dc-RtZZiK-jCrcjAMtZhqB9b8pHS0vtRAx-k5u3u1M,3054
@@ -208,15 +208,16 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
208
208
  angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
209
209
  angr/analyses/decompiler/structured_codegen/__init__.py,sha256=NLEvs8xnJwJiUgX8AmgS7rtFFW4SxtQcA1AjzE-GryA,313
210
210
  angr/analyses/decompiler/structured_codegen/base.py,sha256=TdghqAsAkjZpPfzFarh8Wn1zfBYMFcMsBZhRqXgoPNo,3778
211
- angr/analyses/decompiler/structured_codegen/c.py,sha256=QWeW7ahnqPG1JPXldHyCe6xb2eonbyIFJCJtBeXSYZE,135529
211
+ angr/analyses/decompiler/structured_codegen/c.py,sha256=ruJFOkWX8OOHbjGsJK9WAMNm-ySJHsAImVXulgiBICM,135250
212
212
  angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
213
213
  angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
214
- angr/analyses/decompiler/structuring/__init__.py,sha256=Ai63Im5VSiMDP8ACiDb34chqMl84JgzQXFIO8MV7hl0,368
215
- angr/analyses/decompiler/structuring/dream.py,sha256=NBv19CyJrYb2q77Q-3gpIhEl0r6Aci4lhO4hY_VQfN8,48374
216
- angr/analyses/decompiler/structuring/phoenix.py,sha256=aF9e4KF-3lXT5Q6ECl4bbZd5rw3koeOMYhZgsOQUhec,124025
217
- angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=E_6Tj6jpNmWbZ_f9fwxan87VNYUGnf26fnoZC7dxny4,7063
218
- angr/analyses/decompiler/structuring/structurer_base.py,sha256=JoUxpZ2iDN0V7vToMPb0MgGB6eTvWDUk0JK8oJYlQ3U,41254
219
- angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x-1xUfeIzTNwLlRTv2M_9q7BDWLSWiSkaOuk20l8750,11930
214
+ angr/analyses/decompiler/structuring/__init__.py,sha256=-Gwtu4VQQZpt-SSQwVQzMCOYcYYT-ofaMAvBWtEpsrI,510
215
+ angr/analyses/decompiler/structuring/dream.py,sha256=29vU_n7biP45xRS1RkjbLG5Q4KOWEGmBwJf60Mk1lT8,48347
216
+ angr/analyses/decompiler/structuring/phoenix.py,sha256=wCbsLiPPqZIy6PDF1uZ_0ZefDcr1Uplsu2f_hMfXbNE,120724
217
+ angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=XhQltVVA0Ljq2zzrPdO8ea8p9Fb1Guj__NGtiycGoXs,6913
218
+ angr/analyses/decompiler/structuring/sailr.py,sha256=oNxug0StTZyN8dERczpW0hIAYHhSaHCosI0shmks9Uw,5661
219
+ angr/analyses/decompiler/structuring/structurer_base.py,sha256=GAIUCA8vbOhqZgIiJqkzTtCiDkRvieWdCcu2QuRP3JI,41134
220
+ angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=3O-lZ2y7Wr-_ZqlNqAE7xr3CjF9OLDacz8YpRjx1rOo,11933
220
221
  angr/analyses/forward_analysis/__init__.py,sha256=0TNlM4hbX1KRMyUduqU_zEwbnVcuNX2A1mtVuM3KexY,144
221
222
  angr/analyses/forward_analysis/forward_analysis.py,sha256=lNbW4MPitXrudNOV-qWHwMGwMyUJ_u0Y6qq21eoXBO0,19914
222
223
  angr/analyses/forward_analysis/job_info.py,sha256=5TkrqLwNWzx0ckxYm1QTV2SXzJXrP2QHcpDWl1_eCmM,1579
@@ -268,16 +269,21 @@ angr/analyses/propagator/values.py,sha256=b8zg2VIPJoZj4qtF3_XRfoxA7LjXxO9OIkqZ3y
268
269
  angr/analyses/propagator/vex_vars.py,sha256=O0W7GekEZIVwiNiOdyu-BuxCZmHFZPh_ho7jmbnYAwk,1433
269
270
  angr/analyses/reaching_definitions/__init__.py,sha256=RDKtWljJCGI8dJd7d1Cz71c1d8z1y1LOxUjkbikR3SM,1986
270
271
  angr/analyses/reaching_definitions/call_trace.py,sha256=YtARhVge7scV86niB8OvNDlv_HTOijHKVZWdl43FYG0,2175
271
- angr/analyses/reaching_definitions/dep_graph.py,sha256=uxPtUYDil9BW01HPWei4sJ-nWfi8qWe7BZPmawCsQkI,14727
272
+ angr/analyses/reaching_definitions/dep_graph.py,sha256=FCqv8zEXcfAEg00BFB0m8UDNvFL3nm7QAO-hEgtwTV4,16070
272
273
  angr/analyses/reaching_definitions/engine_ail.py,sha256=ttWBhRhu5b3emY-0zLgNGlRd4p2Q9Tf8ZiWgsZfWeIo,46190
273
274
  angr/analyses/reaching_definitions/engine_vex.py,sha256=v9nxvAnmjpwtancu0b-i_vwmOdl4zmjHGGMQv3rgros,43115
274
275
  angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
- angr/analyses/reaching_definitions/function_handler.py,sha256=UvUsdoBvl33aUuL5nN_X_Ce02mUeuJlN32ZyqnI7oS8,27691
276
+ angr/analyses/reaching_definitions/function_handler.py,sha256=cH1kCdwpJ2KlHmUGTPtg6TomZcTm6YL3ntIMSeMCY2A,28114
276
277
  angr/analyses/reaching_definitions/heap_allocator.py,sha256=DkzDT8_YIE0m9CBFsC3GRxNQM5GCBAYXZpnDRZtezSo,2591
277
278
  angr/analyses/reaching_definitions/rd_initializer.py,sha256=zWjK7RZ4EJlIs-6dqZR7OY18TynfA0lOd1ipEi4kSe4,11183
278
- angr/analyses/reaching_definitions/rd_state.py,sha256=xf4RuXhIAYaJxDmiP9zEEB-goASwW0xsp9wzz8eu42U,23910
279
+ angr/analyses/reaching_definitions/rd_state.py,sha256=B3KGPZWzl1GhQrwN_6v5ms40OdawuVq493A-9elUEj4,24012
279
280
  angr/analyses/reaching_definitions/reaching_definitions.py,sha256=u0ZOHh2yBZckMbIMyJTlMsoIBchb0iU_kVphyUHkZCc,24352
280
281
  angr/analyses/reaching_definitions/subject.py,sha256=f3Gjg6Q0qCwtL443ctdVB_F1_sbGchftdjTqX6qsnbo,1958
282
+ angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=Ha7Ygiv_BhwT2ipNc3KaejqC5ZiKw7c-VzeH9qEa4eQ,423
283
+ angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=8Rl7jiLd6C10t3m5qqGLVj-LrZ9Beuo2Au9R8e-Thlc,11122
284
+ angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=c41rgr6BmTUYkg91AuyIxfBdFA_xmAeJghFXjP3yscA,6444
285
+ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=PFwAivLrpcERRQtZun43tZmBpsIc5D0OOo9US9TMEN0,5060
286
+ angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=KXpgC9fVl43T-CoIvhOmwbySuQLHc76v2MmHQgRqSmc,1203
281
287
  angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
282
288
  angr/analyses/typehoon/dfa.py,sha256=Q1sR1RDmt7pmMJjFByco9grbr2qm92HihnB9qJmerSo,3488
283
289
  angr/analyses/typehoon/lifter.py,sha256=3RogUtd8O6txb7_UAjbI7Bn1hc38oP_LsRYyBsPsEzg,2805
@@ -291,7 +297,7 @@ angr/analyses/variable_recovery/__init__.py,sha256=j2SZyfzCAagqNTj0IcYJtOx4b3oAv
291
297
  angr/analyses/variable_recovery/annotations.py,sha256=eAifcWVmb1xUmEGtpiy8PzIupSuZtmEDEiUav-3_z20,1403
292
298
  angr/analyses/variable_recovery/engine_ail.py,sha256=F1vC5xuXfe_tGI0a3zDwGEbjPimVGitoUQ031AWDzXg,25694
293
299
  angr/analyses/variable_recovery/engine_base.py,sha256=HVCtyY4tgx8cjHyP1aPoCCgW5771L_vpCAf83qF9qFY,41707
294
- angr/analyses/variable_recovery/engine_vex.py,sha256=ni-OCeHFhhPRo5iH2p4AvI_43ADOO1jUc__GX0tIb-U,19215
300
+ angr/analyses/variable_recovery/engine_vex.py,sha256=hUcunLk8YazEUQlAFuF3VOmsJgjbBPQM95s8F47NNq8,18907
295
301
  angr/analyses/variable_recovery/irsb_scanner.py,sha256=IZVaL_axfPBcM_MvjIOXwICK3otK3B5AIbwjhVscylc,4878
296
302
  angr/analyses/variable_recovery/variable_recovery.py,sha256=-chYezAPEMrgwu_w3pBv_uzGnJb1wi3zsa1DLPdTya8,21777
297
303
  angr/analyses/variable_recovery/variable_recovery_base.py,sha256=EhqACAQwd6qKWC19-kbTvXEio3k9JNc3cyYg4MLHebw,14962
@@ -342,7 +348,7 @@ angr/engines/light/data.py,sha256=jZBAJxor2zg5m4s63joSrjUs8H-OeHBZiqZmc3dqEQQ,23
342
348
  angr/engines/light/engine.py,sha256=4JNJO9kOkINMRwEyRpKKotXPEzMBJrExJk3Nr1CeRNE,45469
343
349
  angr/engines/pcode/__init__.py,sha256=UwMEwXQvHXIIgedJn2ZOvBBEgfHg2rfREBSpcTSXCZ4,83
344
350
  angr/engines/pcode/behavior.py,sha256=BuzA_nX_ebuFiGgup7aJ-bgD9KmUR2dPSGUM51MKxOM,29290
345
- angr/engines/pcode/cc.py,sha256=CUKkivYUddt8McAYLwAPO5btzDHwO65yBQvWs3CV9dU,3085
351
+ angr/engines/pcode/cc.py,sha256=0VR09dC2nRQPQ5pj0ExaiViaKAdSGbYtHz5jzywrtKQ,3143
346
352
  angr/engines/pcode/emulate.py,sha256=l4MUuUEJDcCihfKCy5_4S6GOG_rzd1DdYzTQ1ObZdgI,16715
347
353
  angr/engines/pcode/engine.py,sha256=WTiIXZ8moilS4BHU-nQSgMopOstLnuoTjXWHpLOKF98,10532
348
354
  angr/engines/pcode/lifter.py,sha256=4y8kAIlqtb5xVL4gyyXZe74vTUXn9Bp6oMdOM_wNrWI,51942
@@ -401,7 +407,7 @@ angr/engines/vex/heavy/__init__.py,sha256=VapnI5PnxNnZyqtmQpJNrRs9Yh01-gpfR1LjaG
401
407
  angr/engines/vex/heavy/actions.py,sha256=f8CbzwIOSgksmiY5nwDlgAomOI88wa5S_4vk5RE5718,8871
402
408
  angr/engines/vex/heavy/concretizers.py,sha256=bwv8VIqwS2DGP3qf_EI4Kb97_Ma8wygbnn-0HWsTfo0,14702
403
409
  angr/engines/vex/heavy/dirty.py,sha256=a4rWD03dA9m7HoLM8-TBMxFptkyRNVPWg8OOAiar-Cg,18699
404
- angr/engines/vex/heavy/heavy.py,sha256=mr_k23ykI8NV3SwqeNzKTDtJr_9n6nIIFNMII5ThbOU,15822
410
+ angr/engines/vex/heavy/heavy.py,sha256=BXa354XLj8PIWVUMl40nHcAVw2QUW5_7LXkHIE1KvEI,15841
405
411
  angr/engines/vex/heavy/inspect.py,sha256=NNQpo4E267W8Z0RDQee9gGH9KDx0mydwjVo02yogT6o,2317
406
412
  angr/engines/vex/heavy/resilience.py,sha256=4TYoIFjIygSwRsu4229CsbRNOtlP-QQuligWZRKlEjQ,3737
407
413
  angr/engines/vex/heavy/super_fastpath.py,sha256=2E1Tdai9Xf7g-wf5AD3FrLN67pVusnQtF1aPRLLNxEg,1180
@@ -468,7 +474,7 @@ angr/knowledge_plugins/key_definitions/definition.py,sha256=o0L7NZIAHPAbwxNiY7zI
468
474
  angr/knowledge_plugins/key_definitions/environment.py,sha256=d1oRytninRakOwdoif4szyvyLIQyhEHYVBfVt4mRCdQ,3845
469
475
  angr/knowledge_plugins/key_definitions/heap_address.py,sha256=gpHyXvuTz3udaw83DZ5ZGLnDwqZ3EmdMtykPS3mrfXo,890
470
476
  angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=N8RvK6WqksoB1frFM404Ea_CyyumNrjVao2bwPOgsTc,3272
471
- angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=NrqViz1W9BcNxCv_DQWMi7KACm0J3bzDhmjUk5-pVxk,40572
477
+ angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=lYMIKbXthuQbz8f_oQpM_hWucd5qShkPbBNE0X2H0vE,40535
472
478
  angr/knowledge_plugins/key_definitions/liveness.py,sha256=uC4N-8uPoYH_RdAWVUtA3aNuMVY5NQnpGp51VWP6BNU,7101
473
479
  angr/knowledge_plugins/key_definitions/rd_model.py,sha256=NC4yg3FDO_0hDON1c7loBVl3BGefbDKrT8W0YtB6U-k,7249
474
480
  angr/knowledge_plugins/key_definitions/tag.py,sha256=uBHlS71E3Ok_6V3K8NkMblctCrnAHmPYikaFTA02PyA,1682
@@ -1003,7 +1009,7 @@ angr/procedures/libc/strcat.py,sha256=ATDdASGrrQJrRX9fRCHUGKIyR_RBTW3uyV7aU5FIH9
1003
1009
  angr/procedures/libc/strchr.py,sha256=CBBjn6CirolfWB4LD0tAx-GFNJkCYZsUBU-g7MrObdI,1771
1004
1010
  angr/procedures/libc/strcmp.py,sha256=w1KB8DmeVcR3vtEz4WiYQ36BLepeINaKFRxa5vJG-6U,818
1005
1011
  angr/procedures/libc/strcpy.py,sha256=VPUG_bqZLbw6XtNdatuCPUXEzNzC2ByMZhPHaM3-U5E,412
1006
- angr/procedures/libc/strlen.py,sha256=NME8HO1lzbicGdRB1-Rm4MKvhjIMmlz-8Liay33hrmo,3540
1012
+ angr/procedures/libc/strlen.py,sha256=ub9dU8fq95jxZgKByWGWL4JkOR8YWWEkqKOUFUUYMcw,3576
1007
1013
  angr/procedures/libc/strncat.py,sha256=wtsKB4DCBYyGlRDzsjzyqbLhnYkyCebcSHe2akboOwk,501
1008
1014
  angr/procedures/libc/strncmp.py,sha256=FgFWx0njQu-eo83PutWyRfse1xAxUPomYi-cZW6Ug1o,7653
1009
1015
  angr/procedures/libc/strncpy.py,sha256=XUavYoap1xsRuQk021EbNi9s160GQk4tfecNuM1DAiQ,600
@@ -1208,7 +1214,7 @@ angr/state_plugins/scratch.py,sha256=7j-J4xq8A9Axh6fJzQoUpLpobtIe0va7eeX-glGfYk0
1208
1214
  angr/state_plugins/sim_action.py,sha256=IDPLtcqN04APpStuVYarv00LF2u6JVFfdxEBEw_v_a0,9763
1209
1215
  angr/state_plugins/sim_action_object.py,sha256=4_f7ry76pG4XBnF7O48_7krt_ibG4DZkIMrjmmk_MGg,4268
1210
1216
  angr/state_plugins/sim_event.py,sha256=pRQtMet5g--GmH97BMrS3bDErgUOWAOocjPLGNzmelU,2061
1211
- angr/state_plugins/solver.py,sha256=YnuLKze1Ls-NWJZVIiH41yhvAVWyBBdaGyBinmQKh-I,44755
1217
+ angr/state_plugins/solver.py,sha256=kQTTdLEdhd3WYJBZOuaW4VGQhXcTV2C1NM2e4s34ftg,44314
1212
1218
  angr/state_plugins/symbolizer.py,sha256=3UAfStON-0GuuHhkD4JD6Y5WveqEfTD3JLK3uj0R-co,11039
1213
1219
  angr/state_plugins/trace_additions.py,sha256=LRcgdGKY2QtzOwsVa-FYLGRFcl0ISOnq-WzCMayiM-8,30091
1214
1220
  angr/state_plugins/uc_manager.py,sha256=9yEE10rrGXTVncLzVOpgvSAGA2RdzApUu_fq_lUksDs,2643
@@ -1228,7 +1234,7 @@ angr/storage/pcap.py,sha256=8n30ui0KO7qx_RgmGFL_cBYMF5AlQ5LzVFeCh9ODU6c,1940
1228
1234
  angr/storage/memory_mixins/__init__.py,sha256=wRCGg4Rlh8lxzqa8_q--R9Ht22avkap5fR6bIt9RWoU,11965
1229
1235
  angr/storage/memory_mixins/__init__.pyi,sha256=7jA-O5r8efBzQWZa9q-5xs6HY-rYPSlgo2_42CRUYqQ,1944
1230
1236
  angr/storage/memory_mixins/actions_mixin.py,sha256=NscigmXzvJAnl7W98AkY1Mev_7RW-dXDI7k6RehdZOE,3370
1231
- angr/storage/memory_mixins/address_concretization_mixin.py,sha256=l28QcKcKFyiW6KFOuTnHMXk7Mo0_pyOGdWA3s1Ttm9s,16544
1237
+ angr/storage/memory_mixins/address_concretization_mixin.py,sha256=s4tGPr3qczWlmOS2CnwOd5oauLRDC6o_Anf-Ts_cilA,16565
1232
1238
  angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=XT2ICXERaSHypiaAFf2jd8V3lh_5mZQvmT55ziipss0,2901
1233
1239
  angr/storage/memory_mixins/clouseau_mixin.py,sha256=EDhjbs5MMSGHQCxlKUL2uPHBTv8wqQN2IVXXTdBUezI,5496
1234
1240
  angr/storage/memory_mixins/conditional_store_mixin.py,sha256=RiorXjBL9sXIjs7AaaY90z-8l5NOQDMX_jpRwZuG2dk,929
@@ -1259,7 +1265,7 @@ angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=
1259
1265
  angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Ls_QhPLKudESInlAhUR1GVeacJNTciz9E2DX-LatAZ4,1541
1260
1266
  angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=Fg_KtS7GiI6TLfBKoRAOiz4z-M9ZkcvT9UwCkAp9-rY,3283
1261
1267
  angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=rwGAcESljLORCDteXXJ0cJCFkaqymoxm8kziKLB3DFw,1469
1262
- angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=3FTR6Ksqn8Vg3QvvyMNs_6EvwgFVi_xvYxId7hR_ZZw,12726
1268
+ angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=yqT8BDG8uJWLetwhu4wiS4Kr8yD5W6qzi0dl9PDS0OA,12785
1263
1269
  angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=P5ORlm26_7v--hNcxDwLzZGTRwcLcaHzKModa5yoUPA,3003
1264
1270
  angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=mHt5nQYXkXifwGT0_UGvKirECEC2v7jNNtf_6oY57uI,2050
1265
1271
  angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=FJhqPdF0fFkktIfUKaVZoDxD5jW7qwugn6US2yctcrc,14584
@@ -1270,13 +1276,13 @@ angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=oES5tahTy
1270
1276
  angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=JIgC5wpl006FEFyDg_Z_gvEtMWJ0G0OWq9y8PcnFOzA,20062
1271
1277
  angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=qFW74mjzZmHnIX-cyvOHhOFWSJOdQwcPUm_IhDryObo,351
1272
1278
  angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=9p4Eo7zE-gqfodF1P80GMEgCONpP4Qy90zzyY3ivbII,1094
1273
- angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=KW8zdtvWh1I00NXdDYrP3dyIJguWIu0DqRVqMVRsUtw,1333
1279
+ angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=KEONomc9AQcyPcTqkZOEnq4MMZ_ql0AVT-Kyr3XkErw,1368
1274
1280
  angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=M5k0ZGxEkCIJz8CoZ20S1bFo0fcHLD-PBKhy62eEfcQ,128
1275
1281
  angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=lA6g07gILFNEgf1YV1pQx3jrt6kerYI8bdzRTNd_oog,9165
1276
1282
  angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=IL2pi39jnkvqcNS4hJcxXsfT99y715KDHPIoRJDHc1c,4342
1277
1283
  angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=rlzyJhrU29SwwhDePxW2s1FwNtXulkaxZh12lJnB35k,4884
1278
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=y_bHQKBneWGUAyXCokMZpYSE3jAHfh_nlOlnWWN-nrk,18547
1279
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=I8O2DFCCALahx7wnAtxziZ3mEASRZHaY1OhnN0KMblk,2240
1284
+ angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=m41e7WdlnSlJ1FIqYl1q5UP2Q0q0sxkULntVryCG7Ao,18642
1285
+ angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=d5jm5JH1Bg1OQRnELL0VBVTWQFZPz3czfTX4kf2kDQE,2192
1280
1286
  angr/utils/__init__.py,sha256=XjOtDNWPHZZjayRA6OxLra78wBtR-pY_A8EC3nqCGkE,980
1281
1287
  angr/utils/algo.py,sha256=abkp6yy6FMqJSt0VfOpy5eSqWnheLLqOQ_kAAyhLXFc,1003
1282
1288
  angr/utils/constants.py,sha256=hxSJHIILsDP8ZOpw76BxMLu2Q_s2-rxTjACh7RL5wJs,209
@@ -1296,9 +1302,9 @@ angr/utils/orderedset.py,sha256=6SRZz6PkOVavOzlUd2cIiqZQyWtKO72F2he_cG0aP9Q,1943
1296
1302
  angr/utils/segment_list.py,sha256=5nnuVtdZk9NS2y_xUBVA9khWPueP_zagNtPSjaoMHbA,20410
1297
1303
  angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
1298
1304
  angr/utils/typing.py,sha256=pCjA7JZAzcvrk-iyIE2cRHc1G66AMSGEON3aFfjtPVc,431
1299
- angr-9.2.114.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
1300
- angr-9.2.114.dist-info/METADATA,sha256=66zn4xJ9vxYyU7zvaCUzwvqCbGCukbXTNjmFHSuPjkY,4676
1301
- angr-9.2.114.dist-info/WHEEL,sha256=OQ_mvvSpKReaVVfQ4c2a2WJmom1UiNcVyuF2k2UOrPY,109
1302
- angr-9.2.114.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1303
- angr-9.2.114.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
1304
- angr-9.2.114.dist-info/RECORD,,
1305
+ angr-9.2.116.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
1306
+ angr-9.2.116.dist-info/METADATA,sha256=oq0bcCV9TIJiAC8D2U7PtYkubT4NnIiGSGb4oWGws_I,4670
1307
+ angr-9.2.116.dist-info/WHEEL,sha256=VYshG4KRI6vto8ve-vqaQBMiFUCQ7Sdi3sM1A9fN-f4,109
1308
+ angr-9.2.116.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1309
+ angr-9.2.116.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
1310
+ angr-9.2.116.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (73.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-manylinux2014_aarch64
5
5