Inherits:
Test, SymTest
bytes[] private _array;
mapping(address => bytes) private _addressMapping;
mapping(bool => bytes) private _boolMapping;
mapping(bytes32 => bytes) private _bytes32Mapping;
mapping(bytes4 => bytes) private _bytes4Mapping;
mapping(uint256 => bytes) private _uint256Mapping;
mapping(uint32 => bytes) private _uint32Mapping;
mapping(int256 => bytes) private _int256Mapping;
mapping(int32 => bytes) private _int32Mapping;
mapping(string => bytes) private _stringMapping;
mapping(bytes => bytes) private _bytesMapping;
function symbolicDeriveArray(uint256 length, uint256 offset) public;
function testDeriveArray(uint256 length, uint256 offset) public;
function _assertDeriveArray(uint256 length, uint256 offset) public;
function testSymbolicDeriveMappingAddress(address key) public view;
function testSymbolicDeriveMappingBoolean(bool key) public view;
function testSymbolicDeriveMappingBytes32(bytes32 key) public view;
function testSymbolicDeriveMappingBytes4(bytes4 key) public view;
function testSymbolicDeriveMappingUint256(uint256 key) public view;
function testSymbolicDeriveMappingUint32(uint32 key) public view;
function testSymbolicDeriveMappingInt256(int256 key) public view;
function testSymbolicDeriveMappingInt32(int32 key) public view;
function testDeriveMappingString(string memory key) public view;
function symbolicDeriveMappingString() public view;
function _assertDeriveMappingString(string memory key) internal view;
function testDeriveMappingBytes(bytes memory key) public view;
function symbolicDeriveMappingBytes() public view;
function _assertDeriveMappingBytes(bytes memory key) internal view;
function testSymbolicDeriveMappingBooleanDirty(bytes32 dirtyKey) public;
function testSymbolicDeriveMappingAddressDirty(bytes32 dirtyKey) public;