Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zakrad/198dd291886b688865dc7e815563daa2 to your computer and use it in GitHub Desktop.
Save zakrad/198dd291886b688865dc7e815563daa2 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `_msgSender()` is missing `role`.
* Overriding this function changes the behavior of the {onlyRole} modifier.
*
* Format of the revert message is described in {_checkRole}.
*
* _Available since v4.6._
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* May emit a {RoleGranted} event.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)
pragma solidity ^0.8.0;
import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor(string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC1155).interfaceId ||
interfaceId == type(IERC1155MetadataURI).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: address zero is not a valid owner");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `from`
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address from,
uint256 id,
uint256 amount
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, address(0), id, amount);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address from,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `ids` and `amounts` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155Receiver.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
bytes4 response
) {
if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)
pragma solidity ^0.8.0;
import "../ERC1155.sol";
/**
* @dev Extension of ERC1155 that adds tracking of total supply per id.
*
* Useful for scenarios where Fungible and Non-fungible tokens have to be
* clearly identified. Note: While a totalSupply of 1 might mean the
* corresponding is an NFT, there is no guarantees that no other token with the
* same id are not going to be minted.
*/
abstract contract ERC1155Supply is ERC1155 {
mapping(uint256 => uint256) private _totalSupply;
/**
* @dev Total amount of tokens in with a given id.
*/
function totalSupply(uint256 id) public view virtual returns (uint256) {
return _totalSupply[id];
}
/**
* @dev Indicates whether any token exist with a given id, or not.
*/
function exists(uint256 id) public view virtual returns (bool) {
return ERC1155Supply.totalSupply(id) > 0;
}
/**
* @dev See {ERC1155-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual override {
super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
if (from == address(0)) {
for (uint256 i = 0; i < ids.length; ++i) {
_totalSupply[ids[i]] += amounts[i];
}
}
if (to == address(0)) {
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 supply = _totalSupply[id];
require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
unchecked {
_totalSupply[id] = supply - amount;
}
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)
pragma solidity ^0.8.0;
import "../IERC1155.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract.
SCRIPTS
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, require/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Timestamp {
uint start;
uint end;
function start () public {
start = block.timestamp;
}
function end() public {
end = block.timestamp;
}
function getTimeDif() public view returns(uint){
return end - start;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "hardhat/console.sol";
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
console.log("Owner contract deployed by:", msg.sender);
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Timestamp {
uint start;
uint end;
function start() public {
start = block.timestamp;
}
function end() public {
end = block.timestamp;
}
function getTimeDif() public view returns(uint){
return end - start;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
contract PaperScore is ERC1155, AccessControl, ERC1155Supply {
bytes32 public constant URI_SETTER_ROLE = keccak256("URI_SETTER_ROLE");
bytes32 public constant AUTHOR = keccak256("AUTHOR");
bytes32 public constant REVIWER = keccak256("REVIWER");
// Define Id variable for each paper
uint paperId = 1;
// Define a public mapping 'papers' that maps the Id to a paper.
// uint => Item
mapping(uint => Paper) papers;
// Define a public mapping 'papersHistory' that maps the id to an array of TxHash, that track its journey through paperScore protocol
// id => string[]
mapping (uint => string[]) papersHistory;
// Define enum 'State' with the following values:
enum State
{
Submitted, //0
Checked, //1
UnderReview, //2
Reviewed, //3
Published //4
}
// Define a default state with submitted state:
State constant defaultState = State.Submitted;
// Define a struct 'paper' with the following fields:
struct Paper {
uint paperId; // Paper ID
address author; // Author address
string title; // Paper title
string ipfsHash; // Ipfs address of paper
uint accessPrice; // Price to mint an access NFT
uint medianScore; // Median score of paper calculated by PaperScore
State paperState; // Paper State as represented in the enum State
address[] reviewers; // Array of reviewers
}
// Define 5 events with the same 5 state values and accept 'paperId' as input argument
event Submitted(uint indexed paperId, string ipfsHash, State paperState , address[] reviewers);
event Checked(uint paperId);
event UnderReview(uint paperId);
event Reviwed(uint paperId);
event Published(uint paperId);
// Modifiers
// Define a modifier that checks if a paper.state of a paperId is Submitted
modifier submitted(uint _paperId) {
require(papers[_paperId].paperState == State.Submitted, "This paper hasn't been submitted yet.");
_;
}
// Define a modifier that checks if a paper.state of a paperId is Checked
modifier checked(uint _paperId) {
require(papers[_paperId].paperState == State.Checked, "This paper hasn't been checked yet.");
_;
}
// Define a modifier that checks if a paper.state of a paperId is underReview
modifier underReview(uint _paperId) {
require(papers[_paperId].paperState == State.UnderReview, "This paper is still under review.");
_;
}
// Define a modifier that checks if a paper.state of a paperId is Reviewed
modifier reviewed(uint _paperId) {
require(papers[_paperId].paperState == State.Reviewed, "This paper hasn't been reviewed yet.");
_;
}
// Define a modifier that checks if a paper.state of a paperId is Reviewed
modifier published(uint _paperId) {
require(papers[_paperId].paperState == State.Published, "This paper hasn't been published yet.");
_;
}
// In the constructor set 'admin' to the address that instantiated the contract
constructor() ERC1155("https://paperscore-metadata-api/{id}") {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(URI_SETTER_ROLE, msg.sender);
_grantRole(AUTHOR, msg.sender);
// _grantRole(REVIWER, msg.sender);
}
// Functions //
// Define a function 'submitPaper' that allows an author to mark an item 'Submitted'
function submitPaper(
string memory _title,
string memory _ipfsHash,
address[] memory _reviewers) public payable onlyRole(AUTHOR)
{
// require(hasRole(AUTHOR, msg.sender), "You are not the author");
// Add the new paper
papers[paperId] = Paper({
// Paper ID:
paperId: paperId,
// Author address:
author: msg.sender,
// Title:
title: _title,
// Ipfs Address of paper:
ipfsHash: _ipfsHash,
// Paper price to mint access NFT:
accessPrice: uint(0),
// Median Score::
medianScore: uint(0),
// Paper state:
paperState: defaultState,
// Suggested reviewers by author:
reviewers: _reviewers
});
// Emit submit event
emit Submitted(paperId, _ipfsHash, State.Submitted, _reviewers);
// Increment paperId
paperId++;
}
function setURI(string memory newuri) public onlyRole(URI_SETTER_ROLE) {
_setURI(newuri);
}
function mint(address account, uint256 id, uint256 amount, bytes memory data)
public
onlyRole(DEFAULT_ADMIN_ROLE)
{
_mint(account, id, amount, data);
}
function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
public
onlyRole(DEFAULT_ADMIN_ROLE)
{
_mintBatch(to, ids, amounts, data);
}
// The following functions are overrides required by Solidity.
function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
internal
override(ERC1155, ERC1155Supply)
{
super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC1155, AccessControl)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Review is Ownable {
// Define a public mapping 'reviwers' that maps the address to a reviewer.
// address => Reviewer
mapping(address => Reviewer) reviewers;
mapping(address => bool) reviewerExists;
struct Reviewer {
address reviewer; // Reviewer address
uint reviewerPoint; // Reviewer Score
mapping (uint => bool) allowed; // Allowed ids to review
mapping (uint => uint[5]) scores; // Ids to submitted scores
}
// Define 5 event to listen changes in reviewer smart contract
event ReviewerAdded(address[] reviewers);
event PaperAssigned(address[] reviewers, uint[] paperIds);
event PaperScoreSubmitted(uint paperId, uint[5] scores);
event ReviewerChanged(uint paperId, address nextReviewer);
event ReviewerScored(address reviewer, uint reviewerPoint);
// Define a function to add a reviewer
function addReviewer(address[] memory _reviewers) public onlyOwner{
require(_reviewers.length > 0, 'Array is empty. please add a reviewer public address');
for (uint256 i = 0; i < _reviewers.length; i++)
if(!isReviewer(_reviewers[i]) && _reviewers[i] != address(0)){
reviewerExists[_reviewers[i]] = true;
reviewers[_reviewers[i]].reviewer = _reviewers[i];
}
emit ReviewerAdded(_reviewers);
}
// Define a function to assign paper to reviewer
function assignPaper(address[] memory _reviewers, uint[] memory _paperIds) public onlyOwner {
require(_reviewers.length > 0 && _paperIds.length > 0, 'You can not send and empty array');
for (uint256 i = 0; i < _reviewers.length; i++)
if(isReviewer(_reviewers[i])){
for(uint256 j = 0; j < _paperIds.length; j++){
if(!allowed(_reviewers[i], _paperIds[j]))
reviewers[_reviewers[i]].allowed[_paperIds[j]] = true;
}
}
emit PaperAssigned(_reviewers, _paperIds);
}
//Define a function to submit paper scores
function submitPaperScore(uint _paperId, uint[5] memory _scores) public {
require(isReviewer(msg.sender), 'You are not a reviewer');
require(allowed(msg.sender, _paperId), 'You are not allowed to submit score for this paper');
reviewers[msg.sender].scores[_paperId] = _scores;
reviewers[msg.sender].allowed[_paperId] = false;
emit PaperScoreSubmitted(_paperId, _scores);
}
//Define a fucntion to pass access to next reviewer
function passToNextReviewer(uint _paperId, address _nextReviewer) public {
require(isReviewer(msg.sender), 'You are not a reviewer');
require(isReviewer(_nextReviewer), 'Given address is not a reviewer');
require(allowed(msg.sender, _paperId), 'You are not allowed to submit score for this paper');
reviewers[msg.sender].allowed[_paperId] = false;
reviewers[_nextReviewer].allowed[_paperId] = true;
emit ReviewerChanged(_paperId, _nextReviewer);
}
//Define a fucntion to score Reviewer
function scoreReviewer(address _reviewer, uint _reviewerPoint) public onlyOwner {
require(isReviewer(_reviewer), 'Address is not a reviewer');
require(_reviewerPoint >= 0 && _reviewerPoint <= 10, 'submit a valid score');
reviewers[_reviewer].reviewerPoint = _reviewerPoint;
emit ReviewerScored(_reviewer, _reviewerPoint);
}
// Helper function to check if address is Reviewer
function isReviewer(address _address) public view returns(bool _isReviewer) {
return reviewerExists[_address];
}
// Helper function to check if address is allowed to submit score for paper
function allowed(address _address, uint _paperId) public view returns(bool _allowed){
return reviewers[_address].allowed[_paperId];
}
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:13"
},
"nodeType": "YulFunctionCall",
"src": "78:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:13"
},
"nodeType": "YulFunctionCall",
"src": "125:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:13"
},
"nodeType": "YulFunctionCall",
"src": "200:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:13"
},
"nodeType": "YulFunctionCall",
"src": "149:26:13"
},
"nodeType": "YulIf",
"src": "146:2:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:13"
},
"nodeType": "YulFunctionCall",
"src": "293:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:13"
},
"nodeType": "YulFunctionCall",
"src": "263:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:13"
},
"nodeType": "YulFunctionCall",
"src": "240:38:13"
},
"nodeType": "YulIf",
"src": "237:2:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:13",
"type": ""
}
],
"src": "7:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:13"
},
"nodeType": "YulFunctionCall",
"src": "371:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:13"
},
"nodeType": "YulFunctionCall",
"src": "468:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:13"
},
"nodeType": "YulFunctionCall",
"src": "492:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:13"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260016005553480156200001657600080fd5b5060405180606001604052806024815260200162004848602491396200004281620000c260201b60201c565b50620000586000801b33620000de60201b60201c565b6200008a7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c33620000de60201b60201c565b620000bc7fc3804b311cb423d6a5c669b1a91eaa36c50f5d1a91f8ab0663a237f5dc41226333620000de60201b60201c565b62000358565b8060029080519060200190620000da92919062000243565b5050565b620000f08282620001d060201b60201c565b620001cc5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001716200023b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200025190620002f3565b90600052602060002090601f016020900481019282620002755760008555620002c1565b82601f106200029057805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c0578251825591602001919060010190620002a3565b5b509050620002d09190620002d4565b5090565b5b80821115620002ef576000816000905550600101620002d5565b5090565b600060028204905060018216806200030c57607f821691505b6020821081141562000323576200032262000329565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144e080620003686000396000f3fe60806040526004361061013f5760003560e01c80634f558e79116100b6578063a7be85c61161006f578063a7be85c61461048f578063bd85b039146104ba578063cabd7b23146104f7578063d547741f14610513578063e985e9c51461053c578063f242432a146105795761013f565b80634f558e791461036d578063731133e9146103aa5780637f345710146103d357806391d14854146103fe578063a217fddf1461043b578063a22cb465146104665761013f565b80631f7fdffa116101085780631f7fdffa1461024f578063248a9ca3146102785780632eb2c2d6146102b55780632f2ff15d146102de57806336568abe146103075780634e1273f4146103305761013f565b8062fdd58e1461014457806301ffc9a71461018157806302fe5305146101be57806305666adf146101e75780630e89341c14610212575b600080fd5b34801561015057600080fd5b5061016b60048036038101906101669190612fad565b6105a2565b6040516101789190613a1f565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190613135565b61066b565b6040516101b591906137e2565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190613187565b61067d565b005b3480156101f357600080fd5b506101fc6106b4565b60405161020991906137fd565b60405180910390f35b34801561021e57600080fd5b506102396004803603810190610234919061325f565b6106d8565b6040516102469190613818565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612ec6565b61076c565b005b34801561028457600080fd5b5061029f600480360381019061029a91906130d0565b61078c565b6040516102ac91906137fd565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d78565b6107ac565b005b3480156102ea57600080fd5b50610305600480360381019061030091906130f9565b61084d565b005b34801561031357600080fd5b5061032e600480360381019061032991906130f9565b61086e565b005b34801561033c57600080fd5b5061035760048036038101906103529190613064565b6108f1565b6040516103649190613789565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061325f565b610aa2565b6040516103a191906137e2565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612fe9565b610ab6565b005b3480156103df57600080fd5b506103e8610ad6565b6040516103f591906137fd565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906130f9565b610afa565b60405161043291906137e2565b60405180910390f35b34801561044757600080fd5b50610450610b65565b60405161045d91906137fd565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f71565b610b6c565b005b34801561049b57600080fd5b506104a4610b82565b6040516104b191906137fd565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061325f565b610ba6565b6040516104ee9190613a1f565b60405180910390f35b610511600480360381019061050c91906131c8565b610bc3565b005b34801561051f57600080fd5b5061053a600480360381019061053591906130f9565b610e01565b005b34801561054857600080fd5b50610563600480360381019061055e9190612d3c565b610e22565b60405161057091906137e2565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190612e37565b610eb6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906138ff565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061067682610f57565b9050919050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c6106a781610fd1565b6106b082610fe5565b5050565b7f885c6469c15dccdb29e4eb494ae657bb614976dcd4d5a0cc43c4bc691111ed9481565b6060600280546106e790613db6565b80601f016020809104026020016040519081016040528092919081815260200182805461071390613db6565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b50505050509050919050565b6000801b61077981610fd1565b61078585858585610fff565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b6107b4611278565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107fa57506107f9856107f4611278565b610e22565b5b610839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108309061389f565b60405180910390fd5b6108468585858585611280565b5050505050565b6108568261078c565b61085f81610fd1565b61086983836115ee565b505050565b610876611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da906139ff565b60405180910390fd5b6108ed82826116cf565b5050565b60608151835114610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e9061399f565b60405180910390fd5b6000835167ffffffffffffffff81111561097a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109a85781602001602082028036833780820191505090505b50905060005b8451811015610a9757610a418582815181106109f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105a2565b828281518110610a7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610a9090613e19565b90506109ae565b508091505092915050565b600080610aae83610ba6565b119050919050565b6000801b610ac381610fd1565b610acf858585856117b1565b5050505050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c81565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b610b7e610b77611278565b8383611962565b5050565b7fc3804b311cb423d6a5c669b1a91eaa36c50f5d1a91f8ab0663a237f5dc41226381565b600060046000838152602001908152602001600020549050919050565b7fc3804b311cb423d6a5c669b1a91eaa36c50f5d1a91f8ab0663a237f5dc412263610bed81610fd1565b60405180610100016040528060055481526020013373ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001600081526020016000815260200160006004811115610c71577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001838152506006600060055481526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002019080519060200190610cfc929190612995565b506060820151816003019080519060200190610d19929190612995565b506080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690836004811115610d7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060e0820151816007019080519060200190610da0929190612a1b565b509050506005547f55809472c1de23d654388f72ff8a889e1dc2cc32ac1e50b68f0293be253beee084600085604051610ddb9392919061383a565b60405180910390a260056000815480929190610df690613e19565b919050555050505050565b610e0a8261078c565b610e1381610fd1565b610e1d83836116cf565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ebe611278565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f045750610f0385610efe611278565b610e22565b5b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061389f565b60405180910390fd5b610f508585858585611acf565b5050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fca5750610fc982611d6b565b5b9050919050565b610fe281610fdd611278565b611e4d565b50565b8060029080519060200190610ffb929190612995565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906139df565b60405180910390fd5b81518351146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906139bf565b60405180910390fd5b60006110bd611278565b90506110ce81600087878787611eea565b60005b84518110156111d357838181518110611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611157577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b99190613bf7565b9250508190555080806111cb90613e19565b9150506110d1565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161124b9291906137ab565b60405180910390a461126281600087878787611f00565b61127181600087878787611f08565b5050505050565b600033905090565b81518351146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906139bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061391f565b60405180910390fd5b600061133e611278565b905061134e818787878787611eea565b60005b845181101561154b576000858281518110611395577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106113da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061393f565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115309190613bf7565b925050819055505050508061154490613e19565b9050611351565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115c29291906137ab565b60405180910390a46115d8818787878787611f00565b6115e6818787878787611f08565b505050505050565b6115f88282610afa565b6116cb5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611670611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116d98282610afa565b156117ad5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611752611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906139df565b60405180910390fd5b600061182b611278565b90506000611838856120ef565b90506000611845856120ef565b905061185683600089858589611eea565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b59190613bf7565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611933929190613a3a565b60405180910390a461194a83600089858589611f00565b611959836000898989896121b5565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061397f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac291906137e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061391f565b60405180910390fd5b6000611b49611278565b90506000611b56856120ef565b90506000611b63856120ef565b9050611b73838989858589611eea565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c019061393f565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbf9190613bf7565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d3c929190613a3a565b60405180910390a4611d52848a8a86868a611f00565b611d60848a8a8a8a8a6121b5565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e465750611e458261239c565b5b9050919050565b611e578282610afa565b611ee657611e7c8173ffffffffffffffffffffffffffffffffffffffff166014612406565b611e8a8360001c6020612406565b604051602001611e9b92919061368d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd9190613818565b60405180910390fd5b5050565b611ef8868686868686612700565b505050505050565b505050505050565b611f278473ffffffffffffffffffffffffffffffffffffffff1661296a565b156120e7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f6d9594939291906136c7565b602060405180830381600087803b158015611f8757600080fd5b505af1925050508015611fb857506040513d601f19601f82011682018060405250810190611fb5919061315e565b60015b61205e57611fc4613f1e565b806308c379a014156120215750611fd961438d565b80611fe45750612023565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120189190613818565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120559061387f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906138df565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612134577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156121625781602001602082028036833780820191505090505b50905082816000815181106121a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6121d48473ffffffffffffffffffffffffffffffffffffffff1661296a565b15612394578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161221a95949392919061372f565b602060405180830381600087803b15801561223457600080fd5b505af192505050801561226557506040513d601f19601f82011682018060405250810190612262919061315e565b60015b61230b57612271613f1e565b806308c379a014156122ce575061228661438d565b8061229157506122d0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c59190613818565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123029061387f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906138df565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026124199190613c4d565b6124239190613bf7565b67ffffffffffffffff811115612462577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124945781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061257c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125bc9190613c4d565b6125c69190613bf7565b90505b60018111156126b2577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061262e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061266b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806126ab90613d8c565b90506125c9565b50600084146126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed906138bf565b60405180910390fd5b8091505092915050565b61270e86868686868661298d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280c5760005b835181101561280a57828181518110612788577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008684815181106127cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546127f29190613bf7565b925050819055508061280390613e19565b9050612746565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129625760005b8351811015612960576000848281518110612888577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106128cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002054905081811015612932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129299061395f565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061295990613e19565b9050612844565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546129a190613db6565b90600052602060002090601f0160209004810192826129c35760008555612a0a565b82601f106129dc57805160ff1916838001178555612a0a565b82800160010185558215612a0a579182015b82811115612a095782518255916020019190600101906129ee565b5b509050612a179190612aa5565b5090565b828054828255906000526020600020908101928215612a94579160200282015b82811115612a935782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612a3b565b5b509050612aa19190612aa5565b5090565b5b80821115612abe576000816000905550600101612aa6565b5090565b6000612ad5612ad084613a88565b613a63565b90508083825260208201905082856020860282011115612af457600080fd5b60005b85811015612b245781612b0a8882612c16565b845260208401935060208301925050600181019050612af7565b5050509392505050565b6000612b41612b3c84613ab4565b613a63565b90508083825260208201905082856020860282011115612b6057600080fd5b60005b85811015612b905781612b768882612d27565b845260208401935060208301925050600181019050612b63565b5050509392505050565b6000612bad612ba884613ae0565b613a63565b905082815260208101848484011115612bc557600080fd5b612bd0848285613d4a565b509392505050565b6000612beb612be684613b11565b613a63565b905082815260208101848484011115612c0357600080fd5b612c0e848285613d4a565b509392505050565b600081359050612c2581614437565b92915050565b600082601f830112612c3c57600080fd5b8135612c4c848260208601612ac2565b91505092915050565b600082601f830112612c6657600080fd5b8135612c76848260208601612b2e565b91505092915050565b600081359050612c8e8161444e565b92915050565b600081359050612ca381614465565b92915050565b600081359050612cb88161447c565b92915050565b600081519050612ccd8161447c565b92915050565b600082601f830112612ce457600080fd5b8135612cf4848260208601612b9a565b91505092915050565b600082601f830112612d0e57600080fd5b8135612d1e848260208601612bd8565b91505092915050565b600081359050612d3681614493565b92915050565b60008060408385031215612d4f57600080fd5b6000612d5d85828601612c16565b9250506020612d6e85828601612c16565b9150509250929050565b600080600080600060a08688031215612d9057600080fd5b6000612d9e88828901612c16565b9550506020612daf88828901612c16565b945050604086013567ffffffffffffffff811115612dcc57600080fd5b612dd888828901612c55565b935050606086013567ffffffffffffffff811115612df557600080fd5b612e0188828901612c55565b925050608086013567ffffffffffffffff811115612e1e57600080fd5b612e2a88828901612cd3565b9150509295509295909350565b600080600080600060a08688031215612e4f57600080fd5b6000612e5d88828901612c16565b9550506020612e6e88828901612c16565b9450506040612e7f88828901612d27565b9350506060612e9088828901612d27565b925050608086013567ffffffffffffffff811115612ead57600080fd5b612eb988828901612cd3565b9150509295509295909350565b60008060008060808587031215612edc57600080fd5b6000612eea87828801612c16565b945050602085013567ffffffffffffffff811115612f0757600080fd5b612f1387828801612c55565b935050604085013567ffffffffffffffff811115612f3057600080fd5b612f3c87828801612c55565b925050606085013567ffffffffffffffff811115612f5957600080fd5b612f6587828801612cd3565b91505092959194509250565b60008060408385031215612f8457600080fd5b6000612f9285828601612c16565b9250506020612fa385828601612c7f565b9150509250929050565b60008060408385031215612fc057600080fd5b6000612fce85828601612c16565b9250506020612fdf85828601612d27565b9150509250929050565b60008060008060808587031215612fff57600080fd5b600061300d87828801612c16565b945050602061301e87828801612d27565b935050604061302f87828801612d27565b925050606085013567ffffffffffffffff81111561304c57600080fd5b61305887828801612cd3565b91505092959194509250565b6000806040838503121561307757600080fd5b600083013567ffffffffffffffff81111561309157600080fd5b61309d85828601612c2b565b925050602083013567ffffffffffffffff8111156130ba57600080fd5b6130c685828601612c55565b9150509250929050565b6000602082840312156130e257600080fd5b60006130f084828501612c94565b91505092915050565b6000806040838503121561310c57600080fd5b600061311a85828601612c94565b925050602061312b85828601612c16565b9150509250929050565b60006020828403121561314757600080fd5b600061315584828501612ca9565b91505092915050565b60006020828403121561317057600080fd5b600061317e84828501612cbe565b91505092915050565b60006020828403121561319957600080fd5b600082013567ffffffffffffffff8111156131b357600080fd5b6131bf84828501612cfd565b91505092915050565b6000806000606084860312156131dd57600080fd5b600084013567ffffffffffffffff8111156131f757600080fd5b61320386828701612cfd565b935050602084013567ffffffffffffffff81111561322057600080fd5b61322c86828701612cfd565b925050604084013567ffffffffffffffff81111561324957600080fd5b61325586828701612c2b565b9150509250925092565b60006020828403121561327157600080fd5b600061327f84828501612d27565b91505092915050565b600061329483836132b8565b60208301905092915050565b60006132ac838361366f565b60208301905092915050565b6132c181613ca7565b82525050565b6132d081613ca7565b82525050565b60006132e182613b62565b6132eb8185613ba8565b93506132f683613b42565b8060005b8381101561332757815161330e8882613288565b975061331983613b8e565b9250506001810190506132fa565b5085935050505092915050565b600061333f82613b6d565b6133498185613bb9565b935061335483613b52565b8060005b8381101561338557815161336c88826132a0565b975061337783613b9b565b925050600181019050613358565b5085935050505092915050565b61339b81613cb9565b82525050565b6133aa81613cc5565b82525050565b60006133bb82613b78565b6133c58185613bca565b93506133d5818560208601613d59565b6133de81613f40565b840191505092915050565b6133f281613d38565b82525050565b600061340382613b83565b61340d8185613bdb565b935061341d818560208601613d59565b61342681613f40565b840191505092915050565b600061343c82613b83565b6134468185613bec565b9350613456818560208601613d59565b80840191505092915050565b600061346f603483613bdb565b915061347a82613f5e565b604082019050919050565b6000613492602f83613bdb565b915061349d82613fad565b604082019050919050565b60006134b5602083613bdb565b91506134c082613ffc565b602082019050919050565b60006134d8602883613bdb565b91506134e382614025565b604082019050919050565b60006134fb602a83613bdb565b915061350682614074565b604082019050919050565b600061351e602583613bdb565b9150613529826140c3565b604082019050919050565b6000613541602a83613bdb565b915061354c82614112565b604082019050919050565b6000613564602883613bdb565b915061356f82614161565b604082019050919050565b6000613587601783613bec565b9150613592826141b0565b601782019050919050565b60006135aa602983613bdb565b91506135b5826141d9565b604082019050919050565b60006135cd602983613bdb565b91506135d882614228565b604082019050919050565b60006135f0602883613bdb565b91506135fb82614277565b604082019050919050565b6000613613602183613bdb565b915061361e826142c6565b604082019050919050565b6000613636601183613bec565b915061364182614315565b601182019050919050565b6000613659602f83613bdb565b91506136648261433e565b604082019050919050565b61367881613d2e565b82525050565b61368781613d2e565b82525050565b60006136988261357a565b91506136a48285613431565b91506136af82613629565b91506136bb8284613431565b91508190509392505050565b600060a0820190506136dc60008301886132c7565b6136e960208301876132c7565b81810360408301526136fb8186613334565b9050818103606083015261370f8185613334565b9050818103608083015261372381846133b0565b90509695505050505050565b600060a08201905061374460008301886132c7565b61375160208301876132c7565b61375e604083018661367e565b61376b606083018561367e565b818103608083015261377d81846133b0565b90509695505050505050565b600060208201905081810360008301526137a38184613334565b905092915050565b600060408201905081810360008301526137c58185613334565b905081810360208301526137d98184613334565b90509392505050565b60006020820190506137f76000830184613392565b92915050565b600060208201905061381260008301846133a1565b92915050565b6000602082019050818103600083015261383281846133f8565b905092915050565b6000606082019050818103600083015261385481866133f8565b905061386360208301856133e9565b818103604083015261387581846132d6565b9050949350505050565b6000602082019050818103600083015261389881613462565b9050919050565b600060208201905081810360008301526138b881613485565b9050919050565b600060208201905081810360008301526138d8816134a8565b9050919050565b600060208201905081810360008301526138f8816134cb565b9050919050565b60006020820190508181036000830152613918816134ee565b9050919050565b6000602082019050818103600083015261393881613511565b9050919050565b6000602082019050818103600083015261395881613534565b9050919050565b6000602082019050818103600083015261397881613557565b9050919050565b600060208201905081810360008301526139988161359d565b9050919050565b600060208201905081810360008301526139b8816135c0565b9050919050565b600060208201905081810360008301526139d8816135e3565b9050919050565b600060208201905081810360008301526139f881613606565b9050919050565b60006020820190508181036000830152613a188161364c565b9050919050565b6000602082019050613a34600083018461367e565b92915050565b6000604082019050613a4f600083018561367e565b613a5c602083018461367e565b9392505050565b6000613a6d613a7e565b9050613a798282613de8565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa357613aa2613eef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613acf57613ace613eef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613afb57613afa613eef565b5b613b0482613f40565b9050602081019050919050565b600067ffffffffffffffff821115613b2c57613b2b613eef565b5b613b3582613f40565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0282613d2e565b9150613c0d83613d2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4257613c41613e62565b5b828201905092915050565b6000613c5882613d2e565b9150613c6383613d2e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9c57613c9b613e62565b5b828202905092915050565b6000613cb282613d0e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d0982614423565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613d4382613cfb565b9050919050565b82818337600083830152505050565b60005b83811015613d77578082015181840152602081019050613d5c565b83811115613d86576000848401525b50505050565b6000613d9782613d2e565b91506000821415613dab57613daa613e62565b5b600182039050919050565b60006002820490506001821680613dce57607f821691505b60208210811415613de257613de1613ec0565b5b50919050565b613df182613f40565b810181811067ffffffffffffffff82111715613e1057613e0f613eef565b5b80604052505050565b6000613e2482613d2e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5757613e56613e62565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613f3d5760046000803e613f3a600051613f51565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d101561439d57614420565b6143a5613a7e565b60043d036004823e80513d602482011167ffffffffffffffff821117156143cd575050614420565b808201805167ffffffffffffffff8111156143eb5750505050614420565b80602083010160043d038501811115614408575050505050614420565b61441782602001850186613de8565b82955050505050505b90565b6005811061443457614433613e91565b5b50565b61444081613ca7565b811461444b57600080fd5b50565b61445781613cb9565b811461446257600080fd5b50565b61446e81613cc5565b811461447957600080fd5b50565b61448581613ccf565b811461449057600080fd5b50565b61449c81613d2e565b81146144a757600080fd5b5056fea2646970667358221220a31448458bcd1d4141bc2c8a997c1e138e63689a8e8510b6f973e902ebfe13e764736f6c6343000804003368747470733a2f2f706170657273636f72652d6d657461646174612d6170692f7b69647d",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH1 0x5 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x24 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x4848 PUSH1 0x24 SWAP2 CODECOPY PUSH3 0x42 DUP2 PUSH3 0xC2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x58 PUSH1 0x0 DUP1 SHL CALLER PUSH3 0xDE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x8A PUSH32 0x7804D923F43A17D325D77E781528E0793B2EDD9890AB45FC64EFD7B4B427744C CALLER PUSH3 0xDE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xBC PUSH32 0xC3804B311CB423D6A5C669B1A91EAA36C50F5D1A91F8AB0663A237F5DC412263 CALLER PUSH3 0xDE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x358 JUMP JUMPDEST DUP1 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xDA SWAP3 SWAP2 SWAP1 PUSH3 0x243 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0xF0 DUP3 DUP3 PUSH3 0x1D0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1CC JUMPI PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH3 0x171 PUSH3 0x23B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x251 SWAP1 PUSH3 0x2F3 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x275 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x2C1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x290 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x2C1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x2C1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2C0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x2A3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x2D0 SWAP2 SWAP1 PUSH3 0x2D4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x2EF JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x2D5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x30C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x323 JUMPI PUSH3 0x322 PUSH3 0x329 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x44E0 DUP1 PUSH3 0x368 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x13F JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4F558E79 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xA7BE85C6 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xA7BE85C6 EQ PUSH2 0x48F JUMPI DUP1 PUSH4 0xBD85B039 EQ PUSH2 0x4BA JUMPI DUP1 PUSH4 0xCABD7B23 EQ PUSH2 0x4F7 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x513 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x53C JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x579 JUMPI PUSH2 0x13F JUMP JUMPDEST DUP1 PUSH4 0x4F558E79 EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0x731133E9 EQ PUSH2 0x3AA JUMPI DUP1 PUSH4 0x7F345710 EQ PUSH2 0x3D3 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x43B JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x466 JUMPI PUSH2 0x13F JUMP JUMPDEST DUP1 PUSH4 0x1F7FDFFA GT PUSH2 0x108 JUMPI DUP1 PUSH4 0x1F7FDFFA EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x278 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x2B5 JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x307 JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x330 JUMPI PUSH2 0x13F JUMP JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x2FE5305 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0x5666ADF EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x212 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x150 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x166 SWAP2 SWAP1 PUSH2 0x2FAD JUMP JUMPDEST PUSH2 0x5A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x178 SWAP2 SWAP1 PUSH2 0x3A1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x3135 JUMP JUMPDEST PUSH2 0x66B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B5 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST PUSH2 0x67D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1FC PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x239 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x234 SWAP2 SWAP1 PUSH2 0x325F JUMP JUMPDEST PUSH2 0x6D8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x246 SWAP2 SWAP1 PUSH2 0x3818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x2EC6 JUMP JUMPDEST PUSH2 0x76C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x284 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x29F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29A SWAP2 SWAP1 PUSH2 0x30D0 JUMP JUMPDEST PUSH2 0x78C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x2D78 JUMP JUMPDEST PUSH2 0x7AC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x30F9 JUMP JUMPDEST PUSH2 0x84D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x313 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x30F9 JUMP JUMPDEST PUSH2 0x86E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x33C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x357 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x352 SWAP2 SWAP1 PUSH2 0x3064 JUMP JUMPDEST PUSH2 0x8F1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x364 SWAP2 SWAP1 PUSH2 0x3789 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x379 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x394 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38F SWAP2 SWAP1 PUSH2 0x325F JUMP JUMPDEST PUSH2 0xAA2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A1 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3D1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3CC SWAP2 SWAP1 PUSH2 0x2FE9 JUMP JUMPDEST PUSH2 0xAB6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E8 PUSH2 0xAD6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F5 SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x425 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x30F9 JUMP JUMPDEST PUSH2 0xAFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x432 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x447 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x450 PUSH2 0xB65 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45D SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x472 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x48D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x488 SWAP2 SWAP1 PUSH2 0x2F71 JUMP JUMPDEST PUSH2 0xB6C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4A4 PUSH2 0xB82 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B1 SWAP2 SWAP1 PUSH2 0x37FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4E1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4DC SWAP2 SWAP1 PUSH2 0x325F JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4EE SWAP2 SWAP1 PUSH2 0x3A1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x511 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50C SWAP2 SWAP1 PUSH2 0x31C8 JUMP JUMPDEST PUSH2 0xBC3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x53A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x535 SWAP2 SWAP1 PUSH2 0x30F9 JUMP JUMPDEST PUSH2 0xE01 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x548 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x563 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x55E SWAP2 SWAP1 PUSH2 0x2D3C JUMP JUMPDEST PUSH2 0xE22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x570 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x585 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5A0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x59B SWAP2 SWAP1 PUSH2 0x2E37 JUMP JUMPDEST PUSH2 0xEB6 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x613 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60A SWAP1 PUSH2 0x38FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x676 DUP3 PUSH2 0xF57 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x7804D923F43A17D325D77E781528E0793B2EDD9890AB45FC64EFD7B4B427744C PUSH2 0x6A7 DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0x6B0 DUP3 PUSH2 0xFE5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x885C6469C15DCCDB29E4EB494AE657BB614976DCD4D5A0CC43C4BC691111ED94 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x6E7 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x713 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x760 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x735 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x760 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x743 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0x779 DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0x785 DUP6 DUP6 DUP6 DUP6 PUSH2 0xFFF JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7B4 PUSH2 0x1278 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x7FA JUMPI POP PUSH2 0x7F9 DUP6 PUSH2 0x7F4 PUSH2 0x1278 JUMP JUMPDEST PUSH2 0xE22 JUMP JUMPDEST JUMPDEST PUSH2 0x839 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x830 SWAP1 PUSH2 0x389F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x846 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x1280 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x856 DUP3 PUSH2 0x78C JUMP JUMPDEST PUSH2 0x85F DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0x869 DUP4 DUP4 PUSH2 0x15EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x876 PUSH2 0x1278 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8DA SWAP1 PUSH2 0x39FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8ED DUP3 DUP3 PUSH2 0x16CF JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x937 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x92E SWAP1 PUSH2 0x399F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x97A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x9A8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xA97 JUMPI PUSH2 0xA41 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9F3 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xA34 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x5A2 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA7A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH2 0xA90 SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP PUSH2 0x9AE JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xAAE DUP4 PUSH2 0xBA6 JUMP JUMPDEST GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL PUSH2 0xAC3 DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0xACF DUP6 DUP6 DUP6 DUP6 PUSH2 0x17B1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x7804D923F43A17D325D77E781528E0793B2EDD9890AB45FC64EFD7B4B427744C DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0xB7E PUSH2 0xB77 PUSH2 0x1278 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1962 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0xC3804B311CB423D6A5C669B1A91EAA36C50F5D1A91F8AB0663A237F5DC412263 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0xC3804B311CB423D6A5C669B1A91EAA36C50F5D1A91F8AB0663A237F5DC412263 PUSH2 0xBED DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 SLOAD DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xC71 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP PUSH1 0x6 PUSH1 0x0 PUSH1 0x5 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xCFC SWAP3 SWAP2 SWAP1 PUSH2 0x2995 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xD19 SWAP3 SWAP2 SWAP1 PUSH2 0x2995 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0xD7F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xDA0 SWAP3 SWAP2 SWAP1 PUSH2 0x2A1B JUMP JUMPDEST POP SWAP1 POP POP PUSH1 0x5 SLOAD PUSH32 0x55809472C1DE23D654388F72FF8A889E1DC2CC32AC1E50B68F0293BE253BEEE0 DUP5 PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0xDDB SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x383A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x5 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xDF6 SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0xE0A DUP3 PUSH2 0x78C JUMP JUMPDEST PUSH2 0xE13 DUP2 PUSH2 0xFD1 JUMP JUMPDEST PUSH2 0xE1D DUP4 DUP4 PUSH2 0x16CF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xEBE PUSH2 0x1278 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xF04 JUMPI POP PUSH2 0xF03 DUP6 PUSH2 0xEFE PUSH2 0x1278 JUMP JUMPDEST PUSH2 0xE22 JUMP JUMPDEST JUMPDEST PUSH2 0xF43 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3A SWAP1 PUSH2 0x389F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF50 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x1ACF JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xFCA JUMPI POP PUSH2 0xFC9 DUP3 PUSH2 0x1D6B JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE2 DUP2 PUSH2 0xFDD PUSH2 0x1278 JUMP JUMPDEST PUSH2 0x1E4D JUMP JUMPDEST POP JUMP JUMPDEST DUP1 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xFFB SWAP3 SWAP2 SWAP1 PUSH2 0x2995 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x106F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1066 SWAP1 PUSH2 0x39DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x10B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10AA SWAP1 PUSH2 0x39BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10BD PUSH2 0x1278 JUMP JUMPDEST SWAP1 POP PUSH2 0x10CE DUP2 PUSH1 0x0 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1EEA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x11D3 JUMPI DUP4 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1113 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 DUP1 DUP8 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x1157 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x11B9 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x11CB SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x10D1 JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x124B SWAP3 SWAP2 SWAP1 PUSH2 0x37AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1262 DUP2 PUSH1 0x0 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1F00 JUMP JUMPDEST PUSH2 0x1271 DUP2 PUSH1 0x0 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1F08 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x12C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12BB SWAP1 PUSH2 0x39BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1334 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x132B SWAP1 PUSH2 0x391F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x133E PUSH2 0x1278 JUMP JUMPDEST SWAP1 POP PUSH2 0x134E DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1EEA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x154B JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1395 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x13DA JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x147B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1472 SWAP1 PUSH2 0x393F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1530 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x1544 SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP PUSH2 0x1351 JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0x15C2 SWAP3 SWAP2 SWAP1 PUSH2 0x37AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x15D8 DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1F00 JUMP JUMPDEST PUSH2 0x15E6 DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1F08 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x15F8 DUP3 DUP3 PUSH2 0xAFA JUMP JUMPDEST PUSH2 0x16CB JUMPI PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1670 PUSH2 0x1278 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x16D9 DUP3 DUP3 PUSH2 0xAFA JUMP JUMPDEST ISZERO PUSH2 0x17AD JUMPI PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1752 PUSH2 0x1278 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1821 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1818 SWAP1 PUSH2 0x39DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x182B PUSH2 0x1278 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1838 DUP6 PUSH2 0x20EF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1845 DUP6 PUSH2 0x20EF JUMP JUMPDEST SWAP1 POP PUSH2 0x1856 DUP4 PUSH1 0x0 DUP10 DUP6 DUP6 DUP10 PUSH2 0x1EEA JUMP JUMPDEST DUP5 PUSH1 0x0 DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x18B5 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH2 0x1933 SWAP3 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x194A DUP4 PUSH1 0x0 DUP10 DUP6 DUP6 DUP10 PUSH2 0x1F00 JUMP JUMPDEST PUSH2 0x1959 DUP4 PUSH1 0x0 DUP10 DUP10 DUP10 DUP10 PUSH2 0x21B5 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x19D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19C8 SWAP1 PUSH2 0x397F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1AC2 SWAP2 SWAP1 PUSH2 0x37E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B36 SWAP1 PUSH2 0x391F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1B49 PUSH2 0x1278 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1B56 DUP6 PUSH2 0x20EF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1B63 DUP6 PUSH2 0x20EF JUMP JUMPDEST SWAP1 POP PUSH2 0x1B73 DUP4 DUP10 DUP10 DUP6 DUP6 DUP10 PUSH2 0x1EEA JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP6 DUP2 LT ISZERO PUSH2 0x1C0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C01 SWAP1 PUSH2 0x393F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP6 DUP2 SUB PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x0 DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1CBF SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP11 DUP11 PUSH1 0x40 MLOAD PUSH2 0x1D3C SWAP3 SWAP2 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1D52 DUP5 DUP11 DUP11 DUP7 DUP7 DUP11 PUSH2 0x1F00 JUMP JUMPDEST PUSH2 0x1D60 DUP5 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x21B5 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xD9B67A2600000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1E36 JUMPI POP PUSH32 0xE89341C00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x1E46 JUMPI POP PUSH2 0x1E45 DUP3 PUSH2 0x239C JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E57 DUP3 DUP3 PUSH2 0xAFA JUMP JUMPDEST PUSH2 0x1EE6 JUMPI PUSH2 0x1E7C DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x2406 JUMP JUMPDEST PUSH2 0x1E8A DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x2406 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1E9B SWAP3 SWAP2 SWAP1 PUSH2 0x368D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EDD SWAP2 SWAP1 PUSH2 0x3818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1EF8 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x2700 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1F27 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x296A JUMP JUMPDEST ISZERO PUSH2 0x20E7 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xBC197C81 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F6D SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x36C7 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1FB8 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1FB5 SWAP2 SWAP1 PUSH2 0x315E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x205E JUMPI PUSH2 0x1FC4 PUSH2 0x3F1E JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x2021 JUMPI POP PUSH2 0x1FD9 PUSH2 0x438D JUMP JUMPDEST DUP1 PUSH2 0x1FE4 JUMPI POP PUSH2 0x2023 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2018 SWAP2 SWAP1 PUSH2 0x3818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2055 SWAP1 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xBC197C81 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x20E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20DC SWAP1 PUSH2 0x38DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2134 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2162 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x21A0 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x21D4 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x296A JUMP JUMPDEST ISZERO PUSH2 0x2394 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF23A6E61 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x221A SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x372F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2234 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2265 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2262 SWAP2 SWAP1 PUSH2 0x315E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x230B JUMPI PUSH2 0x2271 PUSH2 0x3F1E JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 EQ ISZERO PUSH2 0x22CE JUMPI POP PUSH2 0x2286 PUSH2 0x438D JUMP JUMPDEST DUP1 PUSH2 0x2291 JUMPI POP PUSH2 0x22D0 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22C5 SWAP2 SWAP1 PUSH2 0x3818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2302 SWAP1 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xF23A6E61 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x2392 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2389 SWAP1 PUSH2 0x38DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x2419 SWAP2 SWAP1 PUSH2 0x3C4D JUMP JUMPDEST PUSH2 0x2423 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2462 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2494 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x24F2 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x257C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x25BC SWAP2 SWAP1 PUSH2 0x3C4D JUMP JUMPDEST PUSH2 0x25C6 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x26B2 JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x262E JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x266B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x26AB SWAP1 PUSH2 0x3D8C JUMP JUMPDEST SWAP1 POP PUSH2 0x25C9 JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x26F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26ED SWAP1 PUSH2 0x38BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x270E DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x280C JUMPI PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x280A JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2788 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x4 PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x27CD JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x27F2 SWAP2 SWAP1 PUSH2 0x3BF7 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH2 0x2803 SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP PUSH2 0x2746 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2962 JUMPI PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2960 JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2888 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x28CD JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2932 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2929 SWAP1 PUSH2 0x395F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x2959 SWAP1 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP PUSH2 0x2844 JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x29A1 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x29C3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2A0A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x29DC JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2A0A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2A0A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2A09 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x29EE JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2A17 SWAP2 SWAP1 PUSH2 0x2AA5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x2A94 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2A93 JUMPI DUP3 MLOAD DUP3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2A3B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2AA1 SWAP2 SWAP1 PUSH2 0x2AA5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2ABE JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2AA6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AD5 PUSH2 0x2AD0 DUP5 PUSH2 0x3A88 JUMP JUMPDEST PUSH2 0x3A63 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2AF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2B24 JUMPI DUP2 PUSH2 0x2B0A DUP9 DUP3 PUSH2 0x2C16 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2AF7 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B41 PUSH2 0x2B3C DUP5 PUSH2 0x3AB4 JUMP JUMPDEST PUSH2 0x3A63 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2B60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2B90 JUMPI DUP2 PUSH2 0x2B76 DUP9 DUP3 PUSH2 0x2D27 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2B63 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BAD PUSH2 0x2BA8 DUP5 PUSH2 0x3AE0 JUMP JUMPDEST PUSH2 0x3A63 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2BC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2BD0 DUP5 DUP3 DUP6 PUSH2 0x3D4A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BEB PUSH2 0x2BE6 DUP5 PUSH2 0x3B11 JUMP JUMPDEST PUSH2 0x3A63 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2C03 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C0E DUP5 DUP3 DUP6 PUSH2 0x3D4A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C25 DUP2 PUSH2 0x4437 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2C3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2C4C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2AC2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2C66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2C76 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2B2E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C8E DUP2 PUSH2 0x444E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2CA3 DUP2 PUSH2 0x4465 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2CB8 DUP2 PUSH2 0x447C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2CCD DUP2 PUSH2 0x447C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2CE4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2CF4 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2B9A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2D0E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2D1E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2BD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2D36 DUP2 PUSH2 0x4493 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D5D DUP6 DUP3 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D6E DUP6 DUP3 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2D90 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D9E DUP9 DUP3 DUP10 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x2DAF DUP9 DUP3 DUP10 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2DCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2DD8 DUP9 DUP3 DUP10 ADD PUSH2 0x2C55 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2DF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2E01 DUP9 DUP3 DUP10 ADD PUSH2 0x2C55 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2E1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2E2A DUP9 DUP3 DUP10 ADD PUSH2 0x2CD3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2E4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2E5D DUP9 DUP3 DUP10 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x2E6E DUP9 DUP3 DUP10 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x2E7F DUP9 DUP3 DUP10 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x2E90 DUP9 DUP3 DUP10 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2EAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EB9 DUP9 DUP3 DUP10 ADD PUSH2 0x2CD3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2EDC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2EEA DUP8 DUP3 DUP9 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F13 DUP8 DUP3 DUP9 ADD PUSH2 0x2C55 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F3C DUP8 DUP3 DUP9 ADD PUSH2 0x2C55 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F65 DUP8 DUP3 DUP9 ADD PUSH2 0x2CD3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2F92 DUP6 DUP3 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2FA3 DUP6 DUP3 DUP7 ADD PUSH2 0x2C7F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2FC0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2FCE DUP6 DUP3 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2FDF DUP6 DUP3 DUP7 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2FFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x300D DUP8 DUP3 DUP9 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x301E DUP8 DUP3 DUP9 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x302F DUP8 DUP3 DUP9 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x304C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3058 DUP8 DUP3 DUP9 ADD PUSH2 0x2CD3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3077 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3091 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x309D DUP6 DUP3 DUP7 ADD PUSH2 0x2C2B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30C6 DUP6 DUP3 DUP7 ADD PUSH2 0x2C55 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x30F0 DUP5 DUP3 DUP6 ADD PUSH2 0x2C94 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x310C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x311A DUP6 DUP3 DUP7 ADD PUSH2 0x2C94 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x312B DUP6 DUP3 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3147 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3155 DUP5 DUP3 DUP6 ADD PUSH2 0x2CA9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x317E DUP5 DUP3 DUP6 ADD PUSH2 0x2CBE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x31B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31BF DUP5 DUP3 DUP6 ADD PUSH2 0x2CFD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x31DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x31F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3203 DUP7 DUP3 DUP8 ADD PUSH2 0x2CFD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x322C DUP7 DUP3 DUP8 ADD PUSH2 0x2CFD JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3249 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3255 DUP7 DUP3 DUP8 ADD PUSH2 0x2C2B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3271 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x327F DUP5 DUP3 DUP6 ADD PUSH2 0x2D27 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3294 DUP4 DUP4 PUSH2 0x32B8 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32AC DUP4 DUP4 PUSH2 0x366F JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x32C1 DUP2 PUSH2 0x3CA7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32D0 DUP2 PUSH2 0x3CA7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32E1 DUP3 PUSH2 0x3B62 JUMP JUMPDEST PUSH2 0x32EB DUP2 DUP6 PUSH2 0x3BA8 JUMP JUMPDEST SWAP4 POP PUSH2 0x32F6 DUP4 PUSH2 0x3B42 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3327 JUMPI DUP2 MLOAD PUSH2 0x330E DUP9 DUP3 PUSH2 0x3288 JUMP JUMPDEST SWAP8 POP PUSH2 0x3319 DUP4 PUSH2 0x3B8E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x32FA JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333F DUP3 PUSH2 0x3B6D JUMP JUMPDEST PUSH2 0x3349 DUP2 DUP6 PUSH2 0x3BB9 JUMP JUMPDEST SWAP4 POP PUSH2 0x3354 DUP4 PUSH2 0x3B52 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3385 JUMPI DUP2 MLOAD PUSH2 0x336C DUP9 DUP3 PUSH2 0x32A0 JUMP JUMPDEST SWAP8 POP PUSH2 0x3377 DUP4 PUSH2 0x3B9B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3358 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x339B DUP2 PUSH2 0x3CB9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x33AA DUP2 PUSH2 0x3CC5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33BB DUP3 PUSH2 0x3B78 JUMP JUMPDEST PUSH2 0x33C5 DUP2 DUP6 PUSH2 0x3BCA JUMP JUMPDEST SWAP4 POP PUSH2 0x33D5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3D59 JUMP JUMPDEST PUSH2 0x33DE DUP2 PUSH2 0x3F40 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x33F2 DUP2 PUSH2 0x3D38 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3403 DUP3 PUSH2 0x3B83 JUMP JUMPDEST PUSH2 0x340D DUP2 DUP6 PUSH2 0x3BDB JUMP JUMPDEST SWAP4 POP PUSH2 0x341D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3D59 JUMP JUMPDEST PUSH2 0x3426 DUP2 PUSH2 0x3F40 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x343C DUP3 PUSH2 0x3B83 JUMP JUMPDEST PUSH2 0x3446 DUP2 DUP6 PUSH2 0x3BEC JUMP JUMPDEST SWAP4 POP PUSH2 0x3456 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3D59 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x346F PUSH1 0x34 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x347A DUP3 PUSH2 0x3F5E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3492 PUSH1 0x2F DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x349D DUP3 PUSH2 0x3FAD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B5 PUSH1 0x20 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x34C0 DUP3 PUSH2 0x3FFC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34D8 PUSH1 0x28 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x34E3 DUP3 PUSH2 0x4025 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34FB PUSH1 0x2A DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3506 DUP3 PUSH2 0x4074 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x351E PUSH1 0x25 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3529 DUP3 PUSH2 0x40C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3541 PUSH1 0x2A DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x354C DUP3 PUSH2 0x4112 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3564 PUSH1 0x28 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x356F DUP3 PUSH2 0x4161 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3587 PUSH1 0x17 DUP4 PUSH2 0x3BEC JUMP JUMPDEST SWAP2 POP PUSH2 0x3592 DUP3 PUSH2 0x41B0 JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35AA PUSH1 0x29 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x35B5 DUP3 PUSH2 0x41D9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35CD PUSH1 0x29 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x35D8 DUP3 PUSH2 0x4228 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F0 PUSH1 0x28 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x35FB DUP3 PUSH2 0x4277 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3613 PUSH1 0x21 DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x361E DUP3 PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3636 PUSH1 0x11 DUP4 PUSH2 0x3BEC JUMP JUMPDEST SWAP2 POP PUSH2 0x3641 DUP3 PUSH2 0x4315 JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3659 PUSH1 0x2F DUP4 PUSH2 0x3BDB JUMP JUMPDEST SWAP2 POP PUSH2 0x3664 DUP3 PUSH2 0x433E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3678 DUP2 PUSH2 0x3D2E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3687 DUP2 PUSH2 0x3D2E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3698 DUP3 PUSH2 0x357A JUMP JUMPDEST SWAP2 POP PUSH2 0x36A4 DUP3 DUP6 PUSH2 0x3431 JUMP JUMPDEST SWAP2 POP PUSH2 0x36AF DUP3 PUSH2 0x3629 JUMP JUMPDEST SWAP2 POP PUSH2 0x36BB DUP3 DUP5 PUSH2 0x3431 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x36DC PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x32C7 JUMP JUMPDEST PUSH2 0x36E9 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x32C7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x36FB DUP2 DUP7 PUSH2 0x3334 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x370F DUP2 DUP6 PUSH2 0x3334 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x3723 DUP2 DUP5 PUSH2 0x33B0 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3744 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x32C7 JUMP JUMPDEST PUSH2 0x3751 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x32C7 JUMP JUMPDEST PUSH2 0x375E PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x367E JUMP JUMPDEST PUSH2 0x376B PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x367E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x377D DUP2 DUP5 PUSH2 0x33B0 JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37A3 DUP2 DUP5 PUSH2 0x3334 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37C5 DUP2 DUP6 PUSH2 0x3334 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x37D9 DUP2 DUP5 PUSH2 0x3334 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37F7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3392 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3812 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x33A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3832 DUP2 DUP5 PUSH2 0x33F8 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3854 DUP2 DUP7 PUSH2 0x33F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3863 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x33E9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x3875 DUP2 DUP5 PUSH2 0x32D6 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3898 DUP2 PUSH2 0x3462 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38B8 DUP2 PUSH2 0x3485 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38D8 DUP2 PUSH2 0x34A8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38F8 DUP2 PUSH2 0x34CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3918 DUP2 PUSH2 0x34EE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3938 DUP2 PUSH2 0x3511 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3958 DUP2 PUSH2 0x3534 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3978 DUP2 PUSH2 0x3557 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3998 DUP2 PUSH2 0x359D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39B8 DUP2 PUSH2 0x35C0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39D8 DUP2 PUSH2 0x35E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39F8 DUP2 PUSH2 0x3606 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A18 DUP2 PUSH2 0x364C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A34 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x367E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A4F PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x367E JUMP JUMPDEST PUSH2 0x3A5C PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x367E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A6D PUSH2 0x3A7E JUMP JUMPDEST SWAP1 POP PUSH2 0x3A79 DUP3 DUP3 PUSH2 0x3DE8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3AA3 JUMPI PUSH2 0x3AA2 PUSH2 0x3EEF JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3ACF JUMPI PUSH2 0x3ACE PUSH2 0x3EEF JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3AFB JUMPI PUSH2 0x3AFA PUSH2 0x3EEF JUMP JUMPDEST JUMPDEST PUSH2 0x3B04 DUP3 PUSH2 0x3F40 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3B2C JUMPI PUSH2 0x3B2B PUSH2 0x3EEF JUMP JUMPDEST JUMPDEST PUSH2 0x3B35 DUP3 PUSH2 0x3F40 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C02 DUP3 PUSH2 0x3D2E JUMP JUMPDEST SWAP2 POP PUSH2 0x3C0D DUP4 PUSH2 0x3D2E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3C42 JUMPI PUSH2 0x3C41 PUSH2 0x3E62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C58 DUP3 PUSH2 0x3D2E JUMP JUMPDEST SWAP2 POP PUSH2 0x3C63 DUP4 PUSH2 0x3D2E JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3C9C JUMPI PUSH2 0x3C9B PUSH2 0x3E62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CB2 DUP3 PUSH2 0x3D0E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x3D09 DUP3 PUSH2 0x4423 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D43 DUP3 PUSH2 0x3CFB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3D77 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3D5C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3D86 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D97 DUP3 PUSH2 0x3D2E JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x3DAB JUMPI PUSH2 0x3DAA PUSH2 0x3E62 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x3DCE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3DE2 JUMPI PUSH2 0x3DE1 PUSH2 0x3EC0 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3DF1 DUP3 PUSH2 0x3F40 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3E10 JUMPI PUSH2 0x3E0F PUSH2 0x3EEF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E24 DUP3 PUSH2 0x3D2E JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3E57 JUMPI PUSH2 0x3E56 PUSH2 0x3E62 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x3F3D JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY PUSH2 0x3F3A PUSH1 0x0 MLOAD PUSH2 0x3F51 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xE0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2045524331313535 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x526563656976657220696D706C656D656E746572000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2063616C6C6572206973206E6F7420746F6B656E206F776E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6572206E6F7220617070726F7665640000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420746F6B656E73000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2061646472657373207A65726F206973206E6F7420612076 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C6964206F776E657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72207472616E7366657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206275726E20616D6F756E74206578636565647320746F74 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C537570706C79000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20666F722073656C660000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206D69736D617463680000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6D69736D61746368000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243313135353A206D696E7420746F20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x439D JUMPI PUSH2 0x4420 JUMP JUMPDEST PUSH2 0x43A5 PUSH2 0x3A7E JUMP JUMPDEST PUSH1 0x4 RETURNDATASIZE SUB PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x43CD JUMPI POP POP PUSH2 0x4420 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x43EB JUMPI POP POP POP POP PUSH2 0x4420 JUMP JUMPDEST DUP1 PUSH1 0x20 DUP4 ADD ADD PUSH1 0x4 RETURNDATASIZE SUB DUP6 ADD DUP2 GT ISZERO PUSH2 0x4408 JUMPI POP POP POP POP POP PUSH2 0x4420 JUMP JUMPDEST PUSH2 0x4417 DUP3 PUSH1 0x20 ADD DUP6 ADD DUP7 PUSH2 0x3DE8 JUMP JUMPDEST DUP3 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 LT PUSH2 0x4434 JUMPI PUSH2 0x4433 PUSH2 0x3E91 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH2 0x4440 DUP2 PUSH2 0x3CA7 JUMP JUMPDEST DUP2 EQ PUSH2 0x444B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4457 DUP2 PUSH2 0x3CB9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4462 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x446E DUP2 PUSH2 0x3CC5 JUMP JUMPDEST DUP2 EQ PUSH2 0x4479 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4485 DUP2 PUSH2 0x3CCF JUMP JUMPDEST DUP2 EQ PUSH2 0x4490 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x449C DUP2 PUSH2 0x3D2E JUMP JUMPDEST DUP2 EQ PUSH2 0x44A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG3 EQ 0x48 GASLIMIT DUP12 0xCD SAR COINBASE COINBASE 0xBC 0x2C DUP11 SWAP10 PUSH29 0x1E138E63689A8E8510B6F973E902EBFE13E764736F6C63430008040033 PUSH9 0x747470733A2F2F7061 PUSH17 0x657273636F72652D6D657461646174612D PUSH2 0x7069 0x2F PUSH28 0x69647D00000000000000000000000000000000000000000000000000 ",
"sourceMap": "261:5621:12:-:0;;;585:1;570:16;;3459:259;;;;;;;;;;1107:62:2;;;;;;;;;;;;;;;;;1149:13;1157:4;1149:7;;;:13;;:::i;:::-;1107:62;3532:42:12::1;2072:4:0;3543:18:12::0;::::1;3563:10;3532;;;:42;;:::i;:::-;3585:39;371:28;3613:10;3585;;;:39;;:::i;:::-;3635:30;439:19;3654:10;3635;;;:30;;:::i;:::-;261:5621:::0;;8173:86:2;8246:6;8239:4;:13;;;;;;;;;;;;:::i;:::-;;8173:86;:::o;7474:233:0:-;7557:22;7565:4;7571:7;7557;;;:22;;:::i;:::-;7552:149;;7627:4;7595:6;:12;7602:4;7595:12;;;;;;;;;;;:20;;:29;7616:7;7595:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7677:12;:10;;;:12;;:::i;:::-;7650:40;;7668:7;7650:40;;7662:4;7650:40;;;;;;;;;;7552:149;7474:233;;:::o;2895:145::-;2981:4;3004:6;:12;3011:4;3004:12;;;;;;;;;;;:20;;:29;3025:7;3004:29;;;;;;;;;;;;;;;;;;;;;;;;;2997:36;;2895:145;;;;:::o;640:96:8:-;693:7;719:10;712:17;;640:96;:::o;261:5621:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:13:-;51:6;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:2;;212:4;204:6;200:17;190:27;;146:2;274;266:6;263:14;243:18;240:38;237:2;;;293:18;;:::i;:::-;237:2;58:269;;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;261:5621:12;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:46335:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "126:553:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "136:90:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "218:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "161:56:13"
},
"nodeType": "YulFunctionCall",
"src": "161:64:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "145:15:13"
},
"nodeType": "YulFunctionCall",
"src": "145:81:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "136:5:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "235:16:13",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "246:5:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "239:3:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "268:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "275:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "261:6:13"
},
"nodeType": "YulFunctionCall",
"src": "261:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "261:21:13"
},
{
"nodeType": "YulAssignment",
"src": "291:23:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "302:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "309:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "298:3:13"
},
"nodeType": "YulFunctionCall",
"src": "298:16:13"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "291:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:17:13",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "335:6:13"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "328:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "390:36:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "404:6:13"
},
"nodeType": "YulFunctionCall",
"src": "404:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "404:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "360:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "369:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "377:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "365:3:13"
},
"nodeType": "YulFunctionCall",
"src": "365:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "356:3:13"
},
"nodeType": "YulFunctionCall",
"src": "356:27:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "385:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "353:2:13"
},
"nodeType": "YulFunctionCall",
"src": "353:36:13"
},
"nodeType": "YulIf",
"src": "350:2:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "495:178:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "510:21:13",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "528:3:13"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "514:10:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "552:3:13"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "578:10:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "590:3:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "557:20:13"
},
"nodeType": "YulFunctionCall",
"src": "557:37:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "545:6:13"
},
"nodeType": "YulFunctionCall",
"src": "545:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "545:50:13"
},
{
"nodeType": "YulAssignment",
"src": "608:21:13",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "619:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "624:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "615:3:13"
},
"nodeType": "YulFunctionCall",
"src": "615:14:13"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "608:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "642:21:13",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "653:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "658:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "649:3:13"
},
"nodeType": "YulFunctionCall",
"src": "649:14:13"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "642:3:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "457:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "460:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "454:2:13"
},
"nodeType": "YulFunctionCall",
"src": "454:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "468:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "470:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "479:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "475:3:13"
},
"nodeType": "YulFunctionCall",
"src": "475:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "470:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "439:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "441:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "450:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "445:1:13",
"type": ""
}
]
}
]
},
"src": "435:238:13"
}
]
},
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "96:6:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "104:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "112:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "120:5:13",
"type": ""
}
],
"src": "24:655:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "804:553:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "814:90:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "896:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "839:56:13"
},
"nodeType": "YulFunctionCall",
"src": "839:64:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "823:15:13"
},
"nodeType": "YulFunctionCall",
"src": "823:81:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "814:5:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "913:16:13",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "924:5:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "917:3:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "946:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "953:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "939:6:13"
},
"nodeType": "YulFunctionCall",
"src": "939:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "939:21:13"
},
{
"nodeType": "YulAssignment",
"src": "969:23:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "980:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "987:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "976:3:13"
},
"nodeType": "YulFunctionCall",
"src": "976:16:13"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "969:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1002:17:13",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1013:6:13"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1006:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1068:36:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1089:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1092:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1082:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1082:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1082:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1038:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1047:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1055:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1043:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1043:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1034:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1034:27:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1063:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1031:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1031:36:13"
},
"nodeType": "YulIf",
"src": "1028:2:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1173:178:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1188:21:13",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "1206:3:13"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "1192:10:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1230:3:13"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "1256:10:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1268:3:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1235:20:13"
},
"nodeType": "YulFunctionCall",
"src": "1235:37:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1223:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1223:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "1223:50:13"
},
{
"nodeType": "YulAssignment",
"src": "1286:21:13",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1297:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1302:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1293:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1293:14:13"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1286:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1320:21:13",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1331:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1336:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1327:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1327:14:13"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1320:3:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1135:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1138:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1132:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1132:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1146:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1148:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1157:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1160:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1153:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1153:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1148:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1117:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1119:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1128:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1123:1:13",
"type": ""
}
]
}
]
},
"src": "1113:238:13"
}
]
},
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "774:6:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "782:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "790:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "798:5:13",
"type": ""
}
],
"src": "702:655:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1446:260:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1456:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1522:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1481:40:13"
},
"nodeType": "YulFunctionCall",
"src": "1481:48:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1465:15:13"
},
"nodeType": "YulFunctionCall",
"src": "1465:65:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1456:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1546:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1553:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1539:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1539:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "1539:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1569:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1584:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1591:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1580:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1573:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1634:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1643:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1646:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1636:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1636:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1636:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1615:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1620:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1611:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1611:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1629:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1608:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1608:25:13"
},
"nodeType": "YulIf",
"src": "1605:2:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1683:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1688:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1693:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "1659:23:13"
},
"nodeType": "YulFunctionCall",
"src": "1659:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "1659:41:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1419:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1424:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1432:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1440:5:13",
"type": ""
}
],
"src": "1363:343:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1796:261:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1806:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1873:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1831:41:13"
},
"nodeType": "YulFunctionCall",
"src": "1831:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1815:15:13"
},
"nodeType": "YulFunctionCall",
"src": "1815:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1806:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1897:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1904:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1890:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1890:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "1890:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1920:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1935:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1942:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1931:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1931:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1924:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1985:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1994:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1997:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1987:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1987:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1987:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1966:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1971:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1962:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1962:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1980:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1959:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1959:25:13"
},
"nodeType": "YulIf",
"src": "1956:2:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2034:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2039:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2044:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "2010:23:13"
},
"nodeType": "YulFunctionCall",
"src": "2010:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "2010:41:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1769:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1774:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1782:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1790:5:13",
"type": ""
}
],
"src": "1712:345:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2115:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2125:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2147:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2134:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2134:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2125:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2190:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2163:26:13"
},
"nodeType": "YulFunctionCall",
"src": "2163:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "2163:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2093:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2101:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2109:5:13",
"type": ""
}
],
"src": "2063:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2302:226:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2351:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2360:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2363:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2353:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2353:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2353:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2330:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2338:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2326:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2326:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2345:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2322:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2322:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2315:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2315:35:13"
},
"nodeType": "YulIf",
"src": "2312:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2376:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2403:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2390:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2390:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2380:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2419:103:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2495:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2491:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2491:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2510:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2518:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2428:62:13"
},
"nodeType": "YulFunctionCall",
"src": "2428:94:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2419:5:13"
}
]
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2280:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2288:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2296:5:13",
"type": ""
}
],
"src": "2225:303:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2628:226:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2677:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2686:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2689:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2679:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2679:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2679:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2656:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2652:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2652:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2671:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2648:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2648:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2641:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2641:35:13"
},
"nodeType": "YulIf",
"src": "2638:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2702:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2729:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2716:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2716:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2706:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2745:103:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2821:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2829:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2817:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2817:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2836:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2844:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2754:62:13"
},
"nodeType": "YulFunctionCall",
"src": "2754:94:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2745:5:13"
}
]
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2606:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2614:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2622:5:13",
"type": ""
}
],
"src": "2551:303:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2909:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2919:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2941:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2928:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2928:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2919:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2981:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "2957:23:13"
},
"nodeType": "YulFunctionCall",
"src": "2957:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "2957:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2887:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2895:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2903:5:13",
"type": ""
}
],
"src": "2860:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3051:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3061:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3083:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3070:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3070:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3061:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3126:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "3099:26:13"
},
"nodeType": "YulFunctionCall",
"src": "3099:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "3099:33:13"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3029:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3037:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3045:5:13",
"type": ""
}
],
"src": "2999:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3195:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3205:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3227:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3214:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3214:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3205:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3269:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3243:25:13"
},
"nodeType": "YulFunctionCall",
"src": "3243:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "3243:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3173:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3181:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3189:5:13",
"type": ""
}
],
"src": "3144:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3349:79:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3359:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3374:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3368:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3368:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3359:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3416:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3390:25:13"
},
"nodeType": "YulFunctionCall",
"src": "3390:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "3390:32:13"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3327:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3335:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3343:5:13",
"type": ""
}
],
"src": "3287:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3508:210:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3557:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3566:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3559:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3559:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3559:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3536:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3544:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3532:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3532:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3551:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3528:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3521:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3521:35:13"
},
"nodeType": "YulIf",
"src": "3518:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3582:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3609:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3596:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3596:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3586:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3625:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3685:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3693:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3681:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3681:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3700:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3708:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3634:46:13"
},
"nodeType": "YulFunctionCall",
"src": "3634:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3625:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3486:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3494:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3502:5:13",
"type": ""
}
],
"src": "3447:271:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3800:211:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3849:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3858:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3861:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3851:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3851:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3851:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3828:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3836:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3824:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3824:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3843:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3820:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3820:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3813:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3813:35:13"
},
"nodeType": "YulIf",
"src": "3810:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3874:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3901:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3888:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3888:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3878:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3917:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3978:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3986:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3974:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3974:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3993:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4001:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3926:47:13"
},
"nodeType": "YulFunctionCall",
"src": "3926:79:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3917:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3778:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3786:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3794:5:13",
"type": ""
}
],
"src": "3738:273:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4069:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4079:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4101:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4088:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4088:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4079:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4144:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "4117:26:13"
},
"nodeType": "YulFunctionCall",
"src": "4117:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "4117:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4047:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4055:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4063:5:13",
"type": ""
}
],
"src": "4017:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4245:324:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4291:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4300:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4303:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4293:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4293:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4293:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4266:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4275:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4262:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4262:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4287:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4258:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4258:32:13"
},
"nodeType": "YulIf",
"src": "4255:2:13"
},
{
"nodeType": "YulBlock",
"src": "4317:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4332:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4346:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4336:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4361:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4396:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4407:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4392:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4392:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4416:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4371:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4371:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4361:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4444:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4459:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4473:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4463:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4489:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4524:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4535:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4520:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4520:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4544:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4499:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4499:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4489:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4207:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4218:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4230:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4238:6:13",
"type": ""
}
],
"src": "4162:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:1048:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4815:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4824:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4827:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4817:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4817:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4817:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4789:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4798:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4785:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4785:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4810:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4781:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4781:33:13"
},
"nodeType": "YulIf",
"src": "4778:2:13"
},
{
"nodeType": "YulBlock",
"src": "4841:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4856:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4870:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4860:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4885:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4920:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4931:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4916:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4916:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4940:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4895:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4895:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4885:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4968:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4983:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4997:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4987:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5013:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5048:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5059:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5044:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5044:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5068:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5023:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5023:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5013:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5096:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5111:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5142:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5153:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5138:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5138:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5125:12:13"
},
"nodeType": "YulFunctionCall",
"src": "5125:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5115:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5204:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5213:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5216:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5206:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5206:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5206:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5176:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5184:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5173:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5173:30:13"
},
"nodeType": "YulIf",
"src": "5170:2:13"
},
{
"nodeType": "YulAssignment",
"src": "5234:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5294:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5305:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5290:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5290:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5314:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5244:45:13"
},
"nodeType": "YulFunctionCall",
"src": "5244:78:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5234:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5342:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5357:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5388:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5399:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5384:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5384:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5371:12:13"
},
"nodeType": "YulFunctionCall",
"src": "5371:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5361:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5450:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5459:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5462:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5452:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5452:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5452:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5422:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5430:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5419:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5419:30:13"
},
"nodeType": "YulIf",
"src": "5416:2:13"
},
{
"nodeType": "YulAssignment",
"src": "5480:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5540:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5551:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5536:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5536:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5560:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5490:45:13"
},
"nodeType": "YulFunctionCall",
"src": "5490:78:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5480:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5588:221:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5603:47:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5634:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5645:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5630:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5630:19:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5617:12:13"
},
"nodeType": "YulFunctionCall",
"src": "5617:33:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5607:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5697:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5706:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5709:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5699:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5699:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5699:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5669:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5677:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5666:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5666:30:13"
},
"nodeType": "YulIf",
"src": "5663:2:13"
},
{
"nodeType": "YulAssignment",
"src": "5727:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5771:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5782:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5767:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5767:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5791:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5737:29:13"
},
"nodeType": "YulFunctionCall",
"src": "5737:62:13"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5727:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4706:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4717:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4729:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4737:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4745:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4753:6:13",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4761:6:13",
"type": ""
}
],
"src": "4575:1241:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5965:812:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6012:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6021:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6024:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6014:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6014:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6014:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5986:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5995:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5982:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5982:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6007:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5978:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5978:33:13"
},
"nodeType": "YulIf",
"src": "5975:2:13"
},
{
"nodeType": "YulBlock",
"src": "6038:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6053:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6067:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6057:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6082:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6117:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6128:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6113:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6113:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6137:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6092:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6092:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6082:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6165:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6180:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6194:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6184:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6210:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6245:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6256:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6241:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6241:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6265:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6220:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6220:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6210:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6293:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6308:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6322:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6312:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6338:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6373:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6384:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6369:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6393:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6348:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6348:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6338:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6421:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6436:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6450:2:13",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6440:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6466:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6501:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6512:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6497:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6521:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6476:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6476:53:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6466:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6549:221:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6564:47:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6595:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6606:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6591:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6591:19:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6578:12:13"
},
"nodeType": "YulFunctionCall",
"src": "6578:33:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6568:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6658:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6667:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6670:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6660:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6660:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6660:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6630:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6638:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6627:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6627:30:13"
},
"nodeType": "YulIf",
"src": "6624:2:13"
},
{
"nodeType": "YulAssignment",
"src": "6688:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6732:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6743:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6728:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6728:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6752:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6698:29:13"
},
"nodeType": "YulFunctionCall",
"src": "6698:62:13"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "6688:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5903:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5914:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5926:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5934:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5942:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5950:6:13",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "5958:6:13",
"type": ""
}
],
"src": "5822:955:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6959:919:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7006:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7015:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7018:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7008:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7008:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7008:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6980:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6989:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6976:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6976:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7001:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6972:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6972:33:13"
},
"nodeType": "YulIf",
"src": "6969:2:13"
},
{
"nodeType": "YulBlock",
"src": "7032:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7047:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7061:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7051:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7076:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7111:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7122:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7107:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7107:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7131:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7086:20:13"
},
"nodeType": "YulFunctionCall",
"src": "7086:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7076:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7159:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7174:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7205:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7216:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7201:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7201:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7188:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7188:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7178:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7267:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7269:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7269:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7269:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7239:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7247:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7236:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7236:30:13"
},
"nodeType": "YulIf",
"src": "7233:2:13"
},
{
"nodeType": "YulAssignment",
"src": "7297:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7357:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7368:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7353:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7353:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7377:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7307:45:13"
},
"nodeType": "YulFunctionCall",
"src": "7307:78:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7297:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7405:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7420:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7451:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7462:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7447:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7447:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7434:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7434:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7424:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7513:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7522:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7525:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7515:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7515:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7515:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7485:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7493:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7482:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7482:30:13"
},
"nodeType": "YulIf",
"src": "7479:2:13"
},
{
"nodeType": "YulAssignment",
"src": "7543:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7603:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7614:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7599:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7599:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7623:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7553:45:13"
},
"nodeType": "YulFunctionCall",
"src": "7553:78:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7543:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7651:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7666:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7697:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7708:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7693:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7693:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7680:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7680:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7670:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7759:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7768:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7771:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7761:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7761:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7761:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7731:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7739:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7728:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7728:30:13"
},
"nodeType": "YulIf",
"src": "7725:2:13"
},
{
"nodeType": "YulAssignment",
"src": "7789:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7833:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7844:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7829:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7829:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7853:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7799:29:13"
},
"nodeType": "YulFunctionCall",
"src": "7799:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "7789:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6905:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6916:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6928:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6936:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6944:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6952:6:13",
"type": ""
}
],
"src": "6783:1095:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7964:321:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8010:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8019:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8022:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8012:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8012:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "8012:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7985:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7994:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7981:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7981:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8006:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7977:32:13"
},
"nodeType": "YulIf",
"src": "7974:2:13"
},
{
"nodeType": "YulBlock",
"src": "8036:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8051:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8065:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8055:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8080:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8115:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8126:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8111:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8111:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8135:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8090:20:13"
},
"nodeType": "YulFunctionCall",
"src": "8090:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8080:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8163:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8178:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8192:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8182:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8208:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8240:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8251:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8236:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8236:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8260:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "8218:17:13"
},
"nodeType": "YulFunctionCall",
"src": "8218:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8208:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7926:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7937:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7949:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7957:6:13",
"type": ""
}
],
"src": "7884:401:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8374:324:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8420:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8429:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8432:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8422:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8422:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "8422:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8395:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8404:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8391:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8391:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8416:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8387:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8387:32:13"
},
"nodeType": "YulIf",
"src": "8384:2:13"
},
{
"nodeType": "YulBlock",
"src": "8446:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8461:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8475:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8465:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8490:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8525:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8536:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8521:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8521:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8545:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8500:20:13"
},
"nodeType": "YulFunctionCall",
"src": "8500:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8490:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8573:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8588:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8602:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8592:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8618:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8653:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8664:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8649:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8649:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8673:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8628:20:13"
},
"nodeType": "YulFunctionCall",
"src": "8628:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8618:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8336:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8347:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8359:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8367:6:13",
"type": ""
}
],
"src": "8291:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8830:683:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8877:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8886:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8889:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8879:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8879:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "8879:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8851:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8860:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8847:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8847:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8872:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8843:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8843:33:13"
},
"nodeType": "YulIf",
"src": "8840:2:13"
},
{
"nodeType": "YulBlock",
"src": "8903:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8918:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8932:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8922:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8947:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8982:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8993:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8978:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8978:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9002:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8957:20:13"
},
"nodeType": "YulFunctionCall",
"src": "8957:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8947:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9030:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9045:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9059:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9049:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9075:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9110:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9121:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9106:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9106:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9130:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9085:20:13"
},
"nodeType": "YulFunctionCall",
"src": "9085:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9075:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9158:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9173:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9187:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9177:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9203:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9238:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9249:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9234:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9234:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9258:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9213:20:13"
},
"nodeType": "YulFunctionCall",
"src": "9213:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9203:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9286:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9301:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9332:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9343:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9328:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9328:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9315:12:13"
},
"nodeType": "YulFunctionCall",
"src": "9315:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9305:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9394:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9403:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9406:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9396:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9396:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "9396:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9366:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9374:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9363:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9363:30:13"
},
"nodeType": "YulIf",
"src": "9360:2:13"
},
{
"nodeType": "YulAssignment",
"src": "9424:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9468:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9479:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9464:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9464:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9488:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9434:29:13"
},
"nodeType": "YulFunctionCall",
"src": "9434:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9424:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8776:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8787:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8799:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8807:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "8815:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "8823:6:13",
"type": ""
}
],
"src": "8704:809:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9652:560:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9698:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9707:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9710:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9700:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9700:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "9700:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9673:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9682:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9669:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9669:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9694:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9665:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9665:32:13"
},
"nodeType": "YulIf",
"src": "9662:2:13"
},
{
"nodeType": "YulBlock",
"src": "9724:235:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9739:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9770:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9781:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9766:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9766:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9753:12:13"
},
"nodeType": "YulFunctionCall",
"src": "9753:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9743:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9831:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9840:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9843:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9833:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9833:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "9833:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9803:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9811:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9800:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9800:30:13"
},
"nodeType": "YulIf",
"src": "9797:2:13"
},
{
"nodeType": "YulAssignment",
"src": "9861:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9921:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9932:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9917:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9917:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9941:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9871:45:13"
},
"nodeType": "YulFunctionCall",
"src": "9871:78:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9861:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9969:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9984:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10015:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10026:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10011:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10011:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9998:12:13"
},
"nodeType": "YulFunctionCall",
"src": "9998:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9988:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10077:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10086:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10089:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10079:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10079:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "10079:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10049:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10057:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10046:2:13"
},
"nodeType": "YulFunctionCall",
"src": "10046:30:13"
},
"nodeType": "YulIf",
"src": "10043:2:13"
},
{
"nodeType": "YulAssignment",
"src": "10107:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10167:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10178:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10163:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10163:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10187:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10117:45:13"
},
"nodeType": "YulFunctionCall",
"src": "10117:78:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10107:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9614:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9625:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9637:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9645:6:13",
"type": ""
}
],
"src": "9519:693:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10284:196:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10330:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10339:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10342:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10332:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10332:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "10332:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10305:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10314:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10301:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10301:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10326:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10297:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10297:32:13"
},
"nodeType": "YulIf",
"src": "10294:2:13"
},
{
"nodeType": "YulBlock",
"src": "10356:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10371:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10385:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10375:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10400:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10435:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10446:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10431:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10431:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10455:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "10410:20:13"
},
"nodeType": "YulFunctionCall",
"src": "10410:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10400:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10254:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10265:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10277:6:13",
"type": ""
}
],
"src": "10218:262:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10569:324:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10615:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10624:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10627:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10617:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10617:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "10617:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10590:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10599:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10586:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10586:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10611:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10582:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10582:32:13"
},
"nodeType": "YulIf",
"src": "10579:2:13"
},
{
"nodeType": "YulBlock",
"src": "10641:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10656:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10670:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10660:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10685:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10720:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10731:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10716:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10716:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10740:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "10695:20:13"
},
"nodeType": "YulFunctionCall",
"src": "10695:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10685:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10768:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10783:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10797:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10787:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10813:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10848:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10859:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10844:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10844:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10868:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10823:20:13"
},
"nodeType": "YulFunctionCall",
"src": "10823:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10813:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10531:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10542:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10554:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10562:6:13",
"type": ""
}
],
"src": "10486:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10964:195:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11010:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11019:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11022:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11012:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11012:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "11012:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10985:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10994:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10981:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10981:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11006:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10977:32:13"
},
"nodeType": "YulIf",
"src": "10974:2:13"
},
{
"nodeType": "YulBlock",
"src": "11036:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11051:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11065:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11055:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11080:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11114:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11125:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11110:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11110:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11134:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "11090:19:13"
},
"nodeType": "YulFunctionCall",
"src": "11090:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11080:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10934:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10945:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10957:6:13",
"type": ""
}
],
"src": "10899:260:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11241:206:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11287:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11296:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11299:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11289:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11289:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "11289:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11262:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11271:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11258:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11258:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11283:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11254:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11254:32:13"
},
"nodeType": "YulIf",
"src": "11251:2:13"
},
{
"nodeType": "YulBlock",
"src": "11313:127:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11328:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11342:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11332:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11357:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11402:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11413:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11398:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11398:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11422:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "11367:30:13"
},
"nodeType": "YulFunctionCall",
"src": "11367:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11357:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11211:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11222:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11234:6:13",
"type": ""
}
],
"src": "11165:282:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11529:299:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11575:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11584:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11587:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11577:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11577:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "11577:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11550:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11559:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11546:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11546:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11571:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11542:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11542:32:13"
},
"nodeType": "YulIf",
"src": "11539:2:13"
},
{
"nodeType": "YulBlock",
"src": "11601:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11616:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11647:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11658:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11643:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11643:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11630:12:13"
},
"nodeType": "YulFunctionCall",
"src": "11630:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11620:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11708:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11717:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11720:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11710:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11710:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "11710:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11680:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11688:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11677:2:13"
},
"nodeType": "YulFunctionCall",
"src": "11677:30:13"
},
"nodeType": "YulIf",
"src": "11674:2:13"
},
{
"nodeType": "YulAssignment",
"src": "11738:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11783:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11794:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11779:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11779:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11803:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11748:30:13"
},
"nodeType": "YulFunctionCall",
"src": "11748:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11738:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11499:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11510:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11522:6:13",
"type": ""
}
],
"src": "11453:375:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11979:776:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12025:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12034:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12037:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12027:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12027:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "12027:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12000:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12009:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11996:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11996:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12021:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11992:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11992:32:13"
},
"nodeType": "YulIf",
"src": "11989:2:13"
},
{
"nodeType": "YulBlock",
"src": "12051:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12066:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12097:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12108:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12093:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12093:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12080:12:13"
},
"nodeType": "YulFunctionCall",
"src": "12080:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12070:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12158:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12167:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12170:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12160:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12160:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "12160:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12130:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12138:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12127:2:13"
},
"nodeType": "YulFunctionCall",
"src": "12127:30:13"
},
"nodeType": "YulIf",
"src": "12124:2:13"
},
{
"nodeType": "YulAssignment",
"src": "12188:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12233:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12244:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12229:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12253:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12198:30:13"
},
"nodeType": "YulFunctionCall",
"src": "12198:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12188:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "12281:221:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12296:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12327:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12338:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12323:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12323:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12310:12:13"
},
"nodeType": "YulFunctionCall",
"src": "12310:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12300:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12389:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12398:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12401:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12391:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12391:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "12391:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12361:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12369:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12358:2:13"
},
"nodeType": "YulFunctionCall",
"src": "12358:30:13"
},
"nodeType": "YulIf",
"src": "12355:2:13"
},
{
"nodeType": "YulAssignment",
"src": "12419:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12464:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12475:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12460:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12460:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12484:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12429:30:13"
},
"nodeType": "YulFunctionCall",
"src": "12429:63:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12419:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "12512:236:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12527:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12558:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12569:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12554:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "12541:12:13"
},
"nodeType": "YulFunctionCall",
"src": "12541:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12531:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12620:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12629:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12632:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12622:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12622:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "12622:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12592:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12600:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12589:2:13"
},
"nodeType": "YulFunctionCall",
"src": "12589:30:13"
},
"nodeType": "YulIf",
"src": "12586:2:13"
},
{
"nodeType": "YulAssignment",
"src": "12650:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12710:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12721:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12706:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12706:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12730:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12660:45:13"
},
"nodeType": "YulFunctionCall",
"src": "12660:78:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "12650:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11933:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11944:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11956:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11964:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11972:6:13",
"type": ""
}
],
"src": "11834:921:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12827:196:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12873:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12882:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12885:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12875:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12875:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "12875:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12848:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12857:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12844:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12844:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12869:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "12840:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12840:32:13"
},
"nodeType": "YulIf",
"src": "12837:2:13"
},
{
"nodeType": "YulBlock",
"src": "12899:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12914:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12928:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12918:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12943:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12978:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12989:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12974:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12974:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12998:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "12953:20:13"
},
"nodeType": "YulFunctionCall",
"src": "12953:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12943:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12797:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "12808:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12820:6:13",
"type": ""
}
],
"src": "12761:262:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13109:99:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13153:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13161:3:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address",
"nodeType": "YulIdentifier",
"src": "13119:33:13"
},
"nodeType": "YulFunctionCall",
"src": "13119:46:13"
},
"nodeType": "YulExpressionStatement",
"src": "13119:46:13"
},
{
"nodeType": "YulAssignment",
"src": "13174:28:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13192:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13197:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13188:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13188:14:13"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "13174:10:13"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_address_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13082:6:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13090:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "13098:10:13",
"type": ""
}
],
"src": "13029:179:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13294:99:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13338:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13346:3:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "13304:33:13"
},
"nodeType": "YulFunctionCall",
"src": "13304:46:13"
},
"nodeType": "YulExpressionStatement",
"src": "13304:46:13"
},
{
"nodeType": "YulAssignment",
"src": "13359:28:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13377:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13382:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13373:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13373:14:13"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "13359:10:13"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13267:6:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13275:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "13283:10:13",
"type": ""
}
],
"src": "13214:179:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13454:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13471:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13494:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "13476:17:13"
},
"nodeType": "YulFunctionCall",
"src": "13476:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13464:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13464:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "13464:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13442:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13449:3:13",
"type": ""
}
],
"src": "13399:108:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13578:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13595:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13618:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "13600:17:13"
},
"nodeType": "YulFunctionCall",
"src": "13600:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13588:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13588:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "13588:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13566:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13573:3:13",
"type": ""
}
],
"src": "13513:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13791:608:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13801:68:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13863:5:13"
}
],
"functionName": {
"name": "array_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13815:47:13"
},
"nodeType": "YulFunctionCall",
"src": "13815:54:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13805:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13878:93:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13959:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13964:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13885:73:13"
},
"nodeType": "YulFunctionCall",
"src": "13885:86:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13878:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "13980:71:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14045:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "13995:49:13"
},
"nodeType": "YulFunctionCall",
"src": "13995:56:13"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "13984:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "14060:21:13",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "14074:7:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "14064:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14150:224:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14164:34:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "14191:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "14185:5:13"
},
"nodeType": "YulFunctionCall",
"src": "14185:13:13"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "14168:13:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14211:70:13",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "14262:13:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14277:3:13"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_address_to_t_address",
"nodeType": "YulIdentifier",
"src": "14218:43:13"
},
"nodeType": "YulFunctionCall",
"src": "14218:63:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14211:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14294:70:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "14357:6:13"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "14304:52:13"
},
"nodeType": "YulFunctionCall",
"src": "14304:60:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "14294:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14112:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14115:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14109:2:13"
},
"nodeType": "YulFunctionCall",
"src": "14109:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "14123:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14125:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14134:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14137:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14130:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14130:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14125:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "14094:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14096:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14105:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "14100:1:13",
"type": ""
}
]
}
]
},
"src": "14090:284:13"
},
{
"nodeType": "YulAssignment",
"src": "14383:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14390:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14383:3:13"
}
]
}
]
},
"name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13770:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13777:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13786:3:13",
"type": ""
}
],
"src": "13667:732:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14559:608:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14569:68:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14631:5:13"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "14583:47:13"
},
"nodeType": "YulFunctionCall",
"src": "14583:54:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "14573:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14646:93:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14727:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14732:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14653:73:13"
},
"nodeType": "YulFunctionCall",
"src": "14653:86:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14646:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "14748:71:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14813:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "14763:49:13"
},
"nodeType": "YulFunctionCall",
"src": "14763:56:13"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "14752:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "14828:21:13",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "14842:7:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "14832:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14918:224:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14932:34:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "14959:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "14953:5:13"
},
"nodeType": "YulFunctionCall",
"src": "14953:13:13"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "14936:13:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14979:70:13",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "15030:13:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15045:3:13"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "14986:43:13"
},
"nodeType": "YulFunctionCall",
"src": "14986:63:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14979:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15062:70:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "15125:6:13"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "15072:52:13"
},
"nodeType": "YulFunctionCall",
"src": "15072:60:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "15062:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14880:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14883:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14877:2:13"
},
"nodeType": "YulFunctionCall",
"src": "14877:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "14891:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14893:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14902:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14905:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14898:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14898:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14893:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "14862:14:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14864:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14873:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "14868:1:13",
"type": ""
}
]
}
]
},
"src": "14858:284:13"
},
{
"nodeType": "YulAssignment",
"src": "15151:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15158:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15151:3:13"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14538:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14545:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14554:3:13",
"type": ""
}
],
"src": "14435:732:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15232:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15249:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15269:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "15254:14:13"
},
"nodeType": "YulFunctionCall",
"src": "15254:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15242:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15242:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "15242:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15220:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15227:3:13",
"type": ""
}
],
"src": "15173:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15353:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15370:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15393:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "15375:17:13"
},
"nodeType": "YulFunctionCall",
"src": "15375:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15363:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15363:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "15363:37:13"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15341:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15348:3:13",
"type": ""
}
],
"src": "15288:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15502:270:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "15512:52:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15558:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "15526:31:13"
},
"nodeType": "YulFunctionCall",
"src": "15526:38:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15516:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "15573:77:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15638:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15643:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15580:57:13"
},
"nodeType": "YulFunctionCall",
"src": "15580:70:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15573:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15685:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15692:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15681:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15681:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15699:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15704:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "15659:21:13"
},
"nodeType": "YulFunctionCall",
"src": "15659:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "15659:52:13"
},
{
"nodeType": "YulAssignment",
"src": "15720:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15731:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15758:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "15736:21:13"
},
"nodeType": "YulFunctionCall",
"src": "15736:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15727:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15727:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15720:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15483:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15490:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15498:3:13",
"type": ""
}
],
"src": "15412:360:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15851:74:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15868:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15912:5:13"
}
],
"functionName": {
"name": "convert_t_enum$_State_$2574_to_t_uint8",
"nodeType": "YulIdentifier",
"src": "15873:38:13"
},
"nodeType": "YulFunctionCall",
"src": "15873:45:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15861:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15861:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "15861:58:13"
}
]
},
"name": "abi_encode_t_enum$_State_$2574_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15839:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15846:3:13",
"type": ""
}
],
"src": "15778:147:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16023:272:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16033:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16080:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "16047:32:13"
},
"nodeType": "YulFunctionCall",
"src": "16047:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16037:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16095:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16161:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16166:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16102:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16102:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16095:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16208:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16215:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16204:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16204:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16222:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16227:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "16182:21:13"
},
"nodeType": "YulFunctionCall",
"src": "16182:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "16182:52:13"
},
{
"nodeType": "YulAssignment",
"src": "16243:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16254:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16281:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "16259:21:13"
},
"nodeType": "YulFunctionCall",
"src": "16259:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16250:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16250:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16243:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16004:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16011:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16019:3:13",
"type": ""
}
],
"src": "15931:364:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16411:267:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16421:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16468:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "16435:32:13"
},
"nodeType": "YulFunctionCall",
"src": "16435:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16425:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16483:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16567:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16572:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16490:76:13"
},
"nodeType": "YulFunctionCall",
"src": "16490:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16483:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16614:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16621:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16610:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16610:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16628:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16633:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "16588:21:13"
},
"nodeType": "YulFunctionCall",
"src": "16588:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "16588:52:13"
},
{
"nodeType": "YulAssignment",
"src": "16649:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16660:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16665:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16656:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16656:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16649:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16392:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16399:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16407:3:13",
"type": ""
}
],
"src": "16301:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16830:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16840:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16906:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16911:2:13",
"type": "",
"value": "52"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16847:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16847:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16840:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17012:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulIdentifier",
"src": "16923:88:13"
},
"nodeType": "YulFunctionCall",
"src": "16923:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "16923:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17025:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17036:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17041:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17032:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17032:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17025:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16818:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16826:3:13",
"type": ""
}
],
"src": "16684:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17202:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17212:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17278:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17283:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17219:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17219:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17212:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17384:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370",
"nodeType": "YulIdentifier",
"src": "17295:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17295:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17295:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17397:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17408:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17413:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17404:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17404:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17397:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17190:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17198:3:13",
"type": ""
}
],
"src": "17056:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17574:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17584:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17650:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17655:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17591:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17591:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17584:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17756:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulIdentifier",
"src": "17667:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17667:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17667:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17769:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17780:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17785:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17776:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17776:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17769:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17562:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17570:3:13",
"type": ""
}
],
"src": "17428:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17946:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17956:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18022:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18027:2:13",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17963:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17963:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17956:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18128:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulIdentifier",
"src": "18039:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18039:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18039:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18141:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18152:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18157:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18148:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18148:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18141:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17934:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17942:3:13",
"type": ""
}
],
"src": "17800:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18318:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18328:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18394:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18399:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18335:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18335:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18328:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18500:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad",
"nodeType": "YulIdentifier",
"src": "18411:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18411:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18411:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18513:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18524:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18529:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18520:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18520:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18513:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18306:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18314:3:13",
"type": ""
}
],
"src": "18172:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18690:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18700:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18766:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18771:2:13",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18707:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18707:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18700:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18872:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d",
"nodeType": "YulIdentifier",
"src": "18783:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18783:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18783:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18885:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18896:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18901:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18892:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18892:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18885:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18678:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18686:3:13",
"type": ""
}
],
"src": "18544:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19062:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19072:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19138:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19143:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19079:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19079:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19072:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19244:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf",
"nodeType": "YulIdentifier",
"src": "19155:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19155:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19155:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19257:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19268:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19273:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19264:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19257:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19050:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19058:3:13",
"type": ""
}
],
"src": "18916:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19434:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19444:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19510:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19515:2:13",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19451:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19451:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19444:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19616:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4",
"nodeType": "YulIdentifier",
"src": "19527:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19527:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19527:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19629:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19640:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19645:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19636:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19636:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19629:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19422:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19430:3:13",
"type": ""
}
],
"src": "19288:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19824:238:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19834:92:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19918:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19923:2:13",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19841:76:13"
},
"nodeType": "YulFunctionCall",
"src": "19841:85:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19834:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20024:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulIdentifier",
"src": "19935:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19935:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19935:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20037:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20048:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20053:2:13",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20044:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20044:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20037:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19812:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19820:3:13",
"type": ""
}
],
"src": "19660:402:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20214:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20224:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20290:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20295:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20231:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20231:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20224:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20396:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2",
"nodeType": "YulIdentifier",
"src": "20307:88:13"
},
"nodeType": "YulFunctionCall",
"src": "20307:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "20307:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20409:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20420:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20425:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20416:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20416:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20409:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20202:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20210:3:13",
"type": ""
}
],
"src": "20068:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20586:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20596:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20662:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20667:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20603:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20603:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20596:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20768:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5",
"nodeType": "YulIdentifier",
"src": "20679:88:13"
},
"nodeType": "YulFunctionCall",
"src": "20679:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "20679:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20781:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20792:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20797:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20788:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20788:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20781:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20574:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20582:3:13",
"type": ""
}
],
"src": "20440:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20958:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20968:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21034:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21039:2:13",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20975:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20975:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20968:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21140:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807",
"nodeType": "YulIdentifier",
"src": "21051:88:13"
},
"nodeType": "YulFunctionCall",
"src": "21051:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "21051:93:13"
},
{
"nodeType": "YulAssignment",
"src": "21153:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21164:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21169:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21160:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21160:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21153:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20946:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20954:3:13",
"type": ""
}
],
"src": "20812:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21330:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21340:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21406:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21411:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21347:58:13"
},
"nodeType": "YulFunctionCall",
"src": "21347:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21340:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21512:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2",
"nodeType": "YulIdentifier",
"src": "21423:88:13"
},
"nodeType": "YulFunctionCall",
"src": "21423:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "21423:93:13"
},
{
"nodeType": "YulAssignment",
"src": "21525:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21536:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21541:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21532:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21532:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21525:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21318:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21326:3:13",
"type": ""
}
],
"src": "21184:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21720:238:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21730:92:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21814:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21819:2:13",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "21737:76:13"
},
"nodeType": "YulFunctionCall",
"src": "21737:85:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21730:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21920:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulIdentifier",
"src": "21831:88:13"
},
"nodeType": "YulFunctionCall",
"src": "21831:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "21831:93:13"
},
{
"nodeType": "YulAssignment",
"src": "21933:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21944:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21949:2:13",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21940:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21940:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21933:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21708:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21716:3:13",
"type": ""
}
],
"src": "21556:402:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22110:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22120:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22186:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22191:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22127:58:13"
},
"nodeType": "YulFunctionCall",
"src": "22127:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22120:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22292:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulIdentifier",
"src": "22203:88:13"
},
"nodeType": "YulFunctionCall",
"src": "22203:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "22203:93:13"
},
{
"nodeType": "YulAssignment",
"src": "22305:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22316:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22321:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22312:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22312:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22305:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22098:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22106:3:13",
"type": ""
}
],
"src": "21964:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22391:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22408:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22431:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22413:17:13"
},
"nodeType": "YulFunctionCall",
"src": "22413:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22401:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22401:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "22401:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22379:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22386:3:13",
"type": ""
}
],
"src": "22336:108:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22515:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22532:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22555:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22537:17:13"
},
"nodeType": "YulFunctionCall",
"src": "22537:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22525:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22525:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "22525:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22503:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22510:3:13",
"type": ""
}
],
"src": "22450:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22960:581:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22971:155:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23122:3:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "22978:142:13"
},
"nodeType": "YulFunctionCall",
"src": "22978:148:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22971:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23136:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23225:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23234:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "23143:81:13"
},
"nodeType": "YulFunctionCall",
"src": "23143:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23136:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23248:155:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23399:3:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "23255:142:13"
},
"nodeType": "YulFunctionCall",
"src": "23255:148:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23248:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23413:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "23502:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23511:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "23420:81:13"
},
"nodeType": "YulFunctionCall",
"src": "23420:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23413:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23525:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23532:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23525:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22931:3:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22937:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22945:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22956:3:13",
"type": ""
}
],
"src": "22574:967:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23875:725:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23885:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23897:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23908:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23893:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23893:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23885:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23966:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23979:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23990:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23975:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23975:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "23922:43:13"
},
"nodeType": "YulFunctionCall",
"src": "23922:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "23922:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24047:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24060:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24071:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24056:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24056:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "24003:43:13"
},
"nodeType": "YulFunctionCall",
"src": "24003:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "24003:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24096:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24107:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24092:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24092:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24116:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24122:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24112:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24112:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24085:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24085:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "24085:48:13"
},
{
"nodeType": "YulAssignment",
"src": "24142:116:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "24244:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24253:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24150:93:13"
},
"nodeType": "YulFunctionCall",
"src": "24150:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24142:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24279:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24290:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24275:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24275:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24299:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24305:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24295:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24295:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24268:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24268:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "24268:48:13"
},
{
"nodeType": "YulAssignment",
"src": "24325:116:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "24427:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24436:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24333:93:13"
},
"nodeType": "YulFunctionCall",
"src": "24333:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24325:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24462:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24473:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24458:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24458:19:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24483:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24489:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24479:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24479:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24451:6:13"
},
"nodeType": "YulFunctionCall",
"src": "24451:49:13"
},
"nodeType": "YulExpressionStatement",
"src": "24451:49:13"
},
{
"nodeType": "YulAssignment",
"src": "24509:84:13",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "24579:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24588:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24517:61:13"
},
"nodeType": "YulFunctionCall",
"src": "24517:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24509:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23815:9:13",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "23827:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "23835:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "23843:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23851:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23859:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23870:4:13",
"type": ""
}
],
"src": "23547:1053:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24834:523:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24844:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24856:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24867:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24852:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24852:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24844:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24925:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24938:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24949:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24934:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24934:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "24881:43:13"
},
"nodeType": "YulFunctionCall",
"src": "24881:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "24881:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "25006:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25019:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25030:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25015:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25015:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "24962:43:13"
},
"nodeType": "YulFunctionCall",
"src": "24962:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "24962:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "25088:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25101:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25112:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25097:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25097:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "25044:43:13"
},
"nodeType": "YulFunctionCall",
"src": "25044:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "25044:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "25170:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25183:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25194:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25179:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25179:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "25126:43:13"
},
"nodeType": "YulFunctionCall",
"src": "25126:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "25126:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25219:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25230:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25215:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25215:19:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25240:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25246:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25236:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25236:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25208:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25208:49:13"
},
"nodeType": "YulExpressionStatement",
"src": "25208:49:13"
},
{
"nodeType": "YulAssignment",
"src": "25266:84:13",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "25336:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25345:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25274:61:13"
},
"nodeType": "YulFunctionCall",
"src": "25274:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25266:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24774:9:13",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "24786:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "24794:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "24802:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "24810:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24818:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24829:4:13",
"type": ""
}
],
"src": "24606:751:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25511:225:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25521:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25533:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25544:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25529:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25529:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25521:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25568:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25579:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25564:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25564:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25587:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25593:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25583:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25583:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25557:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25557:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "25557:47:13"
},
{
"nodeType": "YulAssignment",
"src": "25613:116:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25715:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25724:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25621:93:13"
},
"nodeType": "YulFunctionCall",
"src": "25621:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25613:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25483:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25495:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25506:4:13",
"type": ""
}
],
"src": "25363:373:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25968:408:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25978:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25990:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26001:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25986:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25986:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25978:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26025:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26036:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26021:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26021:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26044:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26050:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26040:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26014:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26014:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26014:47:13"
},
{
"nodeType": "YulAssignment",
"src": "26070:116:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "26172:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26181:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26078:93:13"
},
"nodeType": "YulFunctionCall",
"src": "26078:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26070:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26207:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26218:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26203:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26203:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26227:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26233:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26223:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26223:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26196:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26196:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "26196:48:13"
},
{
"nodeType": "YulAssignment",
"src": "26253:116:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "26355:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26364:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26261:93:13"
},
"nodeType": "YulFunctionCall",
"src": "26261:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26253:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25932:9:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "25944:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25952:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25963:4:13",
"type": ""
}
],
"src": "25742:634:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26474:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26484:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26496:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26507:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26492:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26492:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26484:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "26558:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26571:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26582:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26567:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26567:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "26520:37:13"
},
"nodeType": "YulFunctionCall",
"src": "26520:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "26520:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26446:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26458:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26469:4:13",
"type": ""
}
],
"src": "26382:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26696:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26706:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26718:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26729:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26714:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26714:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26706:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "26786:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26799:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26810:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26795:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "26742:43:13"
},
"nodeType": "YulFunctionCall",
"src": "26742:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "26742:71:13"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26668:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26680:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26691:4:13",
"type": ""
}
],
"src": "26598:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26944:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26954:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26966:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26977:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26962:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26962:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26954:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27001:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27012:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26997:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26997:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27020:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27026:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27016:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27016:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26990:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26990:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "26990:47:13"
},
{
"nodeType": "YulAssignment",
"src": "27046:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "27118:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27127:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27054:63:13"
},
"nodeType": "YulFunctionCall",
"src": "27054:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27046:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26916:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26928:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26939:4:13",
"type": ""
}
],
"src": "26826:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27377:468:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27387:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27399:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27410:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27395:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27395:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27387:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27434:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27445:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27430:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27430:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27453:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27459:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27449:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27449:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27423:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27423:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "27423:47:13"
},
{
"nodeType": "YulAssignment",
"src": "27479:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "27551:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27560:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27487:63:13"
},
"nodeType": "YulFunctionCall",
"src": "27487:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27479:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "27627:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27640:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27651:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27636:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27636:18:13"
}
],
"functionName": {
"name": "abi_encode_t_enum$_State_$2574_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "27575:51:13"
},
"nodeType": "YulFunctionCall",
"src": "27575:80:13"
},
"nodeType": "YulExpressionStatement",
"src": "27575:80:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27676:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27687:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27672:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27672:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27696:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27702:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27692:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27692:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27665:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27665:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "27665:48:13"
},
{
"nodeType": "YulAssignment",
"src": "27722:116:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "27824:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27833:4:13"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27730:93:13"
},
"nodeType": "YulFunctionCall",
"src": "27730:108:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27722:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_enum$_State_$2574_t_array$_t_address_$dyn_memory_ptr__to_t_string_memory_ptr_t_uint8_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27333:9:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "27345:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "27353:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "27361:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27372:4:13",
"type": ""
}
],
"src": "27145:700:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28022:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28032:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28044:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28055:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28040:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28032:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28079:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28090:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28075:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28075:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28098:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28104:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28094:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28094:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28068:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28068:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28068:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28124:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28258:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28132:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28132:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28124:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28002:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28017:4:13",
"type": ""
}
],
"src": "27851:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28447:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28457:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28469:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28480:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28465:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28465:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28457:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28504:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28515:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28500:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28500:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28523:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28529:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28519:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28519:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28493:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28493:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28493:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28549:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28683:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28557:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28557:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28549:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28427:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28442:4:13",
"type": ""
}
],
"src": "28276:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28872:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28882:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28894:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28905:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28890:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28890:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28882:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28929:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28940:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28925:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28948:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28954:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28944:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28944:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28918:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28918:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "28918:47:13"
},
{
"nodeType": "YulAssignment",
"src": "28974:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29108:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28982:124:13"
},
"nodeType": "YulFunctionCall",
"src": "28982:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28974:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28852:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28867:4:13",
"type": ""
}
],
"src": "28701:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29297:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29307:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29319:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29330:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29315:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29315:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29307:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29354:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29365:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29350:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29350:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29373:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29379:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29369:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29343:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29343:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29343:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29399:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29533:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29407:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29407:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29399:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29277:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29292:4:13",
"type": ""
}
],
"src": "29126:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29722:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29732:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29744:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29755:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29740:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29740:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29732:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29779:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29790:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29775:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29775:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29798:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29804:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29794:3:13"
},
"nodeType": "YulFunctionCall",
"src": "29794:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29768:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29768:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "29768:47:13"
},
{
"nodeType": "YulAssignment",
"src": "29824:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29958:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29832:124:13"
},
"nodeType": "YulFunctionCall",
"src": "29832:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29824:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29702:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29717:4:13",
"type": ""
}
],
"src": "29551:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30147:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30157:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30169:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30180:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30165:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30165:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30157:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30204:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30215:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30200:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30200:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30223:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30229:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30219:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30219:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30193:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30193:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "30193:47:13"
},
{
"nodeType": "YulAssignment",
"src": "30249:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30383:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30257:124:13"
},
"nodeType": "YulFunctionCall",
"src": "30257:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30249:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30127:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30142:4:13",
"type": ""
}
],
"src": "29976:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30572:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30582:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30594:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30605:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30590:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30590:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30582:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30629:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30640:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30625:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30625:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30648:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30654:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30644:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30644:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30618:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30618:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "30618:47:13"
},
{
"nodeType": "YulAssignment",
"src": "30674:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30808:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30682:124:13"
},
"nodeType": "YulFunctionCall",
"src": "30682:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30674:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30552:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30567:4:13",
"type": ""
}
],
"src": "30401:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30997:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31007:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31019:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31030:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31015:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31015:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31007:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31054:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31065:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31050:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31050:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31073:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31079:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31069:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31069:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31043:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31043:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31043:47:13"
},
{
"nodeType": "YulAssignment",
"src": "31099:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31233:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31107:124:13"
},
"nodeType": "YulFunctionCall",
"src": "31107:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31099:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30977:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30992:4:13",
"type": ""
}
],
"src": "30826:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31422:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31432:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31444:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31455:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31440:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31440:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31432:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31479:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31490:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31475:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31475:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31498:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31504:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31494:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31494:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31468:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31468:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31468:47:13"
},
{
"nodeType": "YulAssignment",
"src": "31524:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31658:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31532:124:13"
},
"nodeType": "YulFunctionCall",
"src": "31532:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31524:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31402:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31417:4:13",
"type": ""
}
],
"src": "31251:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31847:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31857:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31869:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31880:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31865:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31865:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31857:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31904:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31915:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31900:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31900:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31923:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31929:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31919:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31919:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31893:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31893:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "31893:47:13"
},
{
"nodeType": "YulAssignment",
"src": "31949:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32083:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31957:124:13"
},
"nodeType": "YulFunctionCall",
"src": "31957:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31949:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31827:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31842:4:13",
"type": ""
}
],
"src": "31676:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32272:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32282:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32294:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32305:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32290:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32290:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32282:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32329:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32340:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32325:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32325:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32348:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32354:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32344:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32344:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32318:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32318:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "32318:47:13"
},
{
"nodeType": "YulAssignment",
"src": "32374:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32508:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32382:124:13"
},
"nodeType": "YulFunctionCall",
"src": "32382:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32374:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32252:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32267:4:13",
"type": ""
}
],
"src": "32101:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32697:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32707:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32719:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32730:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32715:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32715:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32707:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32754:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32765:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32750:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32750:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32773:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32779:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32769:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32769:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32743:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32743:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "32743:47:13"
},
{
"nodeType": "YulAssignment",
"src": "32799:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32933:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32807:124:13"
},
"nodeType": "YulFunctionCall",
"src": "32807:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32799:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32677:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32692:4:13",
"type": ""
}
],
"src": "32526:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33122:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33132:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33144:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33155:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33140:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33140:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33132:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33179:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33190:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33175:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33175:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33198:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33204:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33194:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33168:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33168:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "33168:47:13"
},
{
"nodeType": "YulAssignment",
"src": "33224:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33358:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33232:124:13"
},
"nodeType": "YulFunctionCall",
"src": "33232:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33224:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33102:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33117:4:13",
"type": ""
}
],
"src": "32951:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33474:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33484:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33496:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33507:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33492:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33492:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33484:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33564:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33577:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33588:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33573:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33573:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "33520:43:13"
},
"nodeType": "YulFunctionCall",
"src": "33520:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "33520:71:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33446:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33458:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33469:4:13",
"type": ""
}
],
"src": "33376:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33730:206:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33740:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33752:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33763:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33748:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33748:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33740:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33820:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33833:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33844:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33829:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33829:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "33776:43:13"
},
"nodeType": "YulFunctionCall",
"src": "33776:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "33776:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33901:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33914:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33925:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33910:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "33857:43:13"
},
"nodeType": "YulFunctionCall",
"src": "33857:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "33857:72:13"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33694:9:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33706:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33714:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33725:4:13",
"type": ""
}
],
"src": "33604:332:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33983:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33993:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "34003:18:13"
},
"nodeType": "YulFunctionCall",
"src": "34003:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33993:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34052:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34060:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "34032:19:13"
},
"nodeType": "YulFunctionCall",
"src": "34032:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "34032:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "33967:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33976:6:13",
"type": ""
}
],
"src": "33942:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34117:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34127:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34143:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "34137:5:13"
},
"nodeType": "YulFunctionCall",
"src": "34137:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34127:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34110:6:13",
"type": ""
}
],
"src": "34077:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34240:229:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34345:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "34347:16:13"
},
"nodeType": "YulFunctionCall",
"src": "34347:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "34347:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34317:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34325:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34314:2:13"
},
"nodeType": "YulFunctionCall",
"src": "34314:30:13"
},
"nodeType": "YulIf",
"src": "34311:2:13"
},
{
"nodeType": "YulAssignment",
"src": "34377:25:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34389:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34397:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "34385:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34385:17:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34377:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "34439:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34451:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34457:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34447:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34447:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34439:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34224:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34235:4:13",
"type": ""
}
],
"src": "34158:311:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34557:229:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34662:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "34664:16:13"
},
"nodeType": "YulFunctionCall",
"src": "34664:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "34664:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34634:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34642:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34631:2:13"
},
"nodeType": "YulFunctionCall",
"src": "34631:30:13"
},
"nodeType": "YulIf",
"src": "34628:2:13"
},
{
"nodeType": "YulAssignment",
"src": "34694:25:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34706:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34714:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "34702:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34702:17:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34694:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "34756:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34768:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34774:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34764:3:13"
},
"nodeType": "YulFunctionCall",
"src": "34764:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34756:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34541:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34552:4:13",
"type": ""
}
],
"src": "34475:311:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34858:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34963:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "34965:16:13"
},
"nodeType": "YulFunctionCall",
"src": "34965:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "34965:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "34935:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34943:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34932:2:13"
},
"nodeType": "YulFunctionCall",
"src": "34932:30:13"
},
"nodeType": "YulIf",
"src": "34929:2:13"
},
{
"nodeType": "YulAssignment",
"src": "34995:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35025:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "35003:21:13"
},
"nodeType": "YulFunctionCall",
"src": "35003:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "34995:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35069:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35081:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35087:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35077:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35077:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35069:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "34842:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "34853:4:13",
"type": ""
}
],
"src": "34792:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35172:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35277:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "35279:16:13"
},
"nodeType": "YulFunctionCall",
"src": "35279:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "35279:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35249:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35257:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "35246:2:13"
},
"nodeType": "YulFunctionCall",
"src": "35246:30:13"
},
"nodeType": "YulIf",
"src": "35243:2:13"
},
{
"nodeType": "YulAssignment",
"src": "35309:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35339:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "35317:21:13"
},
"nodeType": "YulFunctionCall",
"src": "35317:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35309:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35383:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35395:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35401:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35391:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35391:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "35383:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35156:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "35167:4:13",
"type": ""
}
],
"src": "35105:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35491:60:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35501:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35509:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35501:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35522:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35534:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35539:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35530:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35530:14:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35522:4:13"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "35478:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "35486:4:13",
"type": ""
}
],
"src": "35419:132:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35629:60:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35639:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35647:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35639:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "35660:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "35672:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35677:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35668:3:13"
},
"nodeType": "YulFunctionCall",
"src": "35668:14:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "35660:4:13"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "35616:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "35624:4:13",
"type": ""
}
],
"src": "35557:132:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35769:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35780:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35796:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35790:5:13"
},
"nodeType": "YulFunctionCall",
"src": "35790:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35780:6:13"
}
]
}
]
},
"name": "array_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35752:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35762:6:13",
"type": ""
}
],
"src": "35695:114:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35889:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35900:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35916:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35910:5:13"
},
"nodeType": "YulFunctionCall",
"src": "35910:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35900:6:13"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35872:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35882:6:13",
"type": ""
}
],
"src": "35815:114:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35993:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36004:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36020:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "36014:5:13"
},
"nodeType": "YulFunctionCall",
"src": "36014:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36004:6:13"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35976:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35986:6:13",
"type": ""
}
],
"src": "35935:98:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36098:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36109:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36125:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "36119:5:13"
},
"nodeType": "YulFunctionCall",
"src": "36119:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36109:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "36081:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36091:6:13",
"type": ""
}
],
"src": "36039:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36219:38:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36229:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "36241:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36246:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36237:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36237:14:13"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "36229:4:13"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "36206:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "36214:4:13",
"type": ""
}
],
"src": "36144:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36338:38:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36348:22:13",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "36360:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36365:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36356:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36356:14:13"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "36348:4:13"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "36325:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "36333:4:13",
"type": ""
}
],
"src": "36263:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36493:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36510:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36515:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36503:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36503:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36503:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36531:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36550:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36555:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36546:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36546:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36531:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36465:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36470:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36481:11:13",
"type": ""
}
],
"src": "36382:184:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36683:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36700:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36705:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36693:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36693:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36693:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36721:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36740:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36745:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36736:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36736:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36721:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36655:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36660:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36671:11:13",
"type": ""
}
],
"src": "36572:184:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36857:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36874:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36879:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36867:6:13"
},
"nodeType": "YulFunctionCall",
"src": "36867:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "36867:19:13"
},
{
"nodeType": "YulAssignment",
"src": "36895:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36914:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36919:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "36910:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36895:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36829:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36834:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36845:11:13",
"type": ""
}
],
"src": "36762:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37032:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37049:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "37054:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37042:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37042:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "37042:19:13"
},
{
"nodeType": "YulAssignment",
"src": "37070:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37089:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37094:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37085:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37085:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "37070:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37004:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "37009:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "37020:11:13",
"type": ""
}
],
"src": "36936:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37225:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37235:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37250:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "37235:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37197:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "37202:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "37213:11:13",
"type": ""
}
],
"src": "37111:148:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37309:261:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37319:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37342:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37324:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37324:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37319:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37353:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37376:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37358:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37358:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37353:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37516:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37518:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37518:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37518:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37437:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37444:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37512:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37440:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37440:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "37434:2:13"
},
"nodeType": "YulFunctionCall",
"src": "37434:81:13"
},
"nodeType": "YulIf",
"src": "37431:2:13"
},
{
"nodeType": "YulAssignment",
"src": "37548:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37559:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37562:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37555:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37555:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "37548:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37296:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37299:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "37305:3:13",
"type": ""
}
],
"src": "37265:305:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37624:300:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37634:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37657:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37639:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37639:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37634:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37668:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37691:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37673:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37673:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37668:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37866:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37868:16:13"
},
"nodeType": "YulFunctionCall",
"src": "37868:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "37868:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37778:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37771:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37771:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37764:6:13"
},
"nodeType": "YulFunctionCall",
"src": "37764:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37786:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37793:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37861:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "37789:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37789:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "37783:2:13"
},
"nodeType": "YulFunctionCall",
"src": "37783:81:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "37760:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37760:105:13"
},
"nodeType": "YulIf",
"src": "37757:2:13"
},
{
"nodeType": "YulAssignment",
"src": "37898:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37913:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37916:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "37909:3:13"
},
"nodeType": "YulFunctionCall",
"src": "37909:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "37898:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37607:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37610:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "37616:7:13",
"type": ""
}
],
"src": "37576:348:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37975:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37985:35:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38014:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "37996:17:13"
},
"nodeType": "YulFunctionCall",
"src": "37996:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37985:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37957:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37967:7:13",
"type": ""
}
],
"src": "37930:96:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38074:48:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38084:32:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38109:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38102:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38102:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38095:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38095:21:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38084:7:13"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38056:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38066:7:13",
"type": ""
}
],
"src": "38032:90:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38173:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38183:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "38194:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38183:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38155:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38165:7:13",
"type": ""
}
],
"src": "38128:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38255:105:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38265:89:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38280:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38287:66:13",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38276:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38276:78:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38265:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38237:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38247:7:13",
"type": ""
}
],
"src": "38211:149:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38421:76:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38431:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "38442:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38431:7:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38485:5:13"
}
],
"functionName": {
"name": "validator_assert_t_enum$_State_$2574",
"nodeType": "YulIdentifier",
"src": "38448:36:13"
},
"nodeType": "YulFunctionCall",
"src": "38448:43:13"
},
"nodeType": "YulExpressionStatement",
"src": "38448:43:13"
}
]
},
"name": "cleanup_t_enum$_State_$2574",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38403:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38413:7:13",
"type": ""
}
],
"src": "38366:131:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38548:81:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38558:65:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38573:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38580:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38569:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38569:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38558:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38530:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38540:7:13",
"type": ""
}
],
"src": "38503:126:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38680:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38690:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "38701:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38690:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38662:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38672:7:13",
"type": ""
}
],
"src": "38635:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38786:63:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38796:47:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38837:5:13"
}
],
"functionName": {
"name": "cleanup_t_enum$_State_$2574",
"nodeType": "YulIdentifier",
"src": "38809:27:13"
},
"nodeType": "YulFunctionCall",
"src": "38809:34:13"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "38796:9:13"
}
]
}
]
},
"name": "convert_t_enum$_State_$2574_to_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38766:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "38776:9:13",
"type": ""
}
],
"src": "38718:131:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38906:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38929:3:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "38934:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38939:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "38916:12:13"
},
"nodeType": "YulFunctionCall",
"src": "38916:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "38916:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38987:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38992:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38983:3:13"
},
"nodeType": "YulFunctionCall",
"src": "38983:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39001:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38976:6:13"
},
"nodeType": "YulFunctionCall",
"src": "38976:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "38976:27:13"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "38888:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "38893:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38898:6:13",
"type": ""
}
],
"src": "38855:154:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39064:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39074:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "39083:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "39078:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39143:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "39168:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39173:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39164:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39164:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "39187:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39192:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39183:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39183:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "39177:5:13"
},
"nodeType": "YulFunctionCall",
"src": "39177:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39157:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39157:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "39157:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39104:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39107:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "39101:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39101:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "39115:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39117:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39126:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39129:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39122:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39122:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39117:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "39097:3:13",
"statements": []
},
"src": "39093:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39240:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "39290:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39295:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39286:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39286:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39304:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39279:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39279:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "39279:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "39221:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39224:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "39218:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39218:13:13"
},
"nodeType": "YulIf",
"src": "39215:2:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "39046:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "39051:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39056:6:13",
"type": ""
}
],
"src": "39015:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39371:128:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39381:33:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39408:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "39390:17:13"
},
"nodeType": "YulFunctionCall",
"src": "39390:24:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39381:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39442:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "39444:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39444:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39444:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39429:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39436:4:13",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "39426:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39426:15:13"
},
"nodeType": "YulIf",
"src": "39423:2:13"
},
{
"nodeType": "YulAssignment",
"src": "39473:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "39484:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39491:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "39480:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39480:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "39473:3:13"
}
]
}
]
},
"name": "decrement_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "39357:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "39367:3:13",
"type": ""
}
],
"src": "39328:171:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39556:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39566:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "39580:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39586:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "39576:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39576:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39566:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "39597:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "39627:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39633:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39623:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39623:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "39601:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "39674:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "39688:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39702:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39710:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "39698:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39698:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39688:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "39654:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "39647:6:13"
},
"nodeType": "YulFunctionCall",
"src": "39647:26:13"
},
"nodeType": "YulIf",
"src": "39644:2:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39777:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "39791:16:13"
},
"nodeType": "YulFunctionCall",
"src": "39791:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "39791:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "39741:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "39764:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39772:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "39761:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39761:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "39738:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39738:38:13"
},
"nodeType": "YulIf",
"src": "39735:2:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "39540:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "39549:6:13",
"type": ""
}
],
"src": "39505:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39874:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "39884:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "39906:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "39936:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "39914:21:13"
},
"nodeType": "YulFunctionCall",
"src": "39914:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "39902:3:13"
},
"nodeType": "YulFunctionCall",
"src": "39902:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "39888:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "40053:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "40055:16:13"
},
"nodeType": "YulFunctionCall",
"src": "40055:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "40055:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "39996:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40008:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "39993:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39993:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "40032:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "40044:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "40029:2:13"
},
"nodeType": "YulFunctionCall",
"src": "40029:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "39990:2:13"
},
"nodeType": "YulFunctionCall",
"src": "39990:62:13"
},
"nodeType": "YulIf",
"src": "39987:2:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40091:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "40095:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40084:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40084:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "40084:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "39860:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "39868:4:13",
"type": ""
}
],
"src": "39831:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40161:190:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "40171:33:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40198:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "40180:17:13"
},
"nodeType": "YulFunctionCall",
"src": "40180:24:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40171:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "40294:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "40296:16:13"
},
"nodeType": "YulFunctionCall",
"src": "40296:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "40296:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40219:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40226:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "40216:2:13"
},
"nodeType": "YulFunctionCall",
"src": "40216:77:13"
},
"nodeType": "YulIf",
"src": "40213:2:13"
},
{
"nodeType": "YulAssignment",
"src": "40325:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "40336:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40343:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "40332:3:13"
},
"nodeType": "YulFunctionCall",
"src": "40332:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "40325:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "40147:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "40157:3:13",
"type": ""
}
],
"src": "40118:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40385:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40402:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40405:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40395:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40395:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40395:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40499:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40502:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40492:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40492:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40492:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40523:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40526:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40516:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40516:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40516:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "40357:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40571:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40588:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40591:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40581:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40581:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40581:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40685:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40688:4:13",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40678:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40678:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40678:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40709:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40712:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40702:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40702:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40702:15:13"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "40543:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40757:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40774:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40777:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40767:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40767:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40767:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40871:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40874:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40864:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40864:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40864:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40895:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40898:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "40888:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40888:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "40888:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "40729:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "40943:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40960:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "40963:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "40953:6:13"
},
"nodeType": "YulFunctionCall",
"src": "40953:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "40953:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41057:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41060:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41050:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41050:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "41050:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41081:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41084:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "41074:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41074:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "41074:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "40915:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41140:144:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "41177:101:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41206:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41209:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41212:1:13",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "41191:14:13"
},
"nodeType": "YulFunctionCall",
"src": "41191:23:13"
},
"nodeType": "YulExpressionStatement",
"src": "41191:23:13"
},
{
"nodeType": "YulAssignment",
"src": "41227:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41265:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "41259:5:13"
},
"nodeType": "YulFunctionCall",
"src": "41259:8:13"
}
],
"functionName": {
"name": "shift_right_224_unsigned",
"nodeType": "YulIdentifier",
"src": "41234:24:13"
},
"nodeType": "YulFunctionCall",
"src": "41234:34:13"
},
"variableNames": [
{
"name": "sig",
"nodeType": "YulIdentifier",
"src": "41227:3:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "41156:14:13"
},
"nodeType": "YulFunctionCall",
"src": "41156:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41174:1:13",
"type": "",
"value": "3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "41153:2:13"
},
"nodeType": "YulFunctionCall",
"src": "41153:23:13"
},
"nodeType": "YulIf",
"src": "41150:2:13"
}
]
},
"name": "return_data_selector",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "sig",
"nodeType": "YulTypedName",
"src": "41136:3:13",
"type": ""
}
],
"src": "41101:183:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41338:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41348:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41366:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41373:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41362:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41362:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41382:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "41378:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41378:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "41358:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41358:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "41348:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41321:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "41331:6:13",
"type": ""
}
],
"src": "41290:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41451:53:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "41461:36:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41486:3:13",
"type": "",
"value": "224"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "41491:5:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "41482:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41482:15:13"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "41461:8:13"
}
]
}
]
},
"name": "shift_right_224_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "41432:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "41442:8:13",
"type": ""
}
],
"src": "41398:106:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41616:133:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41638:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41646:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41634:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41634:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "41650:34:13",
"type": "",
"value": "ERC1155: transfer to non ERC1155"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41627:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41627:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "41627:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41706:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41714:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41702:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41702:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "41719:22:13",
"type": "",
"value": "Receiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41695:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41695:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "41695:47:13"
}
]
},
"name": "store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41608:6:13",
"type": ""
}
],
"src": "41510:239:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "41861:128:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41883:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41891:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41879:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41879:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "41895:34:13",
"type": "",
"value": "ERC1155: caller is not token own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41872:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41872:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "41872:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "41951:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "41959:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "41947:3:13"
},
"nodeType": "YulFunctionCall",
"src": "41947:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "41964:17:13",
"type": "",
"value": "er nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "41940:6:13"
},
"nodeType": "YulFunctionCall",
"src": "41940:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "41940:42:13"
}
]
},
"name": "store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "41853:6:13",
"type": ""
}
],
"src": "41755:234:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42101:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42123:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42131:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42119:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42119:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42135:34:13",
"type": "",
"value": "Strings: hex length insufficient"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42112:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42112:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42112:58:13"
}
]
},
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42093:6:13",
"type": ""
}
],
"src": "41995:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42289:121:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42311:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42319:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42307:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42307:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42323:34:13",
"type": "",
"value": "ERC1155: ERC1155Receiver rejecte"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42300:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42300:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42300:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42379:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42387:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42375:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42375:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42392:10:13",
"type": "",
"value": "d tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42368:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42368:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "42368:35:13"
}
]
},
"name": "store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42281:6:13",
"type": ""
}
],
"src": "42183:227:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42522:123:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42544:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42552:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42540:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42540:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42556:34:13",
"type": "",
"value": "ERC1155: address zero is not a v"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42533:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42533:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42533:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42612:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42620:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42608:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42608:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42625:12:13",
"type": "",
"value": "alid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42601:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42601:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "42601:37:13"
}
]
},
"name": "store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42514:6:13",
"type": ""
}
],
"src": "42416:229:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42757:118:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42779:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42787:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42775:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42775:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42791:34:13",
"type": "",
"value": "ERC1155: transfer to the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42768:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42768:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42768:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "42847:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "42855:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "42843:3:13"
},
"nodeType": "YulFunctionCall",
"src": "42843:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "42860:7:13",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42836:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42836:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "42836:32:13"
}
]
},
"name": "store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42749:6:13",
"type": ""
}
],
"src": "42651:224:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "42987:123:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43009:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43017:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43005:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43005:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43021:34:13",
"type": "",
"value": "ERC1155: insufficient balance fo"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "42998:6:13"
},
"nodeType": "YulFunctionCall",
"src": "42998:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "42998:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43077:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43085:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43073:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43073:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43090:12:13",
"type": "",
"value": "r transfer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43066:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43066:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "43066:37:13"
}
]
},
"name": "store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "42979:6:13",
"type": ""
}
],
"src": "42881:229:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43222:121:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43244:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43252:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43240:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43240:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43256:34:13",
"type": "",
"value": "ERC1155: burn amount exceeds tot"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43233:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43233:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43233:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43312:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43320:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43308:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43308:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43325:10:13",
"type": "",
"value": "alSupply"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43301:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43301:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "43301:35:13"
}
]
},
"name": "store_literal_in_memory_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43214:6:13",
"type": ""
}
],
"src": "43116:227:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43455:67:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43477:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43485:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43473:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43473:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43489:25:13",
"type": "",
"value": "AccessControl: account "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43466:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43466:49:13"
},
"nodeType": "YulExpressionStatement",
"src": "43466:49:13"
}
]
},
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43447:6:13",
"type": ""
}
],
"src": "43349:173:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43634:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43656:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43664:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43652:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43652:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43668:34:13",
"type": "",
"value": "ERC1155: setting approval status"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43645:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43645:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43645:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43724:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43732:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43720:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43720:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43737:11:13",
"type": "",
"value": " for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43713:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43713:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "43713:36:13"
}
]
},
"name": "store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43626:6:13",
"type": ""
}
],
"src": "43528:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "43868:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43890:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43898:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43886:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43886:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43902:34:13",
"type": "",
"value": "ERC1155: accounts and ids length"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43879:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43879:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "43879:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "43958:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "43966:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "43954:3:13"
},
"nodeType": "YulFunctionCall",
"src": "43954:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "43971:11:13",
"type": "",
"value": " mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "43947:6:13"
},
"nodeType": "YulFunctionCall",
"src": "43947:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "43947:36:13"
}
]
},
"name": "store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "43860:6:13",
"type": ""
}
],
"src": "43762:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44102:121:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44124:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44132:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44120:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44120:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44136:34:13",
"type": "",
"value": "ERC1155: ids and amounts length "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44113:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44113:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44113:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44192:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44200:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44188:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44188:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44205:10:13",
"type": "",
"value": "mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44181:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44181:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "44181:35:13"
}
]
},
"name": "store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44094:6:13",
"type": ""
}
],
"src": "43996:227:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44335:114:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44357:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44365:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44353:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44353:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44369:34:13",
"type": "",
"value": "ERC1155: mint to the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44346:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44346:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44346:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44425:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44433:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44421:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44421:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44438:3:13",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44414:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44414:28:13"
},
"nodeType": "YulExpressionStatement",
"src": "44414:28:13"
}
]
},
"name": "store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44327:6:13",
"type": ""
}
],
"src": "44229:220:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44561:61:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44583:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44591:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44579:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44579:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44595:19:13",
"type": "",
"value": " is missing role "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44572:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44572:43:13"
},
"nodeType": "YulExpressionStatement",
"src": "44572:43:13"
}
]
},
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44553:6:13",
"type": ""
}
],
"src": "44455:167:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44734:128:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44756:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44764:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44752:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44752:14:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44768:34:13",
"type": "",
"value": "AccessControl: can only renounce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44745:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44745:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "44745:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "44824:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44832:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "44820:3:13"
},
"nodeType": "YulFunctionCall",
"src": "44820:15:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "44837:17:13",
"type": "",
"value": " roles for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "44813:6:13"
},
"nodeType": "YulFunctionCall",
"src": "44813:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "44813:42:13"
}
]
},
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "44726:6:13",
"type": ""
}
],
"src": "44628:234:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "44911:668:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "44951:9:13",
"statements": [
{
"nodeType": "YulLeave",
"src": "44953:5:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "44927:14:13"
},
"nodeType": "YulFunctionCall",
"src": "44927:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "44945:4:13",
"type": "",
"value": "0x44"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "44924:2:13"
},
"nodeType": "YulFunctionCall",
"src": "44924:26:13"
},
"nodeType": "YulIf",
"src": "44921:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "44970:32:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "44982:18:13"
},
"nodeType": "YulFunctionCall",
"src": "44982:20:13"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "44974:4:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "45026:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45032:1:13",
"type": "",
"value": "4"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "45039:14:13"
},
"nodeType": "YulFunctionCall",
"src": "45039:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45057:1:13",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "45035:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45035:24:13"
}
],
"functionName": {
"name": "returndatacopy",
"nodeType": "YulIdentifier",
"src": "45011:14:13"
},
"nodeType": "YulFunctionCall",
"src": "45011:49:13"
},
"nodeType": "YulExpressionStatement",
"src": "45011:49:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "45070:25:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "45090:4:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "45084:5:13"
},
"nodeType": "YulFunctionCall",
"src": "45084:11:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "45074:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "45221:29:13",
"statements": [
{
"nodeType": "YulLeave",
"src": "45235:5:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "45126:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45134:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "45123:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45123:30:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "45174:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45182:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45170:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45170:17:13"
},
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "45189:14:13"
},
"nodeType": "YulFunctionCall",
"src": "45189:16:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "45167:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45167:39:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "45107:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45107:113:13"
},
"nodeType": "YulIf",
"src": "45104:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "45260:28:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "45275:4:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "45281:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45271:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45271:17:13"
},
"variables": [
{
"name": "msg",
"nodeType": "YulTypedName",
"src": "45264:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "45297:24:13",
"value": {
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "45317:3:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "45311:5:13"
},
"nodeType": "YulFunctionCall",
"src": "45311:10:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "45301:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "45364:9:13",
"statements": [
{
"nodeType": "YulLeave",
"src": "45366:5:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45336:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45344:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "45333:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45333:30:13"
},
"nodeType": "YulIf",
"src": "45330:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "45383:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "msg",
"nodeType": "YulIdentifier",
"src": "45402:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45407:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45398:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45398:14:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45414:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45394:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45394:27:13"
},
"variables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45387:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "45478:9:13",
"statements": [
{
"nodeType": "YulLeave",
"src": "45480:5:13"
}
]
},
"condition": {
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "45436:3:13"
},
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "45445:4:13"
},
{
"arguments": [
{
"arguments": [],
"functionName": {
"name": "returndatasize",
"nodeType": "YulIdentifier",
"src": "45455:14:13"
},
"nodeType": "YulFunctionCall",
"src": "45455:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45473:1:13",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "45451:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45451:24:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45441:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45441:35:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "45433:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45433:44:13"
},
"nodeType": "YulIf",
"src": "45430:2:13"
},
{
"expression": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "45517:4:13"
},
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "45527:6:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45539:4:13",
"type": "",
"value": "0x20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "45545:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45535:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45535:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "45523:3:13"
},
"nodeType": "YulFunctionCall",
"src": "45523:30:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "45497:19:13"
},
"nodeType": "YulFunctionCall",
"src": "45497:57:13"
},
"nodeType": "YulExpressionStatement",
"src": "45497:57:13"
},
{
"nodeType": "YulAssignment",
"src": "45563:10:13",
"value": {
"name": "msg",
"nodeType": "YulIdentifier",
"src": "45570:3:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "45563:3:13"
}
]
}
]
},
"name": "try_decode_error_message",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "44907:3:13",
"type": ""
}
],
"src": "44868:711:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45638:62:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "45672:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x21",
"nodeType": "YulIdentifier",
"src": "45674:16:13"
},
"nodeType": "YulFunctionCall",
"src": "45674:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "45674:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45661:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45668:1:13",
"type": "",
"value": "5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "45658:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45658:12:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "45651:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45651:20:13"
},
"nodeType": "YulIf",
"src": "45648:2:13"
}
]
},
"name": "validator_assert_t_enum$_State_$2574",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45631:5:13",
"type": ""
}
],
"src": "45585:115:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45749:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "45806:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45815:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45818:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "45808:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45808:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "45808:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45772:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45797:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "45779:17:13"
},
"nodeType": "YulFunctionCall",
"src": "45779:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "45769:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45769:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "45762:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45762:43:13"
},
"nodeType": "YulIf",
"src": "45759:2:13"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45742:5:13",
"type": ""
}
],
"src": "45706:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45874:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "45928:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45937:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "45940:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "45930:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45930:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "45930:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45897:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "45919:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "45904:14:13"
},
"nodeType": "YulFunctionCall",
"src": "45904:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "45894:2:13"
},
"nodeType": "YulFunctionCall",
"src": "45894:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "45887:6:13"
},
"nodeType": "YulFunctionCall",
"src": "45887:40:13"
},
"nodeType": "YulIf",
"src": "45884:2:13"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45867:5:13",
"type": ""
}
],
"src": "45834:116:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "45999:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "46056:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46065:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46068:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "46058:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46058:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "46058:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46022:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46047:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "46029:17:13"
},
"nodeType": "YulFunctionCall",
"src": "46029:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "46019:2:13"
},
"nodeType": "YulFunctionCall",
"src": "46019:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "46012:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46012:43:13"
},
"nodeType": "YulIf",
"src": "46009:2:13"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "45992:5:13",
"type": ""
}
],
"src": "45956:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "46126:78:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "46182:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46191:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46194:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "46184:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46184:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "46184:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46149:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46173:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "46156:16:13"
},
"nodeType": "YulFunctionCall",
"src": "46156:23:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "46146:2:13"
},
"nodeType": "YulFunctionCall",
"src": "46146:34:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "46139:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46139:42:13"
},
"nodeType": "YulIf",
"src": "46136:2:13"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "46119:5:13",
"type": ""
}
],
"src": "46084:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "46253:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "46310:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46319:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "46322:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "46312:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46312:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "46312:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46276:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "46301:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "46283:17:13"
},
"nodeType": "YulFunctionCall",
"src": "46283:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "46273:2:13"
},
"nodeType": "YulFunctionCall",
"src": "46273:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "46266:6:13"
},
"nodeType": "YulFunctionCall",
"src": "46266:43:13"
},
"nodeType": "YulIf",
"src": "46263:2:13"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "46246:5:13",
"type": ""
}
],
"src": "46210:122:13"
}
]
},
"contents": "{\n\n // address[]\n function abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let src := offset\n if gt(add(src, mul(length, 0x20)), end) {\n revert(0, 0)\n }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_address(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x20)\n }\n }\n\n // uint256[]\n function abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let src := offset\n if gt(add(src, mul(length, 0x20)), end) {\n revert(0, 0)\n }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_uint256(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x20)\n }\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n // address[]\n function abi_decode_t_array$_t_address_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // uint256[]\n function abi_decode_t_array$_t_uint256_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value2 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 128))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value4 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 128))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value4 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value2 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_array$_t_address_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_array$_t_uint256_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_array$_t_address_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value2 := abi_decode_t_array$_t_address_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encodeUpdatedPos_t_address_to_t_address(value0, pos) -> updatedPos {\n abi_encode_t_address_to_t_address(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // address[] -> address[]\n function abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_address_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_address_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_address_to_t_address(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_address_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_enum$_State_$2574_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_enum$_State_$2574_to_t_uint8(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 52)\n store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 23)\n store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(pos)\n end := add(pos, 23)\n }\n\n function abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 17)\n store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(pos)\n end := add(pos, 17)\n }\n\n function abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value2, tail)\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value3, tail)\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value4, tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value4, tail)\n\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value1, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_enum$_State_$2574_t_array$_t_address_$dyn_memory_ptr__to_t_string_memory_ptr_t_uint8_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_enum$_State_$2574_to_t_uint8_fromStack(value1, add(headStart, 32))\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack(value2, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_dataslot_t_array$_t_address_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_length_t_array$_t_address_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_address_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_enum$_State_$2574(value) -> cleaned {\n cleaned := value validator_assert_t_enum$_State_$2574(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_enum$_State_$2574_to_t_uint8(value) -> converted {\n converted := cleanup_t_enum$_State_$2574(value)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function decrement_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0x00) { panic_error_0x11() }\n ret := sub(value, 1)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function return_data_selector() -> sig {\n if gt(returndatasize(), 3) {\n returndatacopy(0, 0, 4)\n sig := shift_right_224_unsigned(mload(0))\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function shift_right_224_unsigned(value) -> newValue {\n newValue :=\n\n shr(224, value)\n\n }\n\n function store_literal_in_memory_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: transfer to non ERC1155\")\n\n mstore(add(memPtr, 32), \"Receiver implementer\")\n\n }\n\n function store_literal_in_memory_0398ed728bb0e096e3166d2c16e1078c0ca95e6b3fb31971215526318a2e5370(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: caller is not token own\")\n\n mstore(add(memPtr, 32), \"er nor approved\")\n\n }\n\n function store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(memPtr) {\n\n mstore(add(memPtr, 0), \"Strings: hex length insufficient\")\n\n }\n\n function store_literal_in_memory_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: ERC1155Receiver rejecte\")\n\n mstore(add(memPtr, 32), \"d tokens\")\n\n }\n\n function store_literal_in_memory_415a1b99e1fd4a18cf87c08995f5a9130182e8d76e9c17c497bfebaaef9265ad(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: address zero is not a v\")\n\n mstore(add(memPtr, 32), \"alid owner\")\n\n }\n\n function store_literal_in_memory_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: transfer to the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: insufficient balance fo\")\n\n mstore(add(memPtr, 32), \"r transfer\")\n\n }\n\n function store_literal_in_memory_9eb0869d69143813ac9f244871191d8f2e530e71a4599ba9db4501f0f6110ee4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: burn amount exceeds tot\")\n\n mstore(add(memPtr, 32), \"alSupply\")\n\n }\n\n function store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: account \")\n\n }\n\n function store_literal_in_memory_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: setting approval status\")\n\n mstore(add(memPtr, 32), \" for self\")\n\n }\n\n function store_literal_in_memory_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: accounts and ids length\")\n\n mstore(add(memPtr, 32), \" mismatch\")\n\n }\n\n function store_literal_in_memory_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: ids and amounts length \")\n\n mstore(add(memPtr, 32), \"mismatch\")\n\n }\n\n function store_literal_in_memory_ebf031a1b7ee1d0b3a7752b450a3268e8b6c334561b48c1c0ba0f5bac05749f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC1155: mint to the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(memPtr) {\n\n mstore(add(memPtr, 0), \" is missing role \")\n\n }\n\n function store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: can only renounce\")\n\n mstore(add(memPtr, 32), \" roles for self\")\n\n }\n\n function try_decode_error_message() -> ret {\n if lt(returndatasize(), 0x44) { leave }\n\n let data := allocate_unbounded()\n returndatacopy(data, 4, sub(returndatasize(), 4))\n\n let offset := mload(data)\n if or(\n gt(offset, 0xffffffffffffffff),\n gt(add(offset, 0x24), returndatasize())\n ) {\n leave\n }\n\n let msg := add(data, offset)\n let length := mload(msg)\n if gt(length, 0xffffffffffffffff) { leave }\n\n let end := add(add(msg, 0x20), length)\n if gt(end, add(data, sub(returndatasize(), 4))) { leave }\n\n finalize_allocation(data, add(offset, add(0x20, length)))\n ret := msg\n }\n\n function validator_assert_t_enum$_State_$2574(value) {\n if iszero(lt(value, 5)) { panic_error_0x21() }\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061013f5760003560e01c80634f558e79116100b6578063a7be85c61161006f578063a7be85c61461048f578063bd85b039146104ba578063cabd7b23146104f7578063d547741f14610513578063e985e9c51461053c578063f242432a146105795761013f565b80634f558e791461036d578063731133e9146103aa5780637f345710146103d357806391d14854146103fe578063a217fddf1461043b578063a22cb465146104665761013f565b80631f7fdffa116101085780631f7fdffa1461024f578063248a9ca3146102785780632eb2c2d6146102b55780632f2ff15d146102de57806336568abe146103075780634e1273f4146103305761013f565b8062fdd58e1461014457806301ffc9a71461018157806302fe5305146101be57806305666adf146101e75780630e89341c14610212575b600080fd5b34801561015057600080fd5b5061016b60048036038101906101669190612fad565b6105a2565b6040516101789190613a1f565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190613135565b61066b565b6040516101b591906137e2565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190613187565b61067d565b005b3480156101f357600080fd5b506101fc6106b4565b60405161020991906137fd565b60405180910390f35b34801561021e57600080fd5b506102396004803603810190610234919061325f565b6106d8565b6040516102469190613818565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612ec6565b61076c565b005b34801561028457600080fd5b5061029f600480360381019061029a91906130d0565b61078c565b6040516102ac91906137fd565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d78565b6107ac565b005b3480156102ea57600080fd5b50610305600480360381019061030091906130f9565b61084d565b005b34801561031357600080fd5b5061032e600480360381019061032991906130f9565b61086e565b005b34801561033c57600080fd5b5061035760048036038101906103529190613064565b6108f1565b6040516103649190613789565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061325f565b610aa2565b6040516103a191906137e2565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612fe9565b610ab6565b005b3480156103df57600080fd5b506103e8610ad6565b6040516103f591906137fd565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906130f9565b610afa565b60405161043291906137e2565b60405180910390f35b34801561044757600080fd5b50610450610b65565b60405161045d91906137fd565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f71565b610b6c565b005b34801561049b57600080fd5b506104a4610b82565b6040516104b191906137fd565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061325f565b610ba6565b6040516104ee9190613a1f565b60405180910390f35b610511600480360381019061050c91906131c8565b610bc3565b005b34801561051f57600080fd5b5061053a600480360381019061053591906130f9565b610e01565b005b34801561054857600080fd5b50610563600480360381019061055e9190612d3c565b610e22565b60405161057091906137e2565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190612e37565b610eb6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a906138ff565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061067682610f57565b9050919050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c6106a781610fd1565b6106b082610fe5565b5050565b7f885c6469c15dccdb29e4eb494ae657bb614976dcd4d5a0cc43c4bc691111ed9481565b6060600280546106e790613db6565b80601f016020809104026020016040519081016040528092919081815260200182805461071390613db6565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b50505050509050919050565b6000801b61077981610fd1565b61078585858585610fff565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b6107b4611278565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107fa57506107f9856107f4611278565b610e22565b5b610839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108309061389f565b60405180910390fd5b6108468585858585611280565b5050505050565b6108568261078c565b61085f81610fd1565b61086983836115ee565b505050565b610876611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da906139ff565b60405180910390fd5b6108ed82826116cf565b5050565b60608151835114610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e9061399f565b60405180910390fd5b6000835167ffffffffffffffff81111561097a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109a85781602001602082028036833780820191505090505b50905060005b8451811015610a9757610a418582815181106109f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105a2565b828281518110610a7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610a9090613e19565b90506109ae565b508091505092915050565b600080610aae83610ba6565b119050919050565b6000801b610ac381610fd1565b610acf858585856117b1565b5050505050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c81565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b610b7e610b77611278565b8383611962565b5050565b7fc3804b311cb423d6a5c669b1a91eaa36c50f5d1a91f8ab0663a237f5dc41226381565b600060046000838152602001908152602001600020549050919050565b7fc3804b311cb423d6a5c669b1a91eaa36c50f5d1a91f8ab0663a237f5dc412263610bed81610fd1565b60405180610100016040528060055481526020013373ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001600081526020016000815260200160006004811115610c71577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8152602001838152506006600060055481526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002019080519060200190610cfc929190612995565b506060820151816003019080519060200190610d19929190612995565b506080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690836004811115610d7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060e0820151816007019080519060200190610da0929190612a1b565b509050506005547f55809472c1de23d654388f72ff8a889e1dc2cc32ac1e50b68f0293be253beee084600085604051610ddb9392919061383a565b60405180910390a260056000815480929190610df690613e19565b919050555050505050565b610e0a8261078c565b610e1381610fd1565b610e1d83836116cf565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ebe611278565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f045750610f0385610efe611278565b610e22565b5b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061389f565b60405180910390fd5b610f508585858585611acf565b5050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fca5750610fc982611d6b565b5b9050919050565b610fe281610fdd611278565b611e4d565b50565b8060029080519060200190610ffb929190612995565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906139df565b60405180910390fd5b81518351146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906139bf565b60405180910390fd5b60006110bd611278565b90506110ce81600087878787611eea565b60005b84518110156111d357838181518110611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611157577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b99190613bf7565b9250508190555080806111cb90613e19565b9150506110d1565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161124b9291906137ab565b60405180910390a461126281600087878787611f00565b61127181600087878787611f08565b5050505050565b600033905090565b81518351146112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906139bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061391f565b60405180910390fd5b600061133e611278565b905061134e818787878787611eea565b60005b845181101561154b576000858281518110611395577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106113da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061393f565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115309190613bf7565b925050819055505050508061154490613e19565b9050611351565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115c29291906137ab565b60405180910390a46115d8818787878787611f00565b6115e6818787878787611f08565b505050505050565b6115f88282610afa565b6116cb5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611670611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116d98282610afa565b156117ad5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611752611278565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906139df565b60405180910390fd5b600061182b611278565b90506000611838856120ef565b90506000611845856120ef565b905061185683600089858589611eea565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b59190613bf7565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611933929190613a3a565b60405180910390a461194a83600089858589611f00565b611959836000898989896121b5565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c89061397f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac291906137e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061391f565b60405180910390fd5b6000611b49611278565b90506000611b56856120ef565b90506000611b63856120ef565b9050611b73838989858589611eea565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c019061393f565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbf9190613bf7565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611d3c929190613a3a565b60405180910390a4611d52848a8a86868a611f00565b611d60848a8a8a8a8a6121b5565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e465750611e458261239c565b5b9050919050565b611e578282610afa565b611ee657611e7c8173ffffffffffffffffffffffffffffffffffffffff166014612406565b611e8a8360001c6020612406565b604051602001611e9b92919061368d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd9190613818565b60405180910390fd5b5050565b611ef8868686868686612700565b505050505050565b505050505050565b611f278473ffffffffffffffffffffffffffffffffffffffff1661296a565b156120e7578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f6d9594939291906136c7565b602060405180830381600087803b158015611f8757600080fd5b505af1925050508015611fb857506040513d601f19601f82011682018060405250810190611fb5919061315e565b60015b61205e57611fc4613f1e565b806308c379a014156120215750611fd961438d565b80611fe45750612023565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120189190613818565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120559061387f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc906138df565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612134577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156121625781602001602082028036833780820191505090505b50905082816000815181106121a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6121d48473ffffffffffffffffffffffffffffffffffffffff1661296a565b15612394578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161221a95949392919061372f565b602060405180830381600087803b15801561223457600080fd5b505af192505050801561226557506040513d601f19601f82011682018060405250810190612262919061315e565b60015b61230b57612271613f1e565b806308c379a014156122ce575061228661438d565b8061229157506122d0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c59190613818565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123029061387f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906138df565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026124199190613c4d565b6124239190613bf7565b67ffffffffffffffff811115612462577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124945781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106124f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061257c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125bc9190613c4d565b6125c69190613bf7565b90505b60018111156126b2577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061262e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061266b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806126ab90613d8c565b90506125c9565b50600084146126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed906138bf565b60405180910390fd5b8091505092915050565b61270e86868686868661298d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561280c5760005b835181101561280a57828181518110612788577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600460008684815181106127cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546127f29190613bf7565b925050819055508061280390613e19565b9050612746565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129625760005b8351811015612960576000848281518110612888577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106128cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002054905081811015612932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129299061395f565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508061295990613e19565b9050612844565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546129a190613db6565b90600052602060002090601f0160209004810192826129c35760008555612a0a565b82601f106129dc57805160ff1916838001178555612a0a565b82800160010185558215612a0a579182015b82811115612a095782518255916020019190600101906129ee565b5b509050612a179190612aa5565b5090565b828054828255906000526020600020908101928215612a94579160200282015b82811115612a935782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612a3b565b5b509050612aa19190612aa5565b5090565b5b80821115612abe576000816000905550600101612aa6565b5090565b6000612ad5612ad084613a88565b613a63565b90508083825260208201905082856020860282011115612af457600080fd5b60005b85811015612b245781612b0a8882612c16565b845260208401935060208301925050600181019050612af7565b5050509392505050565b6000612b41612b3c84613ab4565b613a63565b90508083825260208201905082856020860282011115612b6057600080fd5b60005b85811015612b905781612b768882612d27565b845260208401935060208301925050600181019050612b63565b5050509392505050565b6000612bad612ba884613ae0565b613a63565b905082815260208101848484011115612bc557600080fd5b612bd0848285613d4a565b509392505050565b6000612beb612be684613b11565b613a63565b905082815260208101848484011115612c0357600080fd5b612c0e848285613d4a565b509392505050565b600081359050612c2581614437565b92915050565b600082601f830112612c3c57600080fd5b8135612c4c848260208601612ac2565b91505092915050565b600082601f830112612c6657600080fd5b8135612c76848260208601612b2e565b91505092915050565b600081359050612c8e8161444e565b92915050565b600081359050612ca381614465565b92915050565b600081359050612cb88161447c565b92915050565b600081519050612ccd8161447c565b92915050565b600082601f830112612ce457600080fd5b8135612cf4848260208601612b9a565b91505092915050565b600082601f830112612d0e57600080fd5b8135612d1e848260208601612bd8565b91505092915050565b600081359050612d3681614493565b92915050565b60008060408385031215612d4f57600080fd5b6000612d5d85828601612c16565b9250506020612d6e85828601612c16565b9150509250929050565b600080600080600060a08688031215612d9057600080fd5b6000612d9e88828901612c16565b9550506020612daf88828901612c16565b945050604086013567ffffffffffffffff811115612dcc57600080fd5b612dd888828901612c55565b935050606086013567ffffffffffffffff811115612df557600080fd5b612e0188828901612c55565b925050608086013567ffffffffffffffff811115612e1e57600080fd5b612e2a88828901612cd3565b9150509295509295909350565b600080600080600060a08688031215612e4f57600080fd5b6000612e5d88828901612c16565b9550506020612e6e88828901612c16565b9450506040612e7f88828901612d27565b9350506060612e9088828901612d27565b925050608086013567ffffffffffffffff811115612ead57600080fd5b612eb988828901612cd3565b9150509295509295909350565b60008060008060808587031215612edc57600080fd5b6000612eea87828801612c16565b945050602085013567ffffffffffffffff811115612f0757600080fd5b612f1387828801612c55565b935050604085013567ffffffffffffffff811115612f3057600080fd5b612f3c87828801612c55565b925050606085013567ffffffffffffffff811115612f5957600080fd5b612f6587828801612cd3565b91505092959194509250565b60008060408385031215612f8457600080fd5b6000612f9285828601612c16565b9250506020612fa385828601612c7f565b9150509250929050565b60008060408385031215612fc057600080fd5b6000612fce85828601612c16565b9250506020612fdf85828601612d27565b9150509250929050565b60008060008060808587031215612fff57600080fd5b600061300d87828801612c16565b945050602061301e87828801612d27565b935050604061302f87828801612d27565b925050606085013567ffffffffffffffff81111561304c57600080fd5b61305887828801612cd3565b91505092959194509250565b6000806040838503121561307757600080fd5b600083013567ffffffffffffffff81111561309157600080fd5b61309d85828601612c2b565b925050602083013567ffffffffffffffff8111156130ba57600080fd5b6130c685828601612c55565b9150509250929050565b6000602082840312156130e257600080fd5b60006130f084828501612c94565b91505092915050565b6000806040838503121561310c57600080fd5b600061311a85828601612c94565b925050602061312b85828601612c16565b9150509250929050565b60006020828403121561314757600080fd5b600061315584828501612ca9565b91505092915050565b60006020828403121561317057600080fd5b600061317e84828501612cbe565b91505092915050565b60006020828403121561319957600080fd5b600082013567ffffffffffffffff8111156131b357600080fd5b6131bf84828501612cfd565b91505092915050565b6000806000606084860312156131dd57600080fd5b600084013567ffffffffffffffff8111156131f757600080fd5b61320386828701612cfd565b935050602084013567ffffffffffffffff81111561322057600080fd5b61322c86828701612cfd565b925050604084013567ffffffffffffffff81111561324957600080fd5b61325586828701612c2b565b9150509250925092565b60006020828403121561327157600080fd5b600061327f84828501612d27565b91505092915050565b600061329483836132b8565b60208301905092915050565b60006132ac838361366f565b60208301905092915050565b6132c181613ca7565b82525050565b6132d081613ca7565b82525050565b60006132e182613b62565b6132eb8185613ba8565b93506132f683613b42565b8060005b8381101561332757815161330e8882613288565b975061331983613b8e565b9250506001810190506132fa565b5085935050505092915050565b600061333f82613b6d565b6133498185613bb9565b935061335483613b52565b8060005b8381101561338557815161336c88826132a0565b975061337783613b9b565b925050600181019050613358565b5085935050505092915050565b61339b81613cb9565b82525050565b6133aa81613cc5565b82525050565b60006133bb82613b78565b6133c58185613bca565b93506133d5818560208601613d59565b6133de81613f40565b840191505092915050565b6133f281613d38565b82525050565b600061340382613b83565b61340d8185613bdb565b935061341d818560208601613d59565b61342681613f40565b840191505092915050565b600061343c82613b83565b6134468185613bec565b9350613456818560208601613d59565b80840191505092915050565b600061346f603483613bdb565b915061347a82613f5e565b604082019050919050565b6000613492602f83613bdb565b915061349d82613fad565b604082019050919050565b60006134b5602083613bdb565b91506134c082613ffc565b602082019050919050565b60006134d8602883613bdb565b91506134e382614025565b604082019050919050565b60006134fb602a83613bdb565b915061350682614074565b604082019050919050565b600061351e602583613bdb565b9150613529826140c3565b604082019050919050565b6000613541602a83613bdb565b915061354c82614112565b604082019050919050565b6000613564602883613bdb565b915061356f82614161565b604082019050919050565b6000613587601783613bec565b9150613592826141b0565b601782019050919050565b60006135aa602983613bdb565b91506135b5826141d9565b604082019050919050565b60006135cd602983613bdb565b91506135d882614228565b604082019050919050565b60006135f0602883613bdb565b91506135fb82614277565b604082019050919050565b6000613613602183613bdb565b915061361e826142c6565b604082019050919050565b6000613636601183613bec565b915061364182614315565b601182019050919050565b6000613659602f83613bdb565b91506136648261433e565b604082019050919050565b61367881613d2e565b82525050565b61368781613d2e565b82525050565b60006136988261357a565b91506136a48285613431565b91506136af82613629565b91506136bb8284613431565b91508190509392505050565b600060a0820190506136dc60008301886132c7565b6136e960208301876132c7565b81810360408301526136fb8186613334565b9050818103606083015261370f8185613334565b9050818103608083015261372381846133b0565b90509695505050505050565b600060a08201905061374460008301886132c7565b61375160208301876132c7565b61375e604083018661367e565b61376b606083018561367e565b818103608083015261377d81846133b0565b90509695505050505050565b600060208201905081810360008301526137a38184613334565b905092915050565b600060408201905081810360008301526137c58185613334565b905081810360208301526137d98184613334565b90509392505050565b60006020820190506137f76000830184613392565b92915050565b600060208201905061381260008301846133a1565b92915050565b6000602082019050818103600083015261383281846133f8565b905092915050565b6000606082019050818103600083015261385481866133f8565b905061386360208301856133e9565b818103604083015261387581846132d6565b9050949350505050565b6000602082019050818103600083015261389881613462565b9050919050565b600060208201905081810360008301526138b881613485565b9050919050565b600060208201905081810360008301526138d8816134a8565b9050919050565b600060208201905081810360008301526138f8816134cb565b9050919050565b60006020820190508181036000830152613918816134ee565b9050919050565b6000602082019050818103600083015261393881613511565b9050919050565b6000602082019050818103600083015261395881613534565b9050919050565b6000602082019050818103600083015261397881613557565b9050919050565b600060208201905081810360008301526139988161359d565b9050919050565b600060208201905081810360008301526139b8816135c0565b9050919050565b600060208201905081810360008301526139d8816135e3565b9050919050565b600060208201905081810360008301526139f881613606565b9050919050565b60006020820190508181036000830152613a188161364c565b9050919050565b6000602082019050613a34600083018461367e565b92915050565b6000604082019050613a4f600083018561367e565b613a5c602083018461367e565b9392505050565b6000613a6d613a7e565b9050613a798282613de8565b919050565b6000604051905090565b600067ffffffffffffffff821115613aa357613aa2613eef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613acf57613ace613eef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613afb57613afa613eef565b5b613b0482613f40565b9050602081019050919050565b600067ffffffffffffffff821115613b2c57613b2b613eef565b5b613b3582613f40565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0282613d2e565b9150613c0d83613d2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4257613c41613e62565b5b828201905092915050565b6000613c5882613d2e565b9150613c6383613d2e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9c57613c9b613e62565b5b828202905092915050565b6000613cb282613d0e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d0982614423565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613d4382613cfb565b9050919050565b82818337600083830152505050565b60005b83811015613d77578082015181840152602081019050613d5c565b83811115613d86576000848401525b50505050565b6000613d9782613d2e565b91506000821415613dab57613daa613e62565b5b600182039050919050565b60006002820490506001821680613dce57607f821691505b60208210811415613de257613de1613ec0565b5b50919050565b613df182613f40565b810181811067ffffffffffffffff82111715613e1057613e0f613eef565b5b80604052505050565b6000613e2482613d2e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5757613e56613e62565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613f3d5760046000803e613f3a600051613f51565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment