Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MillionthOdin16/22add6dc6f77d06a9b096fdbcf6fd9a0 to your computer and use it in GitHub Desktop.
Save MillionthOdin16/22add6dc6f77d06a9b096fdbcf6fd9a0 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/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.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;
/**
* @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
*
* _Available since v4.5._
*/
interface IVotes {
/**
* @dev Emitted when an account changes their delegate.
*/
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/**
* @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
*/
event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);
/**
* @dev Returns the current amount of votes that `account` has.
*/
function getVotes(address account) external view returns (uint256);
/**
* @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
*/
function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);
/**
* @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
*
* NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
* Votes that have not been delegated are still part of total supply, even though they would not participate in a
* vote.
*/
function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);
/**
* @dev Returns the delegate that `account` has chosen.
*/
function delegates(address account) external view returns (address);
/**
* @dev Delegates votes from the sender to `delegatee`.
*/
function delegate(address delegatee) external;
/**
* @dev Delegates votes from signer to `delegatee`.
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol)
pragma solidity ^0.8.0;
import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private constant _PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
* However, to ensure consistency with the upgradeable transpiler, we will continue
* to reserve a slot.
* @custom:oz-renamed-from _PERMIT_TYPEHASH
*/
// solhint-disable-next-line var-name-mixedcase
bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @dev See {IERC20Permit-permit}.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual override {
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_approve(owner, spender, value);
}
/**
* @dev See {IERC20Permit-nonces}.
*/
function nonces(address owner) public view virtual override returns (uint256) {
return _nonces[owner].current();
}
/**
* @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
/**
* @dev "Consume a nonce": return the current value and increment.
*
* _Available since v4.1._
*/
function _useNonce(address owner) internal virtual returns (uint256 current) {
Counters.Counter storage nonce = _nonces[owner];
current = nonce.current();
nonce.increment();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20Snapshot.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Arrays.sol";
import "../../../utils/Counters.sol";
/**
* @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
* total supply at the time are recorded for later access.
*
* This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
* In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
* accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
* used to create an efficient ERC20 forking mechanism.
*
* Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
* snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
* id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
* and the account address.
*
* NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
* return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this
* function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
*
* Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
* alternative consider {ERC20Votes}.
*
* ==== Gas Costs
*
* Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
* n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
* smaller since identical balances in subsequent snapshots are stored as a single entry.
*
* There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
* only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
* transfers will have normal cost until the next snapshot, and so on.
*/
abstract contract ERC20Snapshot is ERC20 {
// Inspired by Jordi Baylina's MiniMeToken to record historical balances:
// https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol
using Arrays for uint256[];
using Counters for Counters.Counter;
// Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
// Snapshot struct, but that would impede usage of functions that work on an array.
struct Snapshots {
uint256[] ids;
uint256[] values;
}
mapping(address => Snapshots) private _accountBalanceSnapshots;
Snapshots private _totalSupplySnapshots;
// Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
Counters.Counter private _currentSnapshotId;
/**
* @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
*/
event Snapshot(uint256 id);
/**
* @dev Creates a new snapshot and returns its snapshot id.
*
* Emits a {Snapshot} event that contains the same id.
*
* {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
* set of accounts, for example using {AccessControl}, or it may be open to the public.
*
* [WARNING]
* ====
* While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
* you must consider that it can potentially be used by attackers in two ways.
*
* First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
* logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
* specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
* section above.
*
* We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
* ====
*/
function _snapshot() internal virtual returns (uint256) {
_currentSnapshotId.increment();
uint256 currentId = _getCurrentSnapshotId();
emit Snapshot(currentId);
return currentId;
}
/**
* @dev Get the current snapshotId
*/
function _getCurrentSnapshotId() internal view virtual returns (uint256) {
return _currentSnapshotId.current();
}
/**
* @dev Retrieves the balance of `account` at the time `snapshotId` was created.
*/
function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);
return snapshotted ? value : balanceOf(account);
}
/**
* @dev Retrieves the total supply at the time `snapshotId` was created.
*/
function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);
return snapshotted ? value : totalSupply();
}
// Update balance and/or total supply snapshots before the values are modified. This is implemented
// in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
if (from == address(0)) {
// mint
_updateAccountSnapshot(to);
_updateTotalSupplySnapshot();
} else if (to == address(0)) {
// burn
_updateAccountSnapshot(from);
_updateTotalSupplySnapshot();
} else {
// transfer
_updateAccountSnapshot(from);
_updateAccountSnapshot(to);
}
}
function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
require(snapshotId > 0, "ERC20Snapshot: id is 0");
require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");
// When a valid snapshot is queried, there are three possibilities:
// a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
// created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
// to this id is the current one.
// b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
// requested id, and its value is the one to return.
// c) More snapshots were created after the requested one, and the queried value was later modified. There will be
// no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
// larger than the requested one.
//
// In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
// it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
// exactly this.
uint256 index = snapshots.ids.findUpperBound(snapshotId);
if (index == snapshots.ids.length) {
return (false, 0);
} else {
return (true, snapshots.values[index]);
}
}
function _updateAccountSnapshot(address account) private {
_updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
}
function _updateTotalSupplySnapshot() private {
_updateSnapshot(_totalSupplySnapshots, totalSupply());
}
function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
uint256 currentId = _getCurrentSnapshotId();
if (_lastSnapshotId(snapshots.ids) < currentId) {
snapshots.ids.push(currentId);
snapshots.values.push(currentValue);
}
}
function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
if (ids.length == 0) {
return 0;
} else {
return ids[ids.length - 1];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol)
pragma solidity ^0.8.0;
import "./draft-ERC20Permit.sol";
import "../../../utils/math/Math.sol";
import "../../../governance/utils/IVotes.sol";
import "../../../utils/math/SafeCast.sol";
import "../../../utils/cryptography/ECDSA.sol";
/**
* @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
* and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
*
* NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
*
* This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
* by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
* power can be queried through the public accessors {getVotes} and {getPastVotes}.
*
* By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
* requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
*
* _Available since v4.2._
*/
abstract contract ERC20Votes is IVotes, ERC20Permit {
struct Checkpoint {
uint32 fromBlock;
uint224 votes;
}
bytes32 private constant _DELEGATION_TYPEHASH =
keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
mapping(address => address) private _delegates;
mapping(address => Checkpoint[]) private _checkpoints;
Checkpoint[] private _totalSupplyCheckpoints;
/**
* @dev Get the `pos`-th checkpoint for `account`.
*/
function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
return _checkpoints[account][pos];
}
/**
* @dev Get number of checkpoints for `account`.
*/
function numCheckpoints(address account) public view virtual returns (uint32) {
return SafeCast.toUint32(_checkpoints[account].length);
}
/**
* @dev Get the address `account` is currently delegating to.
*/
function delegates(address account) public view virtual override returns (address) {
return _delegates[account];
}
/**
* @dev Gets the current votes balance for `account`
*/
function getVotes(address account) public view virtual override returns (uint256) {
uint256 pos = _checkpoints[account].length;
return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
}
/**
* @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
*
* Requirements:
*
* - `blockNumber` must have been already mined
*/
function getPastVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) {
require(blockNumber < block.number, "ERC20Votes: block not yet mined");
return _checkpointsLookup(_checkpoints[account], blockNumber);
}
/**
* @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
* It is but NOT the sum of all the delegated votes!
*
* Requirements:
*
* - `blockNumber` must have been already mined
*/
function getPastTotalSupply(uint256 blockNumber) public view virtual override returns (uint256) {
require(blockNumber < block.number, "ERC20Votes: block not yet mined");
return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
}
/**
* @dev Lookup a value in a list of (sorted) checkpoints.
*/
function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
// We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
//
// During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
// With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
// - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
// - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
// Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
// out of bounds (in which case we're looking too far in the past and the result is 0).
// Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
// past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
// the same.
uint256 high = ckpts.length;
uint256 low = 0;
while (low < high) {
uint256 mid = Math.average(low, high);
if (ckpts[mid].fromBlock > blockNumber) {
high = mid;
} else {
low = mid + 1;
}
}
return high == 0 ? 0 : ckpts[high - 1].votes;
}
/**
* @dev Delegate votes from the sender to `delegatee`.
*/
function delegate(address delegatee) public virtual override {
_delegate(_msgSender(), delegatee);
}
/**
* @dev Delegates votes from signer to `delegatee`
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) public virtual override {
require(block.timestamp <= expiry, "ERC20Votes: signature expired");
address signer = ECDSA.recover(
_hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
v,
r,
s
);
require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
_delegate(signer, delegatee);
}
/**
* @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
*/
function _maxSupply() internal view virtual returns (uint224) {
return type(uint224).max;
}
/**
* @dev Snapshots the totalSupply after it has been increased.
*/
function _mint(address account, uint256 amount) internal virtual override {
super._mint(account, amount);
require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");
_writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
}
/**
* @dev Snapshots the totalSupply after it has been decreased.
*/
function _burn(address account, uint256 amount) internal virtual override {
super._burn(account, amount);
_writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
}
/**
* @dev Move voting power when tokens are transferred.
*
* Emits a {DelegateVotesChanged} event.
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._afterTokenTransfer(from, to, amount);
_moveVotingPower(delegates(from), delegates(to), amount);
}
/**
* @dev Change delegation for `delegator` to `delegatee`.
*
* Emits events {DelegateChanged} and {DelegateVotesChanged}.
*/
function _delegate(address delegator, address delegatee) internal virtual {
address currentDelegate = delegates(delegator);
uint256 delegatorBalance = balanceOf(delegator);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveVotingPower(currentDelegate, delegatee, delegatorBalance);
}
function _moveVotingPower(
address src,
address dst,
uint256 amount
) private {
if (src != dst && amount > 0) {
if (src != address(0)) {
(uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
emit DelegateVotesChanged(src, oldWeight, newWeight);
}
if (dst != address(0)) {
(uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
emit DelegateVotesChanged(dst, oldWeight, newWeight);
}
}
}
function _writeCheckpoint(
Checkpoint[] storage ckpts,
function(uint256, uint256) view returns (uint256) op,
uint256 delta
) private returns (uint256 oldWeight, uint256 newWeight) {
uint256 pos = ckpts.length;
oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
newWeight = op(oldWeight, delta);
if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
} else {
ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
}
}
function _add(uint256 a, uint256 b) private pure returns (uint256) {
return a + b;
}
function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
return a - b;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev Collection of functions related to array types.
*/
library Arrays {
/**
* @dev Searches a sorted `array` and returns the first index that contains
* a value greater or equal to `element`. If no such index exists (i.e. all
* values in the array are strictly less than `element`), the array length is
* returned. Time complexity O(log n).
*
* `array` is expected to be sorted in ascending order, and to contain no
* repeated elements.
*/
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
if (array.length == 0) {
return 0;
}
uint256 low = 0;
uint256 high = array.length;
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds down (it does integer division with truncation).
if (array[mid] > element) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
if (low > 0 && array[low - 1] == element) {
return low - 1;
} else {
return low;
}
}
}
// 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/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)
pragma solidity ^0.8.0;
import "./ECDSA.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712 {
/* solhint-disable var-name-mixedcase */
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
uint256 private immutable _CACHED_CHAIN_ID;
address private immutable _CACHED_THIS;
bytes32 private immutable _HASHED_NAME;
bytes32 private immutable _HASHED_VERSION;
bytes32 private immutable _TYPE_HASH;
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
bytes32 typeHash = keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
);
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
_CACHED_CHAIN_ID = block.chainid;
_CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
_CACHED_THIS = address(this);
_TYPE_HASH = typeHash;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
return _CACHED_DOMAIN_SEPARATOR;
} else {
return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
}
}
function _buildDomainSeparator(
bytes32 typeHash,
bytes32 nameHash,
bytes32 versionHash
) private view returns (bytes32) {
return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`.
// We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
// This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
// Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
// good first aproximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1;
uint256 x = a;
if (x >> 128 > 0) {
x >>= 128;
result <<= 64;
}
if (x >> 64 > 0) {
x >>= 64;
result <<= 32;
}
if (x >> 32 > 0) {
x >>= 32;
result <<= 16;
}
if (x >> 16 > 0) {
x >>= 16;
result <<= 8;
}
if (x >> 8 > 0) {
x >>= 8;
result <<= 4;
}
if (x >> 4 > 0) {
x >>= 4;
result <<= 2;
}
if (x >> 2 > 0) {
result <<= 1;
}
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
uint256 result = sqrt(a);
if (rounding == Rounding.Up && result * result < a) {
result += 1;
}
return result;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/SafeCast.sol)
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toUint248(uint256 value) internal pure returns (uint248) {
require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toUint240(uint256 value) internal pure returns (uint240) {
require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toUint232(uint256 value) internal pure returns (uint232) {
require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.2._
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toUint216(uint256 value) internal pure returns (uint216) {
require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toUint208(uint256 value) internal pure returns (uint208) {
require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toUint200(uint256 value) internal pure returns (uint200) {
require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toUint192(uint256 value) internal pure returns (uint192) {
require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toUint184(uint256 value) internal pure returns (uint184) {
require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toUint176(uint256 value) internal pure returns (uint176) {
require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toUint168(uint256 value) internal pure returns (uint168) {
require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toUint160(uint256 value) internal pure returns (uint160) {
require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toUint152(uint256 value) internal pure returns (uint152) {
require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toUint144(uint256 value) internal pure returns (uint144) {
require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toUint136(uint256 value) internal pure returns (uint136) {
require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v2.5._
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toUint120(uint256 value) internal pure returns (uint120) {
require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toUint112(uint256 value) internal pure returns (uint112) {
require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toUint104(uint256 value) internal pure returns (uint104) {
require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.2._
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toUint88(uint256 value) internal pure returns (uint88) {
require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toUint80(uint256 value) internal pure returns (uint80) {
require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toUint72(uint256 value) internal pure returns (uint72) {
require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v2.5._
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toUint56(uint256 value) internal pure returns (uint56) {
require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toUint48(uint256 value) internal pure returns (uint48) {
require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toUint40(uint256 value) internal pure returns (uint40) {
require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v2.5._
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toUint24(uint256 value) internal pure returns (uint24) {
require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v2.5._
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v2.5._
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*
* _Available since v3.0._
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toInt248(int256 value) internal pure returns (int248) {
require(value >= type(int248).min && value <= type(int248).max, "SafeCast: value doesn't fit in 248 bits");
return int248(value);
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toInt240(int256 value) internal pure returns (int240) {
require(value >= type(int240).min && value <= type(int240).max, "SafeCast: value doesn't fit in 240 bits");
return int240(value);
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toInt232(int256 value) internal pure returns (int232) {
require(value >= type(int232).min && value <= type(int232).max, "SafeCast: value doesn't fit in 232 bits");
return int232(value);
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.7._
*/
function toInt224(int256 value) internal pure returns (int224) {
require(value >= type(int224).min && value <= type(int224).max, "SafeCast: value doesn't fit in 224 bits");
return int224(value);
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toInt216(int256 value) internal pure returns (int216) {
require(value >= type(int216).min && value <= type(int216).max, "SafeCast: value doesn't fit in 216 bits");
return int216(value);
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toInt208(int256 value) internal pure returns (int208) {
require(value >= type(int208).min && value <= type(int208).max, "SafeCast: value doesn't fit in 208 bits");
return int208(value);
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toInt200(int256 value) internal pure returns (int200) {
require(value >= type(int200).min && value <= type(int200).max, "SafeCast: value doesn't fit in 200 bits");
return int200(value);
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toInt192(int256 value) internal pure returns (int192) {
require(value >= type(int192).min && value <= type(int192).max, "SafeCast: value doesn't fit in 192 bits");
return int192(value);
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toInt184(int256 value) internal pure returns (int184) {
require(value >= type(int184).min && value <= type(int184).max, "SafeCast: value doesn't fit in 184 bits");
return int184(value);
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toInt176(int256 value) internal pure returns (int176) {
require(value >= type(int176).min && value <= type(int176).max, "SafeCast: value doesn't fit in 176 bits");
return int176(value);
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toInt168(int256 value) internal pure returns (int168) {
require(value >= type(int168).min && value <= type(int168).max, "SafeCast: value doesn't fit in 168 bits");
return int168(value);
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toInt160(int256 value) internal pure returns (int160) {
require(value >= type(int160).min && value <= type(int160).max, "SafeCast: value doesn't fit in 160 bits");
return int160(value);
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toInt152(int256 value) internal pure returns (int152) {
require(value >= type(int152).min && value <= type(int152).max, "SafeCast: value doesn't fit in 152 bits");
return int152(value);
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toInt144(int256 value) internal pure returns (int144) {
require(value >= type(int144).min && value <= type(int144).max, "SafeCast: value doesn't fit in 144 bits");
return int144(value);
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toInt136(int256 value) internal pure returns (int136) {
require(value >= type(int136).min && value <= type(int136).max, "SafeCast: value doesn't fit in 136 bits");
return int136(value);
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128) {
require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
return int128(value);
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toInt120(int256 value) internal pure returns (int120) {
require(value >= type(int120).min && value <= type(int120).max, "SafeCast: value doesn't fit in 120 bits");
return int120(value);
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toInt112(int256 value) internal pure returns (int112) {
require(value >= type(int112).min && value <= type(int112).max, "SafeCast: value doesn't fit in 112 bits");
return int112(value);
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toInt104(int256 value) internal pure returns (int104) {
require(value >= type(int104).min && value <= type(int104).max, "SafeCast: value doesn't fit in 104 bits");
return int104(value);
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.7._
*/
function toInt96(int256 value) internal pure returns (int96) {
require(value >= type(int96).min && value <= type(int96).max, "SafeCast: value doesn't fit in 96 bits");
return int96(value);
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toInt88(int256 value) internal pure returns (int88) {
require(value >= type(int88).min && value <= type(int88).max, "SafeCast: value doesn't fit in 88 bits");
return int88(value);
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toInt80(int256 value) internal pure returns (int80) {
require(value >= type(int80).min && value <= type(int80).max, "SafeCast: value doesn't fit in 80 bits");
return int80(value);
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toInt72(int256 value) internal pure returns (int72) {
require(value >= type(int72).min && value <= type(int72).max, "SafeCast: value doesn't fit in 72 bits");
return int72(value);
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64) {
require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
return int64(value);
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toInt56(int256 value) internal pure returns (int56) {
require(value >= type(int56).min && value <= type(int56).max, "SafeCast: value doesn't fit in 56 bits");
return int56(value);
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toInt48(int256 value) internal pure returns (int48) {
require(value >= type(int48).min && value <= type(int48).max, "SafeCast: value doesn't fit in 48 bits");
return int48(value);
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toInt40(int256 value) internal pure returns (int40) {
require(value >= type(int40).min && value <= type(int40).max, "SafeCast: value doesn't fit in 40 bits");
return int40(value);
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32) {
require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
return int32(value);
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toInt24(int256 value) internal pure returns (int24) {
require(value >= type(int24).min && value <= type(int24).max, "SafeCast: value doesn't fit in 24 bits");
return int24(value);
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16) {
require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
return int16(value);
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8) {
require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
return int8(value);
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*
* _Available since v3.0._
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}
// 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);
}
}
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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_2038": {
"entryPoint": null,
"id": 2038,
"parameterSlots": 1,
"returnSlots": 0
},
"@_217": {
"entryPoint": null,
"id": 217,
"parameterSlots": 0,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_3099": {
"entryPoint": null,
"id": 3099,
"parameterSlots": 2,
"returnSlots": 0
},
"@_343": {
"entryPoint": null,
"id": 343,
"parameterSlots": 2,
"returnSlots": 0
},
"@_5573": {
"entryPoint": null,
"id": 5573,
"parameterSlots": 0,
"returnSlots": 0
},
"@_add_1956": {
"entryPoint": 1513,
"id": 1956,
"parameterSlots": 2,
"returnSlots": 1
},
"@_afterTokenTransfer_1738": {
"entryPoint": 2832,
"id": 1738,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_5659": {
"entryPoint": 2271,
"id": 5659,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_883": {
"entryPoint": 3075,
"id": 883,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1190": {
"entryPoint": 2581,
"id": 1190,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_5638": {
"entryPoint": 2226,
"id": 5638,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_872": {
"entryPoint": 2935,
"id": 872,
"parameterSlots": 3,
"returnSlots": 0
},
"@_buildDomainSeparator_3155": {
"entryPoint": 804,
"id": 3155,
"parameterSlots": 3,
"returnSlots": 1
},
"@_getCurrentSnapshotId_1079": {
"entryPoint": 3968,
"id": 1079,
"parameterSlots": 0,
"returnSlots": 1
},
"@_lastSnapshotId_1333": {
"entryPoint": 3998,
"id": 1333,
"parameterSlots": 1,
"returnSlots": 1
},
"@_maxSupply_1653": {
"entryPoint": 1467,
"id": 1653,
"parameterSlots": 0,
"returnSlots": 1
},
"@_mint_1685": {
"entryPoint": 900,
"id": 1685,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_5677": {
"entryPoint": 873,
"id": 5677,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_701": {
"entryPoint": 1090,
"id": 701,
"parameterSlots": 2,
"returnSlots": 0
},
"@_moveVotingPower_1848": {
"entryPoint": 3185,
"id": 1848,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_2301": {
"entryPoint": 598,
"id": 2301,
"parameterSlots": 0,
"returnSlots": 1
},
"@_requireNotPaused_254": {
"entryPoint": 2496,
"id": 254,
"parameterSlots": 0,
"returnSlots": 0
},
"@_subtract_1970": {
"entryPoint": 3944,
"id": 1970,
"parameterSlots": 2,
"returnSlots": 1
},
"@_transferOwnership_111": {
"entryPoint": 606,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_updateAccountSnapshot_1260": {
"entryPoint": 2940,
"id": 1260,
"parameterSlots": 1,
"returnSlots": 0
},
"@_updateSnapshot_1308": {
"entryPoint": 3804,
"id": 1308,
"parameterSlots": 2,
"returnSlots": 0
},
"@_updateTotalSupplySnapshot_1270": {
"entryPoint": 3039,
"id": 1270,
"parameterSlots": 0,
"returnSlots": 0
},
"@_writeCheckpoint_1942": {
"entryPoint": 1537,
"id": 1942,
"parameterSlots": 3,
"returnSlots": 2
},
"@balanceOf_397": {
"entryPoint": 3732,
"id": 397,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_2329": {
"entryPoint": 4082,
"id": 2329,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_373": {
"entryPoint": 864,
"id": 373,
"parameterSlots": 0,
"returnSlots": 1
},
"@delegates_1419": {
"entryPoint": 3080,
"id": 1419,
"parameterSlots": 1,
"returnSlots": 1
},
"@paused_242": {
"entryPoint": 2912,
"id": 242,
"parameterSlots": 0,
"returnSlots": 1
},
"@toUint224_3779": {
"entryPoint": 2300,
"id": 3779,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUint32_4379": {
"entryPoint": 2410,
"id": 4379,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_383": {
"entryPoint": 1503,
"id": 383,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4272,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 4289,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4306,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4345,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4384,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4423,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4462,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 4501,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": 4518,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4645,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4679,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4713,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4747,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4781,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 4810,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4855,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4872,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 4965,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 5056,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 5137,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 5373,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 5470,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 5529,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 5549,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 5559,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 5591,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 5601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 5614,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5668,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 5715,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 5762,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_right_1_unsigned": {
"entryPoint": 5809,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 5822,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699": {
"entryPoint": 5863,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79": {
"entryPoint": 5942,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19": {
"entryPoint": 6021,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 6100,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11401:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:20"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:20"
},
"nodeType": "YulFunctionCall",
"src": "94:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:20"
},
"nodeType": "YulFunctionCall",
"src": "82:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:20"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:20",
"type": ""
}
],
"src": "7:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "196:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "213:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "236:5:20"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "218:17:20"
},
"nodeType": "YulFunctionCall",
"src": "218:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "206:6:20"
},
"nodeType": "YulFunctionCall",
"src": "206:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "206:37:20"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "184:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "191:3:20",
"type": ""
}
],
"src": "131:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "401:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "411:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "477:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:2:20",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "418:58:20"
},
"nodeType": "YulFunctionCall",
"src": "418:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "411:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "583:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "494:88:20"
},
"nodeType": "YulFunctionCall",
"src": "494:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "494:93:20"
},
{
"nodeType": "YulAssignment",
"src": "596:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "607:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "603:3:20"
},
"nodeType": "YulFunctionCall",
"src": "603:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "596:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "389:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "397:3:20",
"type": ""
}
],
"src": "255:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "773:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "783:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "849:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:2:20",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "790:58:20"
},
"nodeType": "YulFunctionCall",
"src": "790:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "783:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "955:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699",
"nodeType": "YulIdentifier",
"src": "866:88:20"
},
"nodeType": "YulFunctionCall",
"src": "866:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "866:93:20"
},
{
"nodeType": "YulAssignment",
"src": "968:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "979:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "984:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "975:3:20"
},
"nodeType": "YulFunctionCall",
"src": "975:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "968:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "761:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "769:3:20",
"type": ""
}
],
"src": "627:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1145:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1155:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1221:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1226:2:20",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1162:58:20"
},
"nodeType": "YulFunctionCall",
"src": "1162:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1155:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1327:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
"nodeType": "YulIdentifier",
"src": "1238:88:20"
},
"nodeType": "YulFunctionCall",
"src": "1238:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "1238:93:20"
},
{
"nodeType": "YulAssignment",
"src": "1340:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1351:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1356:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1347:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1347:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1340:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1133:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1141:3:20",
"type": ""
}
],
"src": "999:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1517:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1527:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1593:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1598:2:20",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1534:58:20"
},
"nodeType": "YulFunctionCall",
"src": "1534:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1527:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1699:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
"nodeType": "YulIdentifier",
"src": "1610:88:20"
},
"nodeType": "YulFunctionCall",
"src": "1610:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "1610:93:20"
},
{
"nodeType": "YulAssignment",
"src": "1712:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1723:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1728:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1719:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1712:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1505:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1513:3:20",
"type": ""
}
],
"src": "1371:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1889:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1899:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1965:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1970:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1906:58:20"
},
"nodeType": "YulFunctionCall",
"src": "1906:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1899:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2071:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "1982:88:20"
},
"nodeType": "YulFunctionCall",
"src": "1982:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "1982:93:20"
},
{
"nodeType": "YulAssignment",
"src": "2084:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2095:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2100:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2091:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2091:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2084:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1877:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1885:3:20",
"type": ""
}
],
"src": "1743:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2180:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2197:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2220:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2202:17:20"
},
"nodeType": "YulFunctionCall",
"src": "2202:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2190:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2190:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "2190:37:20"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2168:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2175:3:20",
"type": ""
}
],
"src": "2115:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2449:454:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2459:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2471:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2482:3:20",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2467:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2467:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2459:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2540:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2553:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2564:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2549:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "2496:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2496:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "2496:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2621:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2634:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2645:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2630:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2630:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "2577:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2577:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "2577:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2703:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2716:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2727:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2712:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2712:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "2659:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2659:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "2659:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2785:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2798:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2809:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2794:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2794:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2741:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2741:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "2741:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2867:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2880:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2891:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2876:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2876:19:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2823:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2823:73:20"
},
"nodeType": "YulExpressionStatement",
"src": "2823:73:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2389:9:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "2401:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2409:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2417:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2425:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2433:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2444:4:20",
"type": ""
}
],
"src": "2239:664:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3080:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3090:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3102:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3113:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3098:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3098:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3090:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3137:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3148:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3133:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3133:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3156:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3162:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3152:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3152:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3126:6:20"
},
"nodeType": "YulFunctionCall",
"src": "3126:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "3126:47:20"
},
{
"nodeType": "YulAssignment",
"src": "3182:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3316:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3190:124:20"
},
"nodeType": "YulFunctionCall",
"src": "3190:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3182:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3060:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3075:4:20",
"type": ""
}
],
"src": "2909:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3505:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3515:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3527:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3538:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3523:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3523:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3515:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3562:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3573:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3558:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3558:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3581:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3587:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3577:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3577:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3551:6:20"
},
"nodeType": "YulFunctionCall",
"src": "3551:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "3551:47:20"
},
{
"nodeType": "YulAssignment",
"src": "3607:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3741:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3615:124:20"
},
"nodeType": "YulFunctionCall",
"src": "3615:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3607:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3485:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3500:4:20",
"type": ""
}
],
"src": "3334:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3930:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3940:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3952:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3963:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3948:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3948:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3940:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3987:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3998:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3983:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3983:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4006:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4012:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4002:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4002:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3976:6:20"
},
"nodeType": "YulFunctionCall",
"src": "3976:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "3976:47:20"
},
{
"nodeType": "YulAssignment",
"src": "4032:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4166:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4040:124:20"
},
"nodeType": "YulFunctionCall",
"src": "4040:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4032:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3910:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3925:4:20",
"type": ""
}
],
"src": "3759:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4355:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4365:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4377:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4388:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4373:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4373:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4365:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4412:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4423:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4408:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4408:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4431:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4437:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4427:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4427:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4401:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4401:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "4401:47:20"
},
{
"nodeType": "YulAssignment",
"src": "4457:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4591:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4465:124:20"
},
"nodeType": "YulFunctionCall",
"src": "4465:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4457:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4335:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4350:4:20",
"type": ""
}
],
"src": "4184:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4780:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4790:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4802:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4813:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4798:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4798:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4790:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4837:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4848:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4833:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4833:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4856:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4862:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4852:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4852:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4826:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4826:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "4826:47:20"
},
{
"nodeType": "YulAssignment",
"src": "4882:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5016:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4890:124:20"
},
"nodeType": "YulFunctionCall",
"src": "4890:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4882:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4760:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4775:4:20",
"type": ""
}
],
"src": "4609:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5132:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5142:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5154:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5165:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5150:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5150:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5142:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5222:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5235:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5246:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5231:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5231:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5178:43:20"
},
"nodeType": "YulFunctionCall",
"src": "5178:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "5178:71:20"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5104:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5116:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5127:4:20",
"type": ""
}
],
"src": "5034:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5388:206:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5398:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5410:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5421:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5406:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5398:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5478:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5491:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5502:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5487:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5487:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5434:43:20"
},
"nodeType": "YulFunctionCall",
"src": "5434:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "5434:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5559:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5572:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5583:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5568:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5568:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5515:43:20"
},
"nodeType": "YulFunctionCall",
"src": "5515:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "5515:72:20"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5352:9:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5364:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5372:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5383:4:20",
"type": ""
}
],
"src": "5262:332:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5696:73:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5713:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5718:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5706:6:20"
},
"nodeType": "YulFunctionCall",
"src": "5706:19:20"
},
"nodeType": "YulExpressionStatement",
"src": "5706:19:20"
},
{
"nodeType": "YulAssignment",
"src": "5734:29:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5753:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5758:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5749:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5749:14:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5734:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5668:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5673:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5684:11:20",
"type": ""
}
],
"src": "5600:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5819:261:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5829:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5852:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5834:17:20"
},
"nodeType": "YulFunctionCall",
"src": "5834:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5829:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5863:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5886:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5868:17:20"
},
"nodeType": "YulFunctionCall",
"src": "5868:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5863:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6026:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6028:16:20"
},
"nodeType": "YulFunctionCall",
"src": "6028:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "6028:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5947:1:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5954:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6022:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5950:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5950:74:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5944:2:20"
},
"nodeType": "YulFunctionCall",
"src": "5944:81:20"
},
"nodeType": "YulIf",
"src": "5941:107:20"
},
{
"nodeType": "YulAssignment",
"src": "6058:16:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6069:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6072:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6065:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6065:9:20"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6058:3:20"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5806:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5809:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5815:3:20",
"type": ""
}
],
"src": "5775:305:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6159:775:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6169:15:20",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "6178:6:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6169:5:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6193:14:20",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "6202:5:20"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6193:4:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6251:677:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6339:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6341:16:20"
},
"nodeType": "YulFunctionCall",
"src": "6341:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "6341:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6317:4:20"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "6327:3:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6332:4:20"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6323:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6323:14:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6314:2:20"
},
"nodeType": "YulFunctionCall",
"src": "6314:24:20"
},
"nodeType": "YulIf",
"src": "6311:50:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6406:419:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6786:25:20",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6799:5:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6806:4:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6795:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6795:16:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6786:5:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6381:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6391:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6377:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6377:16:20"
},
"nodeType": "YulIf",
"src": "6374:451:20"
},
{
"nodeType": "YulAssignment",
"src": "6838:23:20",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6850:4:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6856:4:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6846:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6846:15:20"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6838:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6874:44:20",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6909:8:20"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "6886:22:20"
},
"nodeType": "YulFunctionCall",
"src": "6886:32:20"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6874:8:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6227:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6237:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6224:2:20"
},
"nodeType": "YulFunctionCall",
"src": "6224:15:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6240:2:20",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "6220:3:20",
"statements": []
},
"src": "6216:712:20"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "6114:6:20",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "6122:5:20",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "6129:8:20",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "6139:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "6147:5:20",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "6154:4:20",
"type": ""
}
],
"src": "6086:848:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7004:217:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7014:31:20",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7040:4:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7022:17:20"
},
"nodeType": "YulFunctionCall",
"src": "7022:23:20"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7014:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7054:37:20",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7082:8:20"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7066:15:20"
},
"nodeType": "YulFunctionCall",
"src": "7066:25:20"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7054:8:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7101:113:20",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7131:4:20"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7137:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7147:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "7110:20:20"
},
"nodeType": "YulFunctionCall",
"src": "7110:104:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7101:5:20"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "6979:4:20",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "6985:8:20",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "6998:5:20",
"type": ""
}
],
"src": "6940:281:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7287:1013:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7482:20:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7484:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7493:1:20",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7484:5:20"
}
]
},
{
"nodeType": "YulLeave",
"src": "7495:5:20"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7472:8:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7465:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7465:16:20"
},
"nodeType": "YulIf",
"src": "7462:40:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7527:20:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7529:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7538:1:20",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7529:5:20"
}
]
},
{
"nodeType": "YulLeave",
"src": "7540:5:20"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7521:4:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7514:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7514:12:20"
},
"nodeType": "YulIf",
"src": "7511:36:20"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "7657:20:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7659:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7668:1:20",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7659:5:20"
}
]
},
{
"nodeType": "YulLeave",
"src": "7670:5:20"
}
]
},
"nodeType": "YulCase",
"src": "7650:27:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7655:1:20",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "7701:176:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7736:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7738:16:20"
},
"nodeType": "YulFunctionCall",
"src": "7738:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "7738:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7721:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7731:3:20",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7718:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7718:17:20"
},
"nodeType": "YulIf",
"src": "7715:43:20"
},
{
"nodeType": "YulAssignment",
"src": "7771:25:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7784:1:20",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7787:8:20"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "7780:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7780:16:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7771:5:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7827:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7829:16:20"
},
"nodeType": "YulFunctionCall",
"src": "7829:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "7829:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7815:5:20"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "7822:3:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7812:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7812:14:20"
},
"nodeType": "YulIf",
"src": "7809:40:20"
},
{
"nodeType": "YulLeave",
"src": "7862:5:20"
}
]
},
"nodeType": "YulCase",
"src": "7686:191:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7691:1:20",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "7607:4:20"
},
"nodeType": "YulSwitch",
"src": "7600:277:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8009:123:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8023:28:20",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "8036:4:20"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "8042:8:20"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "8032:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8032:19:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8023:5:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8082:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8084:16:20"
},
"nodeType": "YulFunctionCall",
"src": "8084:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "8084:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8070:5:20"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "8077:3:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8067:2:20"
},
"nodeType": "YulFunctionCall",
"src": "8067:14:20"
},
"nodeType": "YulIf",
"src": "8064:40:20"
},
{
"nodeType": "YulLeave",
"src": "8117:5:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7912:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7918:2:20",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7909:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7909:12:20"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7926:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7936:2:20",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7923:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7923:16:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7905:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7905:35:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7961:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7967:3:20",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7958:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7958:13:20"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7976:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7986:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7973:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7973:16:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7954:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7954:36:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7889:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7889:111:20"
},
"nodeType": "YulIf",
"src": "7886:246:20"
},
{
"nodeType": "YulAssignment",
"src": "8142:57:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8176:1:20",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "8179:4:20"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "8185:8:20"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "8195:3:20"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "8157:18:20"
},
"nodeType": "YulFunctionCall",
"src": "8157:42:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8142:5:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "8149:4:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8238:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8240:16:20"
},
"nodeType": "YulFunctionCall",
"src": "8240:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "8240:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8215:5:20"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "8226:3:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "8231:4:20"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8222:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8222:14:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8212:2:20"
},
"nodeType": "YulFunctionCall",
"src": "8212:25:20"
},
"nodeType": "YulIf",
"src": "8209:51:20"
},
{
"nodeType": "YulAssignment",
"src": "8269:25:20",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8282:5:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "8289:4:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8278:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8278:16:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "8269:5:20"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "7257:4:20",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "7263:8:20",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "7273:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "7281:5:20",
"type": ""
}
],
"src": "7227:1073:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8354:300:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8364:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8387:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8369:17:20"
},
"nodeType": "YulFunctionCall",
"src": "8369:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8364:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8398:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8421:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8403:17:20"
},
"nodeType": "YulFunctionCall",
"src": "8403:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8398:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8596:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8598:16:20"
},
"nodeType": "YulFunctionCall",
"src": "8598:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "8598:18:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8508:1:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8501:6:20"
},
"nodeType": "YulFunctionCall",
"src": "8501:9:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8494:6:20"
},
"nodeType": "YulFunctionCall",
"src": "8494:17:20"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8516:1:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8523:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8591:1:20"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8519:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8519:74:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8513:2:20"
},
"nodeType": "YulFunctionCall",
"src": "8513:81:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8490:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8490:105:20"
},
"nodeType": "YulIf",
"src": "8487:131:20"
},
{
"nodeType": "YulAssignment",
"src": "8628:20:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8643:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8646:1:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8639:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8639:9:20"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8628:7:20"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8337:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8340:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "8346:7:20",
"type": ""
}
],
"src": "8306:348:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8705:146:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8715:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8738:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8720:17:20"
},
"nodeType": "YulFunctionCall",
"src": "8720:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8715:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8749:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8772:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8754:17:20"
},
"nodeType": "YulFunctionCall",
"src": "8754:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8749:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8796:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8798:16:20"
},
"nodeType": "YulFunctionCall",
"src": "8798:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "8798:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8790:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8793:1:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8787:2:20"
},
"nodeType": "YulFunctionCall",
"src": "8787:8:20"
},
"nodeType": "YulIf",
"src": "8784:34:20"
},
{
"nodeType": "YulAssignment",
"src": "8828:17:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8840:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8843:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8836:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8836:9:20"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "8828:4:20"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8691:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8694:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "8700:4:20",
"type": ""
}
],
"src": "8660:191:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8902:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8912:35:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8941:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "8923:17:20"
},
"nodeType": "YulFunctionCall",
"src": "8923:24:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "8912:7:20"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8884:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "8894:7:20",
"type": ""
}
],
"src": "8857:96:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9004:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9014:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "9025:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9014:7:20"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8986:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "8996:7:20",
"type": ""
}
],
"src": "8959:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9087:81:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9097:65:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9112:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9119:42:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9108:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9108:54:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9097:7:20"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9069:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9079:7:20",
"type": ""
}
],
"src": "9042:126:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9219:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9229:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "9240:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9229:7:20"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9201:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9211:7:20",
"type": ""
}
],
"src": "9174:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9300:43:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9310:27:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9325:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9332:4:20",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9321:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9321:16:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9310:7:20"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9282:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9292:7:20",
"type": ""
}
],
"src": "9257:86:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9400:269:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9410:22:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9424:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9430:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "9420:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9420:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9410:6:20"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9441:38:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9471:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9477:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9467:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9467:12:20"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "9445:18:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9518:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9532:27:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9546:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9554:4:20",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9542:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9542:17:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9532:6:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "9498:18:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9491:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9491:26:20"
},
"nodeType": "YulIf",
"src": "9488:81:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9621:42:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "9635:16:20"
},
"nodeType": "YulFunctionCall",
"src": "9635:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "9635:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "9585:18:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9608:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9616:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9605:2:20"
},
"nodeType": "YulFunctionCall",
"src": "9605:14:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "9582:2:20"
},
"nodeType": "YulFunctionCall",
"src": "9582:38:20"
},
"nodeType": "YulIf",
"src": "9579:84:20"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9384:4:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9393:6:20",
"type": ""
}
],
"src": "9349:320:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9703:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9720:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9723:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9713:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9713:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "9713:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9817:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9820:4:20",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9810:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9810:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "9810:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9841:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9844:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9834:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9834:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "9834:15:20"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "9675:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9889:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9906:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9909:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9899:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9899:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "9899:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10003:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10006:4:20",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9996:6:20"
},
"nodeType": "YulFunctionCall",
"src": "9996:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "9996:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10027:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10030:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10020:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10020:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "10020:15:20"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "9861:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10075:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10092:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10095:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10085:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10085:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "10085:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10189:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10192:4:20",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10182:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10182:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "10182:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10213:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10216:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10206:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10206:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "10206:15:20"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "10047:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10284:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10294:34:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10319:1:20",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10322:5:20"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "10315:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10315:13:20"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "10294:8:20"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10265:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "10275:8:20",
"type": ""
}
],
"src": "10233:102:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10447:60:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10469:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10477:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10465:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10465:14:20"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10481:18:20",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10458:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10458:42:20"
},
"nodeType": "YulExpressionStatement",
"src": "10458:42:20"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10439:6:20",
"type": ""
}
],
"src": "10341:166:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10619:129:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10641:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10649:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10637:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10637:14:20"
},
{
"hexValue": "4552433230566f7465733a20746f74616c20737570706c79207269736b73206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10653:34:20",
"type": "",
"value": "ERC20Votes: total supply risks o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10630:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10630:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "10630:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10709:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10717:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10705:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10705:15:20"
},
{
"hexValue": "766572666c6f77696e6720766f746573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10722:18:20",
"type": "",
"value": "verflowing votes"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10698:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10698:43:20"
},
"nodeType": "YulExpressionStatement",
"src": "10698:43:20"
}
]
},
"name": "store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10611:6:20",
"type": ""
}
],
"src": "10513:235:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10860:120:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10882:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10890:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10878:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10878:14:20"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10894:34:20",
"type": "",
"value": "SafeCast: value doesn't fit in 2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10871:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10871:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "10871:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10950:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10958:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10946:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10946:15:20"
},
{
"hexValue": "32342062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10963:9:20",
"type": "",
"value": "24 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10939:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10939:34:20"
},
"nodeType": "YulExpressionStatement",
"src": "10939:34:20"
}
]
},
"name": "store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10852:6:20",
"type": ""
}
],
"src": "10754:226:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11092:119:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11114:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11122:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11110:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11110:14:20"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11126:34:20",
"type": "",
"value": "SafeCast: value doesn't fit in 3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11103:6:20"
},
"nodeType": "YulFunctionCall",
"src": "11103:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "11103:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11182:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11190:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11178:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11178:15:20"
},
{
"hexValue": "322062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11195:8:20",
"type": "",
"value": "2 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11171:6:20"
},
"nodeType": "YulFunctionCall",
"src": "11171:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "11171:33:20"
}
]
},
"name": "store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11084:6:20",
"type": ""
}
],
"src": "10986:225:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11323:75:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11345:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11353:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11341:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11341:14:20"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11357:33:20",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11334:6:20"
},
"nodeType": "YulFunctionCall",
"src": "11334:57:20"
},
"nodeType": "YulExpressionStatement",
"src": "11334:57:20"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11315:6:20",
"type": ""
}
],
"src": "11217:181:20"
}
]
},
"contents": "{\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\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_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__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_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__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_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__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_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_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 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 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_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\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 checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := 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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20Votes: total supply risks o\")\n\n mstore(add(memPtr, 32), \"verflowing votes\")\n\n }\n\n function store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79(memPtr) {\n\n mstore(add(memPtr, 0), \"SafeCast: value doesn't fit in 2\")\n\n mstore(add(memPtr, 32), \"24 bits\")\n\n }\n\n function store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19(memPtr) {\n\n mstore(add(memPtr, 0), \"SafeCast: value doesn't fit in 3\")\n\n mstore(add(memPtr, 32), \"2 bits\")\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n}\n",
"id": 20,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "6101406040523480156200001257600080fd5b506040518060400160405280600c81526020017f4272616461727220436f696e0000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4272616461727220436f696e00000000000000000000000000000000000000008152506040518060400160405280600781526020017f425241444152520000000000000000000000000000000000000000000000000081525081600390805190602001906200010492919062001000565b5080600490805190602001906200011d92919062001000565b50505062000140620001346200025660201b60201c565b6200025e60201b60201c565b6000600960146101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001c48184846200032460201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050506200025033620002266200036060201b60201c565b600a620002349190620013c0565b624c4b40620002449190620014fd565b6200036960201b60201c565b620017fd565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000838383463060405160200162000341959493929190620011a6565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b6200038082826200038460201b6200126e1760201c565b5050565b6200039b82826200044260201b620012fb1760201c565b620003ab620005bb60201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620003d9620005df60201b60201c565b11156200041d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004149062001225565b60405180910390fd5b6200043c600e620005e960201b6200145b17836200060160201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ac906200128b565b60405180910390fd5b620004c960008383620008b260201b60201c565b8060026000828254620004dd919062001308565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000534919062001308565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200059b9190620012ad565b60405180910390a3620005b760008383620008df60201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b60008183620005f9919062001308565b905092915050565b600080600085805490509050600081146200067657856001826200062691906200155e565b815481106200063a576200063962001682565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000679565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250620006a583858760201c565b9150600081118015620006fe57504386600183620006c491906200155e565b81548110620006d857620006d762001682565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156200079f576200071a82620008fc60201b620014711760201c565b866001836200072a91906200155e565b815481106200073e576200073d62001682565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550620008a9565b856040518060400160405280620007c1436200096a60201b620014dc1760201c565b63ffffffff168152602001620007e285620008fc60201b620014711760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b620008c2620009c060201b60201c565b620008da83838362000a1560201b6200152f1760201c565b505050565b620008f783838362000b1060201b620015e91760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111562000962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009599062001247565b60405180910390fd5b819050919050565b600063ffffffff8016821115620009b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009af9062001269565b60405180910390fd5b819050919050565b620009d062000b6060201b60201c565b1562000a13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0a9062001203565b60405180910390fd5b565b62000a2d83838362000b7760201b620016141760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a8a5762000a748262000b7c60201b60201c565b62000a8462000bdf60201b60201c565b62000b0b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ae75762000ad18362000b7c60201b60201c565b62000ae162000bdf60201b60201c565b62000b0a565b62000af88362000b7c60201b60201c565b62000b098262000b7c60201b60201c565b5b5b505050565b62000b2883838362000c0360201b620016191760201c565b62000b5b62000b3d8462000c0860201b60201c565b62000b4e8462000c0860201b60201c565b8362000c7160201b60201c565b505050565b6000600960149054906101000a900460ff16905090565b505050565b62000bdc600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000bd08362000e9460201b60201c565b62000edc60201b60201c565b50565b62000c01600662000bf5620005df60201b60201c565b62000edc60201b60201c565b565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000cae5750600081115b1562000e8f57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000da15760008062000d48600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000f6860201b6200161e17856200060160201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000d96929190620012ca565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000e8e5760008062000e35600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620005e960201b6200145b17856200060160201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000e83929190620012ca565b60405180910390a250505b5b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000eee62000f8060201b60201c565b90508062000f058460000162000f9e60201b60201c565b101562000f635782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000818362000f7891906200155e565b905092915050565b600062000f99600862000ff260201b620016341760201c565b905090565b6000808280549050141562000fb7576000905062000fed565b816001838054905062000fcb91906200155e565b8154811062000fdf5762000fde62001682565b5b906000526020600020015490505b919050565b600081600001549050919050565b8280546200100e90620015ee565b90600052602060002090601f0160209004810192826200103257600085556200107e565b82601f106200104d57805160ff19168380011785556200107e565b828001600101855582156200107e579182015b828111156200107d57825182559160200191906001019062001060565b5b5090506200108d919062001091565b5090565b5b80821115620010ac57600081600090555060010162001092565b5090565b620010bb8162001599565b82525050565b620010cc81620015ad565b82525050565b6000620010e1601083620012f7565b9150620010ee82620016be565b602082019050919050565b600062001108603083620012f7565b91506200111582620016e7565b604082019050919050565b60006200112f602783620012f7565b91506200113c8262001736565b604082019050919050565b600062001156602683620012f7565b9150620011638262001785565b604082019050919050565b60006200117d601f83620012f7565b91506200118a82620017d4565b602082019050919050565b620011a081620015d7565b82525050565b600060a082019050620011bd6000830188620010c1565b620011cc6020830187620010c1565b620011db6040830186620010c1565b620011ea606083018562001195565b620011f96080830184620010b0565b9695505050505050565b600060208201905081810360008301526200121e81620010d2565b9050919050565b600060208201905081810360008301526200124081620010f9565b9050919050565b60006020820190508181036000830152620012628162001120565b9050919050565b60006020820190508181036000830152620012848162001147565b9050919050565b60006020820190508181036000830152620012a6816200116e565b9050919050565b6000602082019050620012c4600083018462001195565b92915050565b6000604082019050620012e1600083018562001195565b620012f0602083018462001195565b9392505050565b600082825260208201905092915050565b60006200131582620015d7565b91506200132283620015d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200135a576200135962001624565b5b828201905092915050565b6000808291508390505b6001851115620013b7578086048111156200138f576200138e62001624565b5b60018516156200139f5780820291505b8081029050620013af85620016b1565b94506200136f565b94509492505050565b6000620013cd82620015d7565b9150620013da83620015e1565b9250620014097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001411565b905092915050565b600082620014235760019050620014f6565b81620014335760009050620014f6565b81600181146200144c576002811462001457576200148d565b6001915050620014f6565b60ff8411156200146c576200146b62001624565b5b8360020a91508482111562001486576200148562001624565b5b50620014f6565b5060208310610133831016604e8410600b8410161715620014c75782820a905083811115620014c157620014c062001624565b5b620014f6565b620014d6848484600162001365565b92509050818404811115620014f057620014ef62001624565b5b81810290505b9392505050565b60006200150a82620015d7565b91506200151783620015d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001553576200155262001624565b5b828202905092915050565b60006200156b82620015d7565b91506200157883620015d7565b9250828210156200158e576200158d62001624565b5b828203905092915050565b6000620015a682620015b7565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200160757607f821691505b602082108114156200161e576200161d62001653565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160a05160c05160601c60e05161010051610120516147da620018506000396000611bd001526000611c1201526000611bf101526000611b2601526000611b7c01526000611ba501526147da6000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063981b24d0116100ad578063c3cda5201161007c578063c3cda52014610615578063d505accf14610631578063dd62ed3e1461064d578063f1127ed81461067d578063f2fde38b146106ad57610206565b8063981b24d0146105555780639ab24eb014610585578063a457c2d7146105b5578063a9059cbb146105e557610206565b80638da5cb5b116100e95780638da5cb5b146104df5780638e539e8c146104fd57806395d89b411461052d5780639711715a1461054b57610206565b8063715018a61461047f57806379cc6790146104895780637ecebe00146104a55780638456cb59146104d557610206565b80633f4ba83a1161019d578063587cde1e1161016c578063587cde1e146103b55780635c19a95c146103e55780635c975abb146104015780636fcfff451461041f57806370a082311461044f57610206565b80633f4ba83a1461034357806340c10f191461034d57806342966c68146103695780634ee2cd7e1461038557610206565b8063313ce567116101d9578063313ce567146102a75780633644e515146102c557806339509351146102e35780633a46b1a81461031357610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b6102136106c9565b6040516102209190613958565b60405180910390f35b610243600480360381019061023e919061316a565b61075b565b60405161025091906137e4565b60405180910390f35b61026161077e565b60405161026e9190613d15565b60405180910390f35b610291600480360381019061028c9190613075565b610788565b60405161029e91906137e4565b60405180910390f35b6102af6107b7565b6040516102bc9190613d74565b60405180910390f35b6102cd6107c0565b6040516102da91906137ff565b60405180910390f35b6102fd60048036038101906102f8919061316a565b6107cf565b60405161030a91906137e4565b60405180910390f35b61032d6004803603810190610328919061316a565b610806565b60405161033a9190613d15565b60405180910390f35b61034b61089a565b005b6103676004803603810190610362919061316a565b6108ac565b005b610383600480360381019061037e9190613277565b6108c2565b005b61039f600480360381019061039a919061316a565b6108d6565b6040516103ac9190613d15565b60405180910390f35b6103cf60048036038101906103ca9190613008565b610946565b6040516103dc91906137c9565b60405180910390f35b6103ff60048036038101906103fa9190613008565b6109af565b005b6104096109c3565b60405161041691906137e4565b60405180910390f35b61043960048036038101906104349190613008565b6109da565b6040516104469190613d59565b60405180910390f35b61046960048036038101906104649190613008565b610a2e565b6040516104769190613d15565b60405180910390f35b610487610a76565b005b6104a3600480360381019061049e919061316a565b610a8a565b005b6104bf60048036038101906104ba9190613008565b610aaa565b6040516104cc9190613d15565b60405180910390f35b6104dd610afa565b005b6104e7610b0c565b6040516104f491906137c9565b60405180910390f35b61051760048036038101906105129190613277565b610b36565b6040516105249190613d15565b60405180910390f35b610535610b8c565b6040516105429190613958565b60405180910390f35b610553610c1e565b005b61056f600480360381019061056a9190613277565b610c31565b60405161057c9190613d15565b60405180910390f35b61059f600480360381019061059a9190613008565b610c62565b6040516105ac9190613d15565b60405180910390f35b6105cf60048036038101906105ca919061316a565b610d73565b6040516105dc91906137e4565b60405180910390f35b6105ff60048036038101906105fa919061316a565b610dea565b60405161060c91906137e4565b60405180910390f35b61062f600480360381019061062a91906131aa565b610e0d565b005b61064b600480360381019061064691906130c8565b610f11565b005b61066760048036038101906106629190613035565b611053565b6040516106749190613d15565b60405180910390f35b61069760048036038101906106929190613237565b6110da565b6040516106a49190613cfa565b60405180910390f35b6106c760048036038101906106c29190613008565b6111ea565b005b6060600380546106d890613f3b565b80601f016020809104026020016040519081016040528092919081815260200182805461070490613f3b565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b600080610766611642565b905061077381858561164a565b600191505092915050565b6000600254905090565b600080610793611642565b90506107a0858285611815565b6107ab8585856118a1565b60019150509392505050565b60006012905090565b60006107ca611b22565b905090565b6000806107da611642565b90506107fb8185856107ec8589611053565b6107f69190613db6565b61164a565b600191505092915050565b600043821061084a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610841906139da565b60405180910390fd5b610892600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611c3c565b905092915050565b6108a2611d48565b6108aa611dc6565b565b6108b4611d48565b6108be8282611e29565b5050565b6108d36108cd611642565b82611e37565b50565b600080600061092384600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e45565b915091508161093a5761093585610a2e565b61093c565b805b9250505092915050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6109c06109ba611642565b82611f3b565b50565b6000600960149054906101000a900460ff16905090565b6000610a27600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506114dc565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7e611d48565b610a886000612055565b565b610a9c82610a96611642565b83611815565b610aa68282611e37565b5050565b6000610af3600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611634565b9050919050565b610b02611d48565b610b0a61211b565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906139da565b60405180910390fd5b610b85600e83611c3c565b9050919050565b606060048054610b9b90613f3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790613f3b565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b610c26611d48565b610c2e61217e565b50565b6000806000610c41846006611e45565b9150915081610c5757610c5261077e565b610c59565b805b92505050919050565b600080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610d4a57600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610cfe9190613e3d565b81548110610d0f57610d0e614033565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610d4d565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610d7e611642565b90506000610d8c8286611053565b905083811015610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613cba565b60405180910390fd5b610dde828686840361164a565b60019250505092915050565b600080610df5611642565b9050610e028185856118a1565b600191505092915050565b83421115610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613a1a565b60405180910390fd5b6000610eb2610eaa7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610e8f949392919061387b565b604051602081830303815290604052805190602001206121d4565b8585856121ee565b9050610ebd81612219565b8614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590613a7a565b60405180910390fd5b610f088188611f3b565b50505050505050565b83421115610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613afa565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610f838c612219565b89604051602001610f999695949392919061381a565b6040516020818303038152906040528051906020012090506000610fbc826121d4565b90506000610fcc828787876121ee565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613b9a565b60405180910390fd5b6110478a8a8a61164a565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110e2612f61565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff168154811061113957611138614033565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b6111f2611d48565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613a9a565b60405180910390fd5b61126b81612055565b50565b61127882826112fb565b611280612277565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166112a661077e565b11156112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90613bba565b60405180910390fd5b6112f5600e61145b8361229b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613cda565b60405180910390fd5b61137760008383612513565b80600260008282546113899190613db6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113de9190613db6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114439190613d15565b60405180910390a36114576000838361252b565b5050565b600081836114699190613db6565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613bfa565b60405180910390fd5b819050919050565b600063ffffffff8016821115611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e90613c5a565b60405180910390fd5b819050919050565b61153a838383611614565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611585576115788261253b565b61158061258e565b6115e4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d0576115c38361253b565b6115cb61258e565b6115e3565b6115d98361253b565b6115e28261253b565b5b5b505050565b6115f4838383611619565b61160f61160084610946565b61160984610946565b836125a2565b505050565b505050565b505050565b6000818361162c9190613e3d565b905092915050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190613aba565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118089190613d15565b60405180910390a3505050565b60006118218484611053565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461189b578181101561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490613ada565b60405180910390fd5b61189a848484840361164a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613c3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611978906139ba565b60405180910390fd5b61198c838383612513565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613b1a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa59190613db6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b099190613d15565b60405180910390a3611b1c84848461252b565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611b9e57507f000000000000000000000000000000000000000000000000000000000000000046145b15611bcb577f00000000000000000000000000000000000000000000000000000000000000009050611c39565b611c367f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061279b565b90505b90565b6000808380549050905060005b81811015611cbb576000611c5d82846127d5565b905084868281548110611c7357611c72614033565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff161115611ca557809250611cb5565b600181611cb29190613db6565b91505b50611c49565b60008214611d1d5784600183611cd19190613e3d565b81548110611ce257611ce1614033565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611d20565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b611d50611642565b73ffffffffffffffffffffffffffffffffffffffff16611d6e610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613bda565b60405180910390fd5b565b611dce6127fb565b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611e12611642565b604051611e1f91906137c9565b60405180910390a1565b611e33828261126e565b5050565b611e418282612844565b5050565b60008060008411611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290613c9a565b60405180910390fd5b611e93612862565b841115611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc9061399a565b60405180910390fd5b6000611eed858560000161287390919063ffffffff16565b90508360000180549050811415611f0b576000809250925050611f34565b6001846001018281548110611f2357611f22614033565b5b906000526020600020015492509250505b9250929050565b6000611f4683610946565b90506000611f5384610a2e565b905082600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461204f8284836125a2565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212361294d565b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612167611642565b60405161217491906137c9565b60405180910390a1565b600061218a6008612997565b6000612194612862565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516121c59190613d15565b60405180910390a18091505090565b60006121e76121e1611b22565b836129ad565b9050919050565b60008060006121ff878787876129e0565b9150915061220c81612aed565b8192505050949350505050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061226681611634565b915061227181612997565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000806000858054905090506000811461230957856001826122bd9190613e3d565b815481106122ce576122cd614033565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661230c565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061233a83858763ffffffff16565b915060008111801561238d575043866001836123569190613e3d565b8154811061236757612366614033565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561241a5761239b82611471565b866001836123a99190613e3d565b815481106123ba576123b9614033565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555061250a565b85604051806040016040528061242f436114dc565b63ffffffff16815260200161244385611471565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b61251b61294d565b61252683838361152f565b505050565b6125368383836115e9565b505050565b61258b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258683610a2e565b612cc2565b50565b6125a0600661259b61077e565b612cc2565b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125de5750600081115b1561279657600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126bc57600080612665600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061161e8561229b565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516126b1929190613d30565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127955760008061273e600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061145b8561229b565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161278a929190613d30565b60405180910390a250505b5b505050565b600083838346306040516020016127b69594939291906138c0565b6040516020818303038152906040528051906020012090509392505050565b600060028284186127e69190613e0c565b8284166127f39190613db6565b905092915050565b6128036109c3565b612842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612839906139fa565b60405180910390fd5b565b61284e8282612d3d565b61285c600e61161e8361229b565b50505050565b600061286e6008611634565b905090565b6000808380549050141561288a5760009050612947565b600080848054905090505b808210156128ee5760006128a983836127d5565b9050848682815481106128bf576128be614033565b5b906000526020600020015411156128d8578091506128e8565b6001816128e59190613db6565b92505b50612895565b600082118015612926575083856001846129089190613e3d565b8154811061291957612918614033565b5b9060005260206000200154145b15612941576001826129389190613e3d565b92505050612947565b81925050505b92915050565b6129556109c3565b15612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c90613b5a565b60405180910390fd5b565b6001816000016000828254019250508190555050565b600082826040516020016129c2929190613792565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612a1b576000600391509150612ae4565b601b8560ff1614158015612a335750601c8560ff1614155b15612a45576000600491509150612ae4565b600060018787878760405160008152602001604052604051612a6a9493929190613913565b6020604051602081039080840390855afa158015612a8c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612adb57600060019250925050612ae4565b80600092509250505b94509492505050565b60006004811115612b0157612b00613fd5565b5b816004811115612b1457612b13613fd5565b5b1415612b1f57612cbf565b60016004811115612b3357612b32613fd5565b5b816004811115612b4657612b45613fd5565b5b1415612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e9061397a565b60405180910390fd5b60026004811115612b9b57612b9a613fd5565b5b816004811115612bae57612bad613fd5565b5b1415612bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be690613a5a565b60405180910390fd5b60036004811115612c0357612c02613fd5565b5b816004811115612c1657612c15613fd5565b5b1415612c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4e90613b3a565b60405180910390fd5b600480811115612c6a57612c69613fd5565b5b816004811115612c7d57612c7c613fd5565b5b1415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590613b7a565b60405180910390fd5b5b50565b6000612ccc612862565b905080612cdb84600001612f14565b1015612d385782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da490613c1a565b60405180910390fd5b612db982600083612513565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3690613a3a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612e969190613e3d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612efb9190613d15565b60405180910390a3612f0f8360008461252b565b505050565b60008082805490501415612f2b5760009050612f5c565b8160018380549050612f3d9190613e3d565b81548110612f4e57612f4d614033565b5b906000526020600020015490505b919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081359050612fae81614731565b92915050565b600081359050612fc381614748565b92915050565b600081359050612fd88161475f565b92915050565b600081359050612fed81614776565b92915050565b6000813590506130028161478d565b92915050565b60006020828403121561301e5761301d614062565b5b600061302c84828501612f9f565b91505092915050565b6000806040838503121561304c5761304b614062565b5b600061305a85828601612f9f565b925050602061306b85828601612f9f565b9150509250929050565b60008060006060848603121561308e5761308d614062565b5b600061309c86828701612f9f565b93505060206130ad86828701612f9f565b92505060406130be86828701612fc9565b9150509250925092565b600080600080600080600060e0888a0312156130e7576130e6614062565b5b60006130f58a828b01612f9f565b97505060206131068a828b01612f9f565b96505060406131178a828b01612fc9565b95505060606131288a828b01612fc9565b94505060806131398a828b01612ff3565b93505060a061314a8a828b01612fb4565b92505060c061315b8a828b01612fb4565b91505092959891949750929550565b6000806040838503121561318157613180614062565b5b600061318f85828601612f9f565b92505060206131a085828601612fc9565b9150509250929050565b60008060008060008060c087890312156131c7576131c6614062565b5b60006131d589828a01612f9f565b96505060206131e689828a01612fc9565b95505060406131f789828a01612fc9565b945050606061320889828a01612ff3565b935050608061321989828a01612fb4565b92505060a061322a89828a01612fb4565b9150509295509295509295565b6000806040838503121561324e5761324d614062565b5b600061325c85828601612f9f565b925050602061326d85828601612fde565b9150509250929050565b60006020828403121561328d5761328c614062565b5b600061329b84828501612fc9565b91505092915050565b6132ad81613e71565b82525050565b6132bc81613e83565b82525050565b6132cb81613e8f565b82525050565b6132e26132dd82613e8f565b613f6d565b82525050565b60006132f382613d8f565b6132fd8185613d9a565b935061330d818560208601613f08565b61331681614067565b840191505092915050565b600061332e601883613d9a565b915061333982614078565b602082019050919050565b6000613351601d83613d9a565b915061335c826140a1565b602082019050919050565b6000613374602383613d9a565b915061337f826140ca565b604082019050919050565b6000613397601f83613d9a565b91506133a282614119565b602082019050919050565b60006133ba601483613d9a565b91506133c582614142565b602082019050919050565b60006133dd601d83613d9a565b91506133e88261416b565b602082019050919050565b6000613400602283613d9a565b915061340b82614194565b604082019050919050565b6000613423601f83613d9a565b915061342e826141e3565b602082019050919050565b6000613446601983613d9a565b91506134518261420c565b602082019050919050565b6000613469602683613d9a565b915061347482614235565b604082019050919050565b600061348c602283613d9a565b915061349782614284565b604082019050919050565b60006134af600283613dab565b91506134ba826142d3565b600282019050919050565b60006134d2601d83613d9a565b91506134dd826142fc565b602082019050919050565b60006134f5601d83613d9a565b915061350082614325565b602082019050919050565b6000613518602683613d9a565b91506135238261434e565b604082019050919050565b600061353b602283613d9a565b91506135468261439d565b604082019050919050565b600061355e601083613d9a565b9150613569826143ec565b602082019050919050565b6000613581602283613d9a565b915061358c82614415565b604082019050919050565b60006135a4601e83613d9a565b91506135af82614464565b602082019050919050565b60006135c7603083613d9a565b91506135d28261448d565b604082019050919050565b60006135ea602083613d9a565b91506135f5826144dc565b602082019050919050565b600061360d602783613d9a565b915061361882614505565b604082019050919050565b6000613630602183613d9a565b915061363b82614554565b604082019050919050565b6000613653602583613d9a565b915061365e826145a3565b604082019050919050565b6000613676602683613d9a565b9150613681826145f2565b604082019050919050565b6000613699602483613d9a565b91506136a482614641565b604082019050919050565b60006136bc601683613d9a565b91506136c782614690565b602082019050919050565b60006136df602583613d9a565b91506136ea826146b9565b604082019050919050565b6000613702601f83613d9a565b915061370d82614708565b602082019050919050565b60408201600082015161372e6000850182613765565b5060208201516137416020850182613747565b50505050565b61375081613eb9565b82525050565b61375f81613ee1565b82525050565b61376e81613eeb565b82525050565b61377d81613eeb565b82525050565b61378c81613efb565b82525050565b600061379d826134a2565b91506137a982856132d1565b6020820191506137b982846132d1565b6020820191508190509392505050565b60006020820190506137de60008301846132a4565b92915050565b60006020820190506137f960008301846132b3565b92915050565b600060208201905061381460008301846132c2565b92915050565b600060c08201905061382f60008301896132c2565b61383c60208301886132a4565b61384960408301876132a4565b6138566060830186613756565b6138636080830185613756565b61387060a0830184613756565b979650505050505050565b600060808201905061389060008301876132c2565b61389d60208301866132a4565b6138aa6040830185613756565b6138b76060830184613756565b95945050505050565b600060a0820190506138d560008301886132c2565b6138e260208301876132c2565b6138ef60408301866132c2565b6138fc6060830185613756565b61390960808301846132a4565b9695505050505050565b600060808201905061392860008301876132c2565b6139356020830186613783565b61394260408301856132c2565b61394f60608301846132c2565b95945050505050565b6000602082019050818103600083015261397281846132e8565b905092915050565b6000602082019050818103600083015261399381613321565b9050919050565b600060208201905081810360008301526139b381613344565b9050919050565b600060208201905081810360008301526139d381613367565b9050919050565b600060208201905081810360008301526139f38161338a565b9050919050565b60006020820190508181036000830152613a13816133ad565b9050919050565b60006020820190508181036000830152613a33816133d0565b9050919050565b60006020820190508181036000830152613a53816133f3565b9050919050565b60006020820190508181036000830152613a7381613416565b9050919050565b60006020820190508181036000830152613a9381613439565b9050919050565b60006020820190508181036000830152613ab38161345c565b9050919050565b60006020820190508181036000830152613ad38161347f565b9050919050565b60006020820190508181036000830152613af3816134c5565b9050919050565b60006020820190508181036000830152613b13816134e8565b9050919050565b60006020820190508181036000830152613b338161350b565b9050919050565b60006020820190508181036000830152613b538161352e565b9050919050565b60006020820190508181036000830152613b7381613551565b9050919050565b60006020820190508181036000830152613b9381613574565b9050919050565b60006020820190508181036000830152613bb381613597565b9050919050565b60006020820190508181036000830152613bd3816135ba565b9050919050565b60006020820190508181036000830152613bf3816135dd565b9050919050565b60006020820190508181036000830152613c1381613600565b9050919050565b60006020820190508181036000830152613c3381613623565b9050919050565b60006020820190508181036000830152613c5381613646565b9050919050565b60006020820190508181036000830152613c7381613669565b9050919050565b60006020820190508181036000830152613c938161368c565b9050919050565b60006020820190508181036000830152613cb3816136af565b9050919050565b60006020820190508181036000830152613cd3816136d2565b9050919050565b60006020820190508181036000830152613cf3816136f5565b9050919050565b6000604082019050613d0f6000830184613718565b92915050565b6000602082019050613d2a6000830184613756565b92915050565b6000604082019050613d456000830185613756565b613d526020830184613756565b9392505050565b6000602082019050613d6e6000830184613774565b92915050565b6000602082019050613d896000830184613783565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613dc182613ee1565b9150613dcc83613ee1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0157613e00613f77565b5b828201905092915050565b6000613e1782613ee1565b9150613e2283613ee1565b925082613e3257613e31613fa6565b5b828204905092915050565b6000613e4882613ee1565b9150613e5383613ee1565b925082821015613e6657613e65613f77565b5b828203905092915050565b6000613e7c82613e99565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b83811015613f26578082015181840152602081019050613f0b565b83811115613f35576000848401525b50505050565b60006002820490506001821680613f5357607f821691505b60208210811415613f6757613f66614004565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61473a81613e71565b811461474557600080fd5b50565b61475181613e8f565b811461475c57600080fd5b50565b61476881613ee1565b811461477357600080fd5b50565b61477f81613eeb565b811461478a57600080fd5b50565b61479681613efb565b81146147a157600080fd5b5056fea26469706673582212202d74c5e6292015abdf66ef60969861fcb2db5d8c39ed2d39ee9ce2880f5c587764736f6c63430008070033",
"opcodes": "PUSH2 0x140 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4272616461727220436F696E0000000000000000000000000000000000000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3100000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4272616461727220436F696E0000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252414441525200000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x104 SWAP3 SWAP2 SWAP1 PUSH3 0x1000 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x11D SWAP3 SWAP2 SWAP1 PUSH3 0x1000 JUMP JUMPDEST POP POP POP PUSH3 0x140 PUSH3 0x134 PUSH3 0x256 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x25E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F SWAP1 POP DUP3 PUSH1 0xE0 DUP2 DUP2 MSTORE POP POP DUP2 PUSH2 0x100 DUP2 DUP2 MSTORE POP POP CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE POP POP PUSH3 0x1C4 DUP2 DUP5 DUP5 PUSH3 0x324 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x80 DUP2 DUP2 MSTORE POP POP ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x60 SHL DUP2 MSTORE POP POP DUP1 PUSH2 0x120 DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP PUSH3 0x250 CALLER PUSH3 0x226 PUSH3 0x360 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x234 SWAP2 SWAP1 PUSH3 0x13C0 JUMP JUMPDEST PUSH3 0x4C4B40 PUSH3 0x244 SWAP2 SWAP1 PUSH3 0x14FD JUMP JUMPDEST PUSH3 0x369 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x17FD JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x341 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x11A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH3 0x380 DUP3 DUP3 PUSH3 0x384 PUSH1 0x20 SHL PUSH3 0x126E OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x39B DUP3 DUP3 PUSH3 0x442 PUSH1 0x20 SHL PUSH3 0x12FB OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x3AB PUSH3 0x5BB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x3D9 PUSH3 0x5DF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST GT ISZERO PUSH3 0x41D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x414 SWAP1 PUSH3 0x1225 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x43C PUSH1 0xE PUSH3 0x5E9 PUSH1 0x20 SHL PUSH3 0x145B OR DUP4 PUSH3 0x601 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x4B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x4AC SWAP1 PUSH3 0x128B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x4C9 PUSH1 0x0 DUP4 DUP4 PUSH3 0x8B2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x4DD SWAP2 SWAP1 PUSH3 0x1308 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 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 PUSH3 0x534 SWAP2 SWAP1 PUSH3 0x1308 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x59B SWAP2 SWAP1 PUSH3 0x12AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x5B7 PUSH1 0x0 DUP4 DUP4 PUSH3 0x8DF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH3 0x5F9 SWAP2 SWAP1 PUSH3 0x1308 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 DUP2 EQ PUSH3 0x676 JUMPI DUP6 PUSH1 0x1 DUP3 PUSH3 0x626 SWAP2 SWAP1 PUSH3 0x155E JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x63A JUMPI PUSH3 0x639 PUSH3 0x1682 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x679 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH3 0x6A5 DUP4 DUP6 DUP8 PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH3 0x6FE JUMPI POP NUMBER DUP7 PUSH1 0x1 DUP4 PUSH3 0x6C4 SWAP2 SWAP1 PUSH3 0x155E JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x6D8 JUMPI PUSH3 0x6D7 PUSH3 0x1682 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND EQ JUMPDEST ISZERO PUSH3 0x79F JUMPI PUSH3 0x71A DUP3 PUSH3 0x8FC PUSH1 0x20 SHL PUSH3 0x1471 OR PUSH1 0x20 SHR JUMP JUMPDEST DUP7 PUSH1 0x1 DUP4 PUSH3 0x72A SWAP2 SWAP1 PUSH3 0x155E JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x73E JUMPI PUSH3 0x73D PUSH3 0x1682 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH3 0x8A9 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH3 0x7C1 NUMBER PUSH3 0x96A PUSH1 0x20 SHL PUSH3 0x14DC OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x7E2 DUP6 PUSH3 0x8FC PUSH1 0x20 SHL PUSH3 0x1471 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH4 0xFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP JUMPDEST POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x8C2 PUSH3 0x9C0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x8DA DUP4 DUP4 DUP4 PUSH3 0xA15 PUSH1 0x20 SHL PUSH3 0x152F OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x8F7 DUP4 DUP4 DUP4 PUSH3 0xB10 PUSH1 0x20 SHL PUSH3 0x15E9 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP1 AND DUP3 GT ISZERO PUSH3 0x962 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x959 SWAP1 PUSH3 0x1247 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 AND DUP3 GT ISZERO PUSH3 0x9B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x9AF SWAP1 PUSH3 0x1269 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x9D0 PUSH3 0xB60 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0xA13 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xA0A SWAP1 PUSH3 0x1203 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH3 0xA2D DUP4 DUP4 DUP4 PUSH3 0xB77 PUSH1 0x20 SHL PUSH3 0x1614 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xA8A JUMPI PUSH3 0xA74 DUP3 PUSH3 0xB7C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xA84 PUSH3 0xBDF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xB0B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xAE7 JUMPI PUSH3 0xAD1 DUP4 PUSH3 0xB7C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xAE1 PUSH3 0xBDF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xB0A JUMP JUMPDEST PUSH3 0xAF8 DUP4 PUSH3 0xB7C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xB09 DUP3 PUSH3 0xB7C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0xB28 DUP4 DUP4 DUP4 PUSH3 0xC03 PUSH1 0x20 SHL PUSH3 0x1619 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xB5B PUSH3 0xB3D DUP5 PUSH3 0xC08 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xB4E DUP5 PUSH3 0xC08 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP4 PUSH3 0xC71 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0xBDC PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH3 0xBD0 DUP4 PUSH3 0xE94 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xEDC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0xC01 PUSH1 0x6 PUSH3 0xBF5 PUSH3 0x5DF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xEDC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH3 0xCAE JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH3 0xE8F JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0xDA1 JUMPI PUSH1 0x0 DUP1 PUSH3 0xD48 PUSH1 0xD PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH3 0xF68 PUSH1 0x20 SHL PUSH3 0x161E OR DUP6 PUSH3 0x601 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH3 0xD96 SWAP3 SWAP2 SWAP1 PUSH3 0x12CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0xE8E JUMPI PUSH1 0x0 DUP1 PUSH3 0xE35 PUSH1 0xD PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH3 0x5E9 PUSH1 0x20 SHL PUSH3 0x145B OR DUP6 PUSH3 0x601 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH3 0xE83 SWAP3 SWAP2 SWAP1 PUSH3 0x12CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xEEE PUSH3 0xF80 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH3 0xF05 DUP5 PUSH1 0x0 ADD PUSH3 0xF9E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST LT ISZERO PUSH3 0xF63 JUMPI DUP3 PUSH1 0x0 ADD DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP3 PUSH1 0x1 ADD DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH3 0xF78 SWAP2 SWAP1 PUSH3 0x155E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xF99 PUSH1 0x8 PUSH3 0xFF2 PUSH1 0x20 SHL PUSH3 0x1634 OR PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH3 0xFB7 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0xFED JUMP JUMPDEST DUP2 PUSH1 0x1 DUP4 DUP1 SLOAD SWAP1 POP PUSH3 0xFCB SWAP2 SWAP1 PUSH3 0x155E JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0xFDF JUMPI PUSH3 0xFDE PUSH3 0x1682 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x100E SWAP1 PUSH3 0x15EE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x1032 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x107E JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x104D JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x107E JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x107E JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x107D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x1060 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x108D SWAP2 SWAP1 PUSH3 0x1091 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x10AC JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x1092 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH3 0x10BB DUP2 PUSH3 0x1599 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x10CC DUP2 PUSH3 0x15AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x10E1 PUSH1 0x10 DUP4 PUSH3 0x12F7 JUMP JUMPDEST SWAP2 POP PUSH3 0x10EE DUP3 PUSH3 0x16BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1108 PUSH1 0x30 DUP4 PUSH3 0x12F7 JUMP JUMPDEST SWAP2 POP PUSH3 0x1115 DUP3 PUSH3 0x16E7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x112F PUSH1 0x27 DUP4 PUSH3 0x12F7 JUMP JUMPDEST SWAP2 POP PUSH3 0x113C DUP3 PUSH3 0x1736 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1156 PUSH1 0x26 DUP4 PUSH3 0x12F7 JUMP JUMPDEST SWAP2 POP PUSH3 0x1163 DUP3 PUSH3 0x1785 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x117D PUSH1 0x1F DUP4 PUSH3 0x12F7 JUMP JUMPDEST SWAP2 POP PUSH3 0x118A DUP3 PUSH3 0x17D4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x11A0 DUP2 PUSH3 0x15D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH3 0x11BD PUSH1 0x0 DUP4 ADD DUP9 PUSH3 0x10C1 JUMP JUMPDEST PUSH3 0x11CC PUSH1 0x20 DUP4 ADD DUP8 PUSH3 0x10C1 JUMP JUMPDEST PUSH3 0x11DB PUSH1 0x40 DUP4 ADD DUP7 PUSH3 0x10C1 JUMP JUMPDEST PUSH3 0x11EA PUSH1 0x60 DUP4 ADD DUP6 PUSH3 0x1195 JUMP JUMPDEST PUSH3 0x11F9 PUSH1 0x80 DUP4 ADD DUP5 PUSH3 0x10B0 JUMP JUMPDEST 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 PUSH3 0x121E DUP2 PUSH3 0x10D2 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 PUSH3 0x1240 DUP2 PUSH3 0x10F9 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 PUSH3 0x1262 DUP2 PUSH3 0x1120 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 PUSH3 0x1284 DUP2 PUSH3 0x1147 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 PUSH3 0x12A6 DUP2 PUSH3 0x116E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x12C4 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1195 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH3 0x12E1 PUSH1 0x0 DUP4 ADD DUP6 PUSH3 0x1195 JUMP JUMPDEST PUSH3 0x12F0 PUSH1 0x20 DUP4 ADD DUP5 PUSH3 0x1195 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1315 DUP3 PUSH3 0x15D7 JUMP JUMPDEST SWAP2 POP PUSH3 0x1322 DUP4 PUSH3 0x15D7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x135A JUMPI PUSH3 0x1359 PUSH3 0x1624 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x13B7 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x138F JUMPI PUSH3 0x138E PUSH3 0x1624 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x139F JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x13AF DUP6 PUSH3 0x16B1 JUMP JUMPDEST SWAP5 POP PUSH3 0x136F JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x13CD DUP3 PUSH3 0x15D7 JUMP JUMPDEST SWAP2 POP PUSH3 0x13DA DUP4 PUSH3 0x15E1 JUMP JUMPDEST SWAP3 POP PUSH3 0x1409 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x1411 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x1423 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x14F6 JUMP JUMPDEST DUP2 PUSH3 0x1433 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x14F6 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x144C JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x1457 JUMPI PUSH3 0x148D JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x14F6 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x146C JUMPI PUSH3 0x146B PUSH3 0x1624 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x1486 JUMPI PUSH3 0x1485 PUSH3 0x1624 JUMP JUMPDEST JUMPDEST POP PUSH3 0x14F6 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x14C7 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x14C1 JUMPI PUSH3 0x14C0 PUSH3 0x1624 JUMP JUMPDEST JUMPDEST PUSH3 0x14F6 JUMP JUMPDEST PUSH3 0x14D6 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x1365 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x14F0 JUMPI PUSH3 0x14EF PUSH3 0x1624 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x150A DUP3 PUSH3 0x15D7 JUMP JUMPDEST SWAP2 POP PUSH3 0x1517 DUP4 PUSH3 0x15D7 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x1553 JUMPI PUSH3 0x1552 PUSH3 0x1624 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x156B DUP3 PUSH3 0x15D7 JUMP JUMPDEST SWAP2 POP PUSH3 0x1578 DUP4 PUSH3 0x15D7 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0x158E JUMPI PUSH3 0x158D PUSH3 0x1624 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x15A6 DUP3 PUSH3 0x15B7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP 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 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x1607 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x161E JUMPI PUSH3 0x161D PUSH3 0x1653 JUMP JUMPDEST JUMPDEST 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 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230566F7465733A20746F74616C20737570706C79207269736B73206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x766572666C6F77696E6720766F74657300000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x3234206269747300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2033 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x3220626974730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x47DA PUSH3 0x1850 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x1BD0 ADD MSTORE PUSH1 0x0 PUSH2 0x1C12 ADD MSTORE PUSH1 0x0 PUSH2 0x1BF1 ADD MSTORE PUSH1 0x0 PUSH2 0x1B26 ADD MSTORE PUSH1 0x0 PUSH2 0x1B7C ADD MSTORE PUSH1 0x0 PUSH2 0x1BA5 ADD MSTORE PUSH2 0x47DA PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x206 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x11A JUMPI DUP1 PUSH4 0x981B24D0 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xC3CDA520 GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x615 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x631 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x64D JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x67D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x6AD JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x981B24D0 EQ PUSH2 0x555 JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x585 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x5B5 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x5E5 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4DF JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x4FD JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x52D JUMPI DUP1 PUSH4 0x9711715A EQ PUSH2 0x54B JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x47F JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x4A5 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x4D5 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A GT PUSH2 0x19D JUMPI DUP1 PUSH4 0x587CDE1E GT PUSH2 0x16C JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x3E5 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x401 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x44F JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x34D JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x369 JUMPI DUP1 PUSH4 0x4EE2CD7E EQ PUSH2 0x385 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x313 JUMPI PUSH2 0x206 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x20B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x229 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x259 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x277 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x213 PUSH2 0x6C9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x3958 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x23E SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0x75B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x250 SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x261 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26E SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x3075 JUMP JUMPDEST PUSH2 0x788 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29E SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AF PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x3D74 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CD PUSH2 0x7C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F8 SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0x7CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30A SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33A SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34B PUSH2 0x89A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x367 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x362 SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0x8AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x383 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37E SWAP2 SWAP1 PUSH2 0x3277 JUMP JUMPDEST PUSH2 0x8C2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x39F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39A SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0x8D6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3AC SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3CF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3CA SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0x946 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DC SWAP2 SWAP1 PUSH2 0x37C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3FF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3FA SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0x9AF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x409 PUSH2 0x9C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x416 SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x439 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x434 SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0x9DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x446 SWAP2 SWAP1 PUSH2 0x3D59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x469 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x464 SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0xA2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x476 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x487 PUSH2 0xA76 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x49E SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0xA8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4BA SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0xAAA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4CC SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4DD PUSH2 0xAFA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E7 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4F4 SWAP2 SWAP1 PUSH2 0x37C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x517 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x512 SWAP2 SWAP1 PUSH2 0x3277 JUMP JUMPDEST PUSH2 0xB36 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x524 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x535 PUSH2 0xB8C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x542 SWAP2 SWAP1 PUSH2 0x3958 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x553 PUSH2 0xC1E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x56F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x56A SWAP2 SWAP1 PUSH2 0x3277 JUMP JUMPDEST PUSH2 0xC31 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57C SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x59F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x59A SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0xC62 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5AC SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5CF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CA SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DC SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5FF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5FA SWAP2 SWAP1 PUSH2 0x316A JUMP JUMPDEST PUSH2 0xDEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x60C SWAP2 SWAP1 PUSH2 0x37E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x62F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x62A SWAP2 SWAP1 PUSH2 0x31AA JUMP JUMPDEST PUSH2 0xE0D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x64B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x646 SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST PUSH2 0xF11 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x667 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x662 SWAP2 SWAP1 PUSH2 0x3035 JUMP JUMPDEST PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x674 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x697 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x692 SWAP2 SWAP1 PUSH2 0x3237 JUMP JUMPDEST PUSH2 0x10DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6A4 SWAP2 SWAP1 PUSH2 0x3CFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x6C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6C2 SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH2 0x11EA JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x6D8 SWAP1 PUSH2 0x3F3B 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 0x704 SWAP1 PUSH2 0x3F3B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x751 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x726 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x751 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 0x734 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x766 PUSH2 0x1642 JUMP JUMPDEST SWAP1 POP PUSH2 0x773 DUP2 DUP6 DUP6 PUSH2 0x164A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x793 PUSH2 0x1642 JUMP JUMPDEST SWAP1 POP PUSH2 0x7A0 DUP6 DUP3 DUP6 PUSH2 0x1815 JUMP JUMPDEST PUSH2 0x7AB DUP6 DUP6 DUP6 PUSH2 0x18A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7CA PUSH2 0x1B22 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7DA PUSH2 0x1642 JUMP JUMPDEST SWAP1 POP PUSH2 0x7FB DUP2 DUP6 DUP6 PUSH2 0x7EC DUP6 DUP10 PUSH2 0x1053 JUMP JUMPDEST PUSH2 0x7F6 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST PUSH2 0x164A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0x84A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x841 SWAP1 PUSH2 0x39DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x892 PUSH1 0xD PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH2 0x1C3C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8A2 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x8AA PUSH2 0x1DC6 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x8B4 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x8BE DUP3 DUP3 PUSH2 0x1E29 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x8D3 PUSH2 0x8CD PUSH2 0x1642 JUMP JUMPDEST DUP3 PUSH2 0x1E37 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x923 DUP5 PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1E45 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x93A JUMPI PUSH2 0x935 DUP6 PUSH2 0xA2E JUMP JUMPDEST PUSH2 0x93C JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9C0 PUSH2 0x9BA PUSH2 0x1642 JUMP JUMPDEST DUP3 PUSH2 0x1F3B JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA27 PUSH1 0xD PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP PUSH2 0x14DC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA7E PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0xA88 PUSH1 0x0 PUSH2 0x2055 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xA9C DUP3 PUSH2 0xA96 PUSH2 0x1642 JUMP JUMPDEST DUP4 PUSH2 0x1815 JUMP JUMPDEST PUSH2 0xAA6 DUP3 DUP3 PUSH2 0x1E37 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF3 PUSH1 0xA PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1634 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB02 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0xB0A PUSH2 0x211B JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0xB7A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB71 SWAP1 PUSH2 0x39DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB85 PUSH1 0xE DUP4 PUSH2 0x1C3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xB9B SWAP1 PUSH2 0x3F3B 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 0xBC7 SWAP1 PUSH2 0x3F3B JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC14 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBE9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC14 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 0xBF7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC26 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0xC2E PUSH2 0x217E JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xC41 DUP5 PUSH1 0x6 PUSH2 0x1E45 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xC57 JUMPI PUSH2 0xC52 PUSH2 0x77E JUMP JUMPDEST PUSH2 0xC59 JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xD PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 DUP2 EQ PUSH2 0xD4A JUMPI PUSH1 0xD PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP3 PUSH2 0xCFE SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xD0F JUMPI PUSH2 0xD0E PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD4D JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD7E PUSH2 0x1642 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xD8C DUP3 DUP7 PUSH2 0x1053 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xDD1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDC8 SWAP1 PUSH2 0x3CBA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDDE DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x164A JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xDF5 PUSH2 0x1642 JUMP JUMPDEST SWAP1 POP PUSH2 0xE02 DUP2 DUP6 DUP6 PUSH2 0x18A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xE50 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE47 SWAP1 PUSH2 0x3A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xEB2 PUSH2 0xEAA PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF DUP10 DUP10 DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE8F SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x387B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH2 0x21D4 JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x21EE JUMP JUMPDEST SWAP1 POP PUSH2 0xEBD DUP2 PUSH2 0x2219 JUMP JUMPDEST DUP7 EQ PUSH2 0xEFE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEF5 SWAP1 PUSH2 0x3A7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF08 DUP2 DUP9 PUSH2 0x1F3B JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xF54 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF4B SWAP1 PUSH2 0x3AFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0xF83 DUP13 PUSH2 0x2219 JUMP JUMPDEST DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF99 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x381A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xFBC DUP3 PUSH2 0x21D4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xFCC DUP3 DUP8 DUP8 DUP8 PUSH2 0x21EE JUMP JUMPDEST SWAP1 POP DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x103C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1033 SWAP1 PUSH2 0x3B9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1047 DUP11 DUP11 DUP11 PUSH2 0x164A JUMP JUMPDEST POP POP POP POP POP POP POP 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10E2 PUSH2 0x2F61 JUMP JUMPDEST PUSH1 0xD PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 PUSH4 0xFFFFFFFF AND DUP2 SLOAD DUP2 LT PUSH2 0x1139 JUMPI PUSH2 0x1138 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x11F2 PUSH2 0x1D48 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1262 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1259 SWAP1 PUSH2 0x3A9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x126B DUP2 PUSH2 0x2055 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1278 DUP3 DUP3 PUSH2 0x12FB JUMP JUMPDEST PUSH2 0x1280 PUSH2 0x2277 JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x12A6 PUSH2 0x77E JUMP JUMPDEST GT ISZERO PUSH2 0x12E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DE SWAP1 PUSH2 0x3BBA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12F5 PUSH1 0xE PUSH2 0x145B DUP4 PUSH2 0x229B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x136B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1362 SWAP1 PUSH2 0x3CDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1377 PUSH1 0x0 DUP4 DUP4 PUSH2 0x2513 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1389 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 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 0x13DE SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x1443 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1457 PUSH1 0x0 DUP4 DUP4 PUSH2 0x252B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x1469 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP1 AND DUP3 GT ISZERO PUSH2 0x14D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14CB SWAP1 PUSH2 0x3BFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 AND DUP3 GT ISZERO PUSH2 0x1527 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x151E SWAP1 PUSH2 0x3C5A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x153A DUP4 DUP4 DUP4 PUSH2 0x1614 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1585 JUMPI PUSH2 0x1578 DUP3 PUSH2 0x253B JUMP JUMPDEST PUSH2 0x1580 PUSH2 0x258E JUMP JUMPDEST PUSH2 0x15E4 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x15D0 JUMPI PUSH2 0x15C3 DUP4 PUSH2 0x253B JUMP JUMPDEST PUSH2 0x15CB PUSH2 0x258E JUMP JUMPDEST PUSH2 0x15E3 JUMP JUMPDEST PUSH2 0x15D9 DUP4 PUSH2 0x253B JUMP JUMPDEST PUSH2 0x15E2 DUP3 PUSH2 0x253B JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x15F4 DUP4 DUP4 DUP4 PUSH2 0x1619 JUMP JUMPDEST PUSH2 0x160F PUSH2 0x1600 DUP5 PUSH2 0x946 JUMP JUMPDEST PUSH2 0x1609 DUP5 PUSH2 0x946 JUMP JUMPDEST DUP4 PUSH2 0x25A2 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x162C SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x16BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16B1 SWAP1 PUSH2 0x3C7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x172A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1721 SWAP1 PUSH2 0x3ABA 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 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1808 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1821 DUP5 DUP5 PUSH2 0x1053 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x189B JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x188D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1884 SWAP1 PUSH2 0x3ADA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x189A DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x164A JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1911 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1908 SWAP1 PUSH2 0x3C3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1981 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1978 SWAP1 PUSH2 0x39BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x198C DUP4 DUP4 DUP4 PUSH2 0x2513 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 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 0x1A12 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A09 SWAP1 PUSH2 0x3B1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 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 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 0x1AA5 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1B09 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1B1C DUP5 DUP5 DUP5 PUSH2 0x252B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x1B9E JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x1BCB JUMPI PUSH32 0x0 SWAP1 POP PUSH2 0x1C39 JUMP JUMPDEST PUSH2 0x1C36 PUSH32 0x0 PUSH32 0x0 PUSH32 0x0 PUSH2 0x279B JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1CBB JUMPI PUSH1 0x0 PUSH2 0x1C5D DUP3 DUP5 PUSH2 0x27D5 JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1C73 JUMPI PUSH2 0x1C72 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1CA5 JUMPI DUP1 SWAP3 POP PUSH2 0x1CB5 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH2 0x1CB2 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1C49 JUMP JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1D1D JUMPI DUP5 PUSH1 0x1 DUP4 PUSH2 0x1CD1 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1CE2 JUMPI PUSH2 0x1CE1 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D20 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1D50 PUSH2 0x1642 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D6E PUSH2 0xB0C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1DC4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DBB SWAP1 PUSH2 0x3BDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1DCE PUSH2 0x27FB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x1E12 PUSH2 0x1642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E1F SWAP2 SWAP1 PUSH2 0x37C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x1E33 DUP3 DUP3 PUSH2 0x126E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1E41 DUP3 DUP3 PUSH2 0x2844 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 GT PUSH2 0x1E8B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E82 SWAP1 PUSH2 0x3C9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1E93 PUSH2 0x2862 JUMP JUMPDEST DUP5 GT ISZERO PUSH2 0x1ED5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1ECC SWAP1 PUSH2 0x399A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EED DUP6 DUP6 PUSH1 0x0 ADD PUSH2 0x2873 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x0 ADD DUP1 SLOAD SWAP1 POP DUP2 EQ ISZERO PUSH2 0x1F0B JUMPI PUSH1 0x0 DUP1 SWAP3 POP SWAP3 POP POP PUSH2 0x1F34 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH1 0x1 ADD DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F23 JUMPI PUSH2 0x1F22 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP3 POP SWAP3 POP POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F46 DUP4 PUSH2 0x946 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1F53 DUP5 PUSH2 0xA2E JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0xC PUSH1 0x0 DUP7 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x204F DUP3 DUP5 DUP4 PUSH2 0x25A2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x2123 PUSH2 0x294D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x2167 PUSH2 0x1642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2174 SWAP2 SWAP1 PUSH2 0x37C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x218A PUSH1 0x8 PUSH2 0x2997 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2194 PUSH2 0x2862 JUMP JUMPDEST SWAP1 POP PUSH32 0x8030E83B04D87BEF53480E26263266D6CA66863AA8506ACA6F2559D18AA1CB67 DUP2 PUSH1 0x40 MLOAD PUSH2 0x21C5 SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21E7 PUSH2 0x21E1 PUSH2 0x1B22 JUMP JUMPDEST DUP4 PUSH2 0x29AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x21FF DUP8 DUP8 DUP8 DUP8 PUSH2 0x29E0 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x220C DUP2 PUSH2 0x2AED JUMP JUMPDEST DUP2 SWAP3 POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2266 DUP2 PUSH2 0x1634 JUMP JUMPDEST SWAP2 POP PUSH2 0x2271 DUP2 PUSH2 0x2997 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 DUP2 EQ PUSH2 0x2309 JUMPI DUP6 PUSH1 0x1 DUP3 PUSH2 0x22BD SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x22CE JUMPI PUSH2 0x22CD PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x230C JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH2 0x233A DUP4 DUP6 DUP8 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x238D JUMPI POP NUMBER DUP7 PUSH1 0x1 DUP4 PUSH2 0x2356 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2367 JUMPI PUSH2 0x2366 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND EQ JUMPDEST ISZERO PUSH2 0x241A JUMPI PUSH2 0x239B DUP3 PUSH2 0x1471 JUMP JUMPDEST DUP7 PUSH1 0x1 DUP4 PUSH2 0x23A9 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x23BA JUMPI PUSH2 0x23B9 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x250A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x242F NUMBER PUSH2 0x14DC JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2443 DUP6 PUSH2 0x1471 JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH4 0xFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP JUMPDEST POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x251B PUSH2 0x294D JUMP JUMPDEST PUSH2 0x2526 DUP4 DUP4 DUP4 PUSH2 0x152F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2536 DUP4 DUP4 DUP4 PUSH2 0x15E9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x258B PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x2586 DUP4 PUSH2 0xA2E JUMP JUMPDEST PUSH2 0x2CC2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x25A0 PUSH1 0x6 PUSH2 0x259B PUSH2 0x77E JUMP JUMPDEST PUSH2 0x2CC2 JUMP JUMPDEST JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x25DE JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x2796 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x26BC JUMPI PUSH1 0x0 DUP1 PUSH2 0x2665 PUSH1 0xD PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x161E DUP6 PUSH2 0x229B JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x26B1 SWAP3 SWAP2 SWAP1 PUSH2 0x3D30 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2795 JUMPI PUSH1 0x0 DUP1 PUSH2 0x273E PUSH1 0xD PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x145B DUP6 PUSH2 0x229B JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x278A SWAP3 SWAP2 SWAP1 PUSH2 0x3D30 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x27B6 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x38C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DUP5 XOR PUSH2 0x27E6 SWAP2 SWAP1 PUSH2 0x3E0C JUMP JUMPDEST DUP3 DUP5 AND PUSH2 0x27F3 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2803 PUSH2 0x9C3 JUMP JUMPDEST PUSH2 0x2842 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2839 SWAP1 PUSH2 0x39FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x284E DUP3 DUP3 PUSH2 0x2D3D JUMP JUMPDEST PUSH2 0x285C PUSH1 0xE PUSH2 0x161E DUP4 PUSH2 0x229B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x286E PUSH1 0x8 PUSH2 0x1634 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x288A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2947 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 DUP1 SLOAD SWAP1 POP SWAP1 POP JUMPDEST DUP1 DUP3 LT ISZERO PUSH2 0x28EE JUMPI PUSH1 0x0 PUSH2 0x28A9 DUP4 DUP4 PUSH2 0x27D5 JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x28BF JUMPI PUSH2 0x28BE PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD GT ISZERO PUSH2 0x28D8 JUMPI DUP1 SWAP2 POP PUSH2 0x28E8 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH2 0x28E5 SWAP2 SWAP1 PUSH2 0x3DB6 JUMP JUMPDEST SWAP3 POP JUMPDEST POP PUSH2 0x2895 JUMP JUMPDEST PUSH1 0x0 DUP3 GT DUP1 ISZERO PUSH2 0x2926 JUMPI POP DUP4 DUP6 PUSH1 0x1 DUP5 PUSH2 0x2908 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2919 JUMPI PUSH2 0x2918 PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ JUMPDEST ISZERO PUSH2 0x2941 JUMPI PUSH1 0x1 DUP3 PUSH2 0x2938 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x2947 JUMP JUMPDEST DUP2 SWAP3 POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2955 PUSH2 0x9C3 JUMP JUMPDEST ISZERO PUSH2 0x2995 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x298C SWAP1 PUSH2 0x3B5A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x29C2 SWAP3 SWAP2 SWAP1 PUSH2 0x3792 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 PUSH1 0x0 SHR GT ISZERO PUSH2 0x2A1B JUMPI PUSH1 0x0 PUSH1 0x3 SWAP2 POP SWAP2 POP PUSH2 0x2AE4 JUMP JUMPDEST PUSH1 0x1B DUP6 PUSH1 0xFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x2A33 JUMPI POP PUSH1 0x1C DUP6 PUSH1 0xFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x2A45 JUMPI PUSH1 0x0 PUSH1 0x4 SWAP2 POP SWAP2 POP PUSH2 0x2AE4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP8 DUP8 DUP8 DUP8 PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x2A6A SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3913 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A8C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2ADB JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x2AE4 JUMP JUMPDEST DUP1 PUSH1 0x0 SWAP3 POP SWAP3 POP POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2B01 JUMPI PUSH2 0x2B00 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2B14 JUMPI PUSH2 0x2B13 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST EQ ISZERO PUSH2 0x2B1F JUMPI PUSH2 0x2CBF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2B33 JUMPI PUSH2 0x2B32 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2B46 JUMPI PUSH2 0x2B45 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST EQ ISZERO PUSH2 0x2B87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B7E SWAP1 PUSH2 0x397A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2B9B JUMPI PUSH2 0x2B9A PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2BAE JUMPI PUSH2 0x2BAD PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST EQ ISZERO PUSH2 0x2BEF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BE6 SWAP1 PUSH2 0x3A5A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2C03 JUMPI PUSH2 0x2C02 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2C16 JUMPI PUSH2 0x2C15 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST EQ ISZERO PUSH2 0x2C57 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C4E SWAP1 PUSH2 0x3B3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 DUP1 DUP2 GT ISZERO PUSH2 0x2C6A JUMPI PUSH2 0x2C69 PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2C7D JUMPI PUSH2 0x2C7C PUSH2 0x3FD5 JUMP JUMPDEST JUMPDEST EQ ISZERO PUSH2 0x2CBE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CB5 SWAP1 PUSH2 0x3B7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CCC PUSH2 0x2862 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x2CDB DUP5 PUSH1 0x0 ADD PUSH2 0x2F14 JUMP JUMPDEST LT ISZERO PUSH2 0x2D38 JUMPI DUP3 PUSH1 0x0 ADD DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP3 PUSH1 0x1 ADD DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2DAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2DA4 SWAP1 PUSH2 0x3C1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DB9 DUP3 PUSH1 0x0 DUP4 PUSH2 0x2513 JUMP JUMPDEST PUSH1 0x0 DUP1 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 DUP2 DUP2 LT ISZERO PUSH2 0x2E3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E36 SWAP1 PUSH2 0x3A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 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 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2E96 SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x2EFB SWAP2 SWAP1 PUSH2 0x3D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x2F0F DUP4 PUSH1 0x0 DUP5 PUSH2 0x252B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x2F2B JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2F5C JUMP JUMPDEST DUP2 PUSH1 0x1 DUP4 DUP1 SLOAD SWAP1 POP PUSH2 0x2F3D SWAP2 SWAP1 PUSH2 0x3E3D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2F4E JUMPI PUSH2 0x2F4D PUSH2 0x4033 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FAE DUP2 PUSH2 0x4731 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FC3 DUP2 PUSH2 0x4748 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FD8 DUP2 PUSH2 0x475F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FED DUP2 PUSH2 0x4776 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3002 DUP2 PUSH2 0x478D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x301E JUMPI PUSH2 0x301D PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x302C DUP5 DUP3 DUP6 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x304C JUMPI PUSH2 0x304B PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x305A DUP6 DUP3 DUP7 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x306B DUP6 DUP3 DUP7 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x308E JUMPI PUSH2 0x308D PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x309C DUP7 DUP3 DUP8 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x30AD DUP7 DUP3 DUP8 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x30BE DUP7 DUP3 DUP8 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x30E7 JUMPI PUSH2 0x30E6 PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x30F5 DUP11 DUP3 DUP12 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x3106 DUP11 DUP3 DUP12 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x3117 DUP11 DUP3 DUP12 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x3128 DUP11 DUP3 DUP12 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x3139 DUP11 DUP3 DUP12 ADD PUSH2 0x2FF3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x314A DUP11 DUP3 DUP12 ADD PUSH2 0x2FB4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x315B DUP11 DUP3 DUP12 ADD PUSH2 0x2FB4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3181 JUMPI PUSH2 0x3180 PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x318F DUP6 DUP3 DUP7 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x31A0 DUP6 DUP3 DUP7 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x31C7 JUMPI PUSH2 0x31C6 PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x31D5 DUP10 DUP3 DUP11 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP7 POP POP PUSH1 0x20 PUSH2 0x31E6 DUP10 DUP3 DUP11 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x40 PUSH2 0x31F7 DUP10 DUP3 DUP11 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x60 PUSH2 0x3208 DUP10 DUP3 DUP11 ADD PUSH2 0x2FF3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x80 PUSH2 0x3219 DUP10 DUP3 DUP11 ADD PUSH2 0x2FB4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 PUSH2 0x322A DUP10 DUP3 DUP11 ADD PUSH2 0x2FB4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x324E JUMPI PUSH2 0x324D PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x325C DUP6 DUP3 DUP7 ADD PUSH2 0x2F9F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x326D DUP6 DUP3 DUP7 ADD PUSH2 0x2FDE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x328D JUMPI PUSH2 0x328C PUSH2 0x4062 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x329B DUP5 DUP3 DUP6 ADD PUSH2 0x2FC9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x32AD DUP2 PUSH2 0x3E71 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32BC DUP2 PUSH2 0x3E83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32CB DUP2 PUSH2 0x3E8F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32E2 PUSH2 0x32DD DUP3 PUSH2 0x3E8F JUMP JUMPDEST PUSH2 0x3F6D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32F3 DUP3 PUSH2 0x3D8F JUMP JUMPDEST PUSH2 0x32FD DUP2 DUP6 PUSH2 0x3D9A JUMP JUMPDEST SWAP4 POP PUSH2 0x330D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3F08 JUMP JUMPDEST PUSH2 0x3316 DUP2 PUSH2 0x4067 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x332E PUSH1 0x18 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3339 DUP3 PUSH2 0x4078 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3351 PUSH1 0x1D DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x335C DUP3 PUSH2 0x40A1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3374 PUSH1 0x23 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x337F DUP3 PUSH2 0x40CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3397 PUSH1 0x1F DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x33A2 DUP3 PUSH2 0x4119 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33BA PUSH1 0x14 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x33C5 DUP3 PUSH2 0x4142 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33DD PUSH1 0x1D DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x33E8 DUP3 PUSH2 0x416B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3400 PUSH1 0x22 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x340B DUP3 PUSH2 0x4194 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3423 PUSH1 0x1F DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x342E DUP3 PUSH2 0x41E3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3446 PUSH1 0x19 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3451 DUP3 PUSH2 0x420C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3469 PUSH1 0x26 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3474 DUP3 PUSH2 0x4235 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x348C PUSH1 0x22 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3497 DUP3 PUSH2 0x4284 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34AF PUSH1 0x2 DUP4 PUSH2 0x3DAB JUMP JUMPDEST SWAP2 POP PUSH2 0x34BA DUP3 PUSH2 0x42D3 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34D2 PUSH1 0x1D DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x34DD DUP3 PUSH2 0x42FC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34F5 PUSH1 0x1D DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3500 DUP3 PUSH2 0x4325 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3518 PUSH1 0x26 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3523 DUP3 PUSH2 0x434E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x353B PUSH1 0x22 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3546 DUP3 PUSH2 0x439D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x355E PUSH1 0x10 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3569 DUP3 PUSH2 0x43EC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3581 PUSH1 0x22 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x358C DUP3 PUSH2 0x4415 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35A4 PUSH1 0x1E DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x35AF DUP3 PUSH2 0x4464 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C7 PUSH1 0x30 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x35D2 DUP3 PUSH2 0x448D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35EA PUSH1 0x20 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x35F5 DUP3 PUSH2 0x44DC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x360D PUSH1 0x27 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3618 DUP3 PUSH2 0x4505 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3630 PUSH1 0x21 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x363B DUP3 PUSH2 0x4554 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3653 PUSH1 0x25 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x365E DUP3 PUSH2 0x45A3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3676 PUSH1 0x26 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x3681 DUP3 PUSH2 0x45F2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3699 PUSH1 0x24 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x36A4 DUP3 PUSH2 0x4641 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36BC PUSH1 0x16 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x36C7 DUP3 PUSH2 0x4690 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36DF PUSH1 0x25 DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x36EA DUP3 PUSH2 0x46B9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3702 PUSH1 0x1F DUP4 PUSH2 0x3D9A JUMP JUMPDEST SWAP2 POP PUSH2 0x370D DUP3 PUSH2 0x4708 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x372E PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x3765 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x3741 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x3747 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x3750 DUP2 PUSH2 0x3EB9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x375F DUP2 PUSH2 0x3EE1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x376E DUP2 PUSH2 0x3EEB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x377D DUP2 PUSH2 0x3EEB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x378C DUP2 PUSH2 0x3EFB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x379D DUP3 PUSH2 0x34A2 JUMP JUMPDEST SWAP2 POP PUSH2 0x37A9 DUP3 DUP6 PUSH2 0x32D1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x37B9 DUP3 DUP5 PUSH2 0x32D1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37DE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32A4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37F9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32B3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3814 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32C2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0x382F PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x383C PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x32A4 JUMP JUMPDEST PUSH2 0x3849 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x32A4 JUMP JUMPDEST PUSH2 0x3856 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x3756 JUMP JUMPDEST PUSH2 0x3863 PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0x3756 JUMP JUMPDEST PUSH2 0x3870 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x3756 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3890 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x389D PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x32A4 JUMP JUMPDEST PUSH2 0x38AA PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3756 JUMP JUMPDEST PUSH2 0x38B7 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x3756 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x38D5 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x38E2 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x38EF PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x38FC PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x3756 JUMP JUMPDEST PUSH2 0x3909 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x32A4 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3928 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x3935 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3783 JUMP JUMPDEST PUSH2 0x3942 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x32C2 JUMP JUMPDEST PUSH2 0x394F PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x32C2 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3972 DUP2 DUP5 PUSH2 0x32E8 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3993 DUP2 PUSH2 0x3321 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 0x39B3 DUP2 PUSH2 0x3344 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 0x39D3 DUP2 PUSH2 0x3367 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 0x39F3 DUP2 PUSH2 0x338A 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 0x3A13 DUP2 PUSH2 0x33AD 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 0x3A33 DUP2 PUSH2 0x33D0 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 0x3A53 DUP2 PUSH2 0x33F3 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 0x3A73 DUP2 PUSH2 0x3416 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 0x3A93 DUP2 PUSH2 0x3439 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 0x3AB3 DUP2 PUSH2 0x345C 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 0x3AD3 DUP2 PUSH2 0x347F 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 0x3AF3 DUP2 PUSH2 0x34C5 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 0x3B13 DUP2 PUSH2 0x34E8 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 0x3B33 DUP2 PUSH2 0x350B 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 0x3B53 DUP2 PUSH2 0x352E 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 0x3B73 DUP2 PUSH2 0x3551 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 0x3B93 DUP2 PUSH2 0x3574 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 0x3BB3 DUP2 PUSH2 0x3597 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 0x3BD3 DUP2 PUSH2 0x35BA 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 0x3BF3 DUP2 PUSH2 0x35DD 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 0x3C13 DUP2 PUSH2 0x3600 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 0x3C33 DUP2 PUSH2 0x3623 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 0x3C53 DUP2 PUSH2 0x3646 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 0x3C73 DUP2 PUSH2 0x3669 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 0x3C93 DUP2 PUSH2 0x368C 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 0x3CB3 DUP2 PUSH2 0x36AF 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 0x3CD3 DUP2 PUSH2 0x36D2 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 0x3CF3 DUP2 PUSH2 0x36F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3D0F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3718 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D2A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3756 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3D45 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x3756 JUMP JUMPDEST PUSH2 0x3D52 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3756 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3774 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D89 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3783 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DC1 DUP3 PUSH2 0x3EE1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3DCC DUP4 PUSH2 0x3EE1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3E01 JUMPI PUSH2 0x3E00 PUSH2 0x3F77 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E17 DUP3 PUSH2 0x3EE1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E22 DUP4 PUSH2 0x3EE1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3E32 JUMPI PUSH2 0x3E31 PUSH2 0x3FA6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E48 DUP3 PUSH2 0x3EE1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E53 DUP4 PUSH2 0x3EE1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3E66 JUMPI PUSH2 0x3E65 PUSH2 0x3F77 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E7C DUP3 PUSH2 0x3E99 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3F26 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3F0B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3F35 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x3F53 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3F67 JUMPI PUSH2 0x3F66 PUSH2 0x4004 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 0x12 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 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230536E617073686F743A206E6F6E6578697374656E74206964000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230566F7465733A20626C6F636B206E6F7420796574206D696E656400 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230566F7465733A207369676E61747572652065787069726564000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230566F7465733A20696E76616C6964206E6F6E636500000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230566F7465733A20746F74616C20737570706C79207269736B73206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x766572666C6F77696E6720766F74657300000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x3234206269747300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2033 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x3220626974730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433230536E617073686F743A206964206973203000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x473A DUP2 PUSH2 0x3E71 JUMP JUMPDEST DUP2 EQ PUSH2 0x4745 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4751 DUP2 PUSH2 0x3E8F JUMP JUMPDEST DUP2 EQ PUSH2 0x475C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4768 DUP2 PUSH2 0x3EE1 JUMP JUMPDEST DUP2 EQ PUSH2 0x4773 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x477F DUP2 PUSH2 0x3EEB JUMP JUMPDEST DUP2 EQ PUSH2 0x478A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4796 DUP2 PUSH2 0x3EFB JUMP JUMPDEST DUP2 EQ PUSH2 0x47A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2D PUSH21 0xC5E6292015ABDF66EF60969861FCB2DB5D8C39ED2D CODECOPY 0xEE SWAP13 0xE2 DUP9 0xF 0x5C PC PUSH24 0x64736F6C6343000807003300000000000000000000000000 ",
"sourceMap": "616:1338:19:-:0;;;726:137;;;;;;;;;;1835:52:9;;;;;;;;;;;;;;;;;1874:4;2455:602:16;;;;;;;;;;;;;;;;;1978:113:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2052:5;2044;:13;;;;;;;;;;;;:::i;:::-;;2077:7;2067;:17;;;;;;;;;;;;:::i;:::-;;1978:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;1006:5:2;996:7;;:15;;;;;;;;;;;;;;;;;;2520:18:16;2557:4;2541:22;;;;;;2520:43;;2573:21;2613:7;2597:25;;;;;;2573:49;;2632:16;2651:117;2632:136;;2793:10;2778:25;;;;;;2831:13;2813:31;;;;;;2873:13;2854:32;;;;;;2923:58;2945:8;2955:10;2967:13;2923:21;;;:58;;:::i;:::-;2896:85;;;;;;3014:4;2991:28;;;;;;;;;;;;3042:8;3029:21;;;;;;2510:547;;;2455:602;;1835:52:9;811:45:19::2;817:10;845;:8;;;:10;;:::i;:::-;839:2;:16;;;;:::i;:::-;829:7;:26;;;;:::i;:::-;811:5;;;:45;;:::i;:::-;616:1338:::0;;640:96:12;693:7;719:10;712:17;;640:96;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;3457:257:16:-;3597:7;3644:8;3654;3664:11;3677:13;3700:4;3633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3623:84;;;;;;3616:91;;3457:257;;;;;:::o;3093:91:3:-;3151:5;3175:2;3168:9;;3093:91;:::o;1656:140:19:-;1766:23;1778:2;1782:6;1766:11;;;;;:23;;:::i;:::-;1656:140;;:::o;6305:285:7:-;6389:28;6401:7;6410:6;6389:11;;;;;:28;;:::i;:::-;6452:12;:10;;;:12;;:::i;:::-;6435:29;;:13;:11;;;:13;;:::i;:::-;:29;;6427:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;6528:55;6545:23;6570:4;;;;;6576:6;6528:16;;;:55;;:::i;:::-;;;6305:285;;:::o;8402:389:3:-;8504:1;8485:21;;:7;:21;;;;8477:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8553:49;8582:1;8586:7;8595:6;8553:20;;;:49;;:::i;:::-;8629:6;8613:12;;:22;;;;;;;:::i;:::-;;;;;;;;8667:6;8645:9;:18;8655:7;8645:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8709:7;8688:37;;8705:1;8688:37;;;8718:6;8688:37;;;;;;:::i;:::-;;;;;;;;8736:48;8764:1;8768:7;8777:6;8736:19;;;:48;;:::i;:::-;8402:389;;:::o;6113:103:7:-;6166:7;6192:17;6185:24;;6113:103;:::o;3244:106:3:-;3305:7;3331:12;;3324:19;;3244:106;:::o;9069:96:7:-;9127:7;9157:1;9153;:5;;;;:::i;:::-;9146:12;;9069:96;;;;:::o;8432:631::-;8602:17;8621;8650:11;8664:5;:12;;;;8650:26;;8705:1;8698:3;:8;:35;;8713:5;8725:1;8719:3;:7;;;;:::i;:::-;8713:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;8698:35;;;8709:1;8698:35;8686:47;;;;8755:20;8758:9;8769:5;8755:2;:20;;:::i;:::-;8743:32;;8796:1;8790:3;:7;:51;;;;;8829:12;8801:5;8813:1;8807:3;:7;;;;:::i;:::-;8801:14;;;;;;;;:::i;:::-;;;;;;;;;:24;;;;;;;;;;;;:40;;;8790:51;8786:271;;;8880:29;8899:9;8880:18;;;;;:29;;:::i;:::-;8857:5;8869:1;8863:3;:7;;;;:::i;:::-;8857:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;8786:271;;;8940:5;8951:94;;;;;;;;8974:31;8992:12;8974:17;;;;;:31;;:::i;:::-;8951:94;;;;;;9014:29;9033:9;9014:18;;;;;:29;;:::i;:::-;8951:94;;;;;8940:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8786:271;8640:423;8432:631;;;;;;:::o;1173:215:19:-;1239:19:2;:17;;;:19;;:::i;:::-;1337:44:19::1;1364:4;1370:2;1374:6;1337:26;;;;;:44;;:::i;:::-;1173:215:::0;;;:::o;1462:188::-;1600:43;1626:4;1632:2;1636:6;1600:25;;;;;:43;;:::i;:::-;1462:188;;;:::o;2751:192:18:-;2808:7;2844:17;2835:26;;:5;:26;;2827:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2930:5;2915:21;;2751:192;;;:::o;15179:187::-;15235:6;15270:16;15261:25;;:5;:25;;15253:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;15353:5;15339:20;;15179:187;;;:::o;1767:106:2:-;1837:8;:6;;;:8;;:::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;5802:602:6:-;5940:44;5967:4;5973:2;5977:6;5940:26;;;;;:44;;:::i;:::-;6015:1;5999:18;;:4;:18;;;5995:403;;;6053:26;6076:2;6053:22;;;:26;;:::i;:::-;6093:28;:26;;;:28;;:::i;:::-;5995:403;;;6156:1;6142:16;;:2;:16;;;6138:260;;;6194:28;6217:4;6194:22;;;:28;;:::i;:::-;6236;:26;;;:28;;:::i;:::-;6138:260;;;6319:28;6342:4;6319:22;;;:28;;:::i;:::-;6361:26;6384:2;6361:22;;;:26;;:::i;:::-;6138:260;5995:403;5802:602;;;:::o;7002:254:7:-;7139:43;7165:4;7171:2;7175:6;7139:25;;;;;:43;;:::i;:::-;7193:56;7210:15;7220:4;7210:9;;;:15;;:::i;:::-;7227:13;7237:2;7227:9;;;:13;;:::i;:::-;7242:6;7193:16;;;:56;;:::i;:::-;7002:254;;;:::o;1615:84:2:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;11786:121:3:-;;;;:::o;8010:144:6:-;8077:70;8093:24;:33;8118:7;8093:33;;;;;;;;;;;;;;;8128:18;8138:7;8128:9;;;:18;;:::i;:::-;8077:15;;;:70;;:::i;:::-;8010:144;:::o;8160:116::-;8216:53;8232:21;8255:13;:11;;;:13;;:::i;:::-;8216:15;;;:53;;:::i;:::-;8160:116::o;12495:120:3:-;;;;:::o;2218:126:7:-;2292:7;2318:10;:19;2329:7;2318:19;;;;;;;;;;;;;;;;;;;;;;;;;2311:26;;2218:126;;;:::o;7799:627::-;7926:3;7919:10;;:3;:10;;;;:24;;;;;7942:1;7933:6;:10;7919:24;7915:505;;;7978:1;7963:17;;:3;:17;;;7959:221;;8001:17;8020;8041:54;8058:12;:17;8071:3;8058:17;;;;;;;;;;;;;;;8077:9;;;;;8088:6;8041:16;;;:54;;:::i;:::-;8000:95;;;;8139:3;8118:47;;;8144:9;8155;8118:47;;;;;;;:::i;:::-;;;;;;;;7982:198;;7959:221;8213:1;8198:17;;:3;:17;;;8194:216;;8236:17;8255;8276:49;8293:12;:17;8306:3;8293:17;;;;;;;;;;;;;;;8312:4;;;;;8318:6;8276:16;;;:49;;:::i;:::-;8235:90;;;;8369:3;8348:47;;;8374:9;8385;8348:47;;;;;;;:::i;:::-;;;;;;;;8217:193;;8194:216;7915:505;7799:627;;;:::o;3408:125:3:-;3482:7;3508:9;:18;3518:7;3508:18;;;;;;;;;;;;;;;;3501:25;;3408:125;;;:::o;8282:304:6:-;8376:17;8396:23;:21;;;:23;;:::i;:::-;8376:43;;8466:9;8433:30;8449:9;:13;;8433:15;;;:30;;:::i;:::-;:42;8429:151;;;8491:9;:13;;8510:9;8491:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8534:9;:16;;8556:12;8534:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8429:151;8366:220;8282:304;;:::o;9171:101:7:-;9234:7;9264:1;9260;:5;;;;:::i;:::-;9253:12;;9171:101;;;;:::o;4766:125:6:-;4830:7;4856:28;:18;:26;;;;;:28;;:::i;:::-;4849:35;;4766:125;:::o;8592:206::-;8662:7;8699:1;8685:3;:10;;;;:15;8681:111;;;8723:1;8716:8;;;;8681:111;8762:3;8779:1;8766:3;:10;;;;:14;;;;:::i;:::-;8762:19;;;;;;;;:::i;:::-;;;;;;;;;;8755:26;;8592:206;;;;:::o;827:112:13:-;892:7;918;:14;;;911:21;;827:112;;;:::o;616:1338:19:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:118:20:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;7:118;;:::o;131:::-;218:24;236:5;218:24;:::i;:::-;213:3;206:37;131:118;;:::o;255:366::-;397:3;418:67;482:2;477:3;418:67;:::i;:::-;411:74;;494:93;583:3;494:93;:::i;:::-;612:2;607:3;603:12;596:19;;255:366;;;:::o;627:::-;769:3;790:67;854:2;849:3;790:67;:::i;:::-;783:74;;866:93;955:3;866:93;:::i;:::-;984:2;979:3;975:12;968:19;;627:366;;;:::o;999:::-;1141:3;1162:67;1226:2;1221:3;1162:67;:::i;:::-;1155:74;;1238:93;1327:3;1238:93;:::i;:::-;1356:2;1351:3;1347:12;1340:19;;999:366;;;:::o;1371:::-;1513:3;1534:67;1598:2;1593:3;1534:67;:::i;:::-;1527:74;;1610:93;1699:3;1610:93;:::i;:::-;1728:2;1723:3;1719:12;1712:19;;1371:366;;;:::o;1743:::-;1885:3;1906:67;1970:2;1965:3;1906:67;:::i;:::-;1899:74;;1982:93;2071:3;1982:93;:::i;:::-;2100:2;2095:3;2091:12;2084:19;;1743:366;;;:::o;2115:118::-;2202:24;2220:5;2202:24;:::i;:::-;2197:3;2190:37;2115:118;;:::o;2239:664::-;2444:4;2482:3;2471:9;2467:19;2459:27;;2496:71;2564:1;2553:9;2549:17;2540:6;2496:71;:::i;:::-;2577:72;2645:2;2634:9;2630:18;2621:6;2577:72;:::i;:::-;2659;2727:2;2716:9;2712:18;2703:6;2659:72;:::i;:::-;2741;2809:2;2798:9;2794:18;2785:6;2741:72;:::i;:::-;2823:73;2891:3;2880:9;2876:19;2867:6;2823:73;:::i;:::-;2239:664;;;;;;;;:::o;2909:419::-;3075:4;3113:2;3102:9;3098:18;3090:26;;3162:9;3156:4;3152:20;3148:1;3137:9;3133:17;3126:47;3190:131;3316:4;3190:131;:::i;:::-;3182:139;;2909:419;;;:::o;3334:::-;3500:4;3538:2;3527:9;3523:18;3515:26;;3587:9;3581:4;3577:20;3573:1;3562:9;3558:17;3551:47;3615:131;3741:4;3615:131;:::i;:::-;3607:139;;3334:419;;;:::o;3759:::-;3925:4;3963:2;3952:9;3948:18;3940:26;;4012:9;4006:4;4002:20;3998:1;3987:9;3983:17;3976:47;4040:131;4166:4;4040:131;:::i;:::-;4032:139;;3759:419;;;:::o;4184:::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4437:9;4431:4;4427:20;4423:1;4412:9;4408:17;4401:47;4465:131;4591:4;4465:131;:::i;:::-;4457:139;;4184:419;;;:::o;4609:::-;4775:4;4813:2;4802:9;4798:18;4790:26;;4862:9;4856:4;4852:20;4848:1;4837:9;4833:17;4826:47;4890:131;5016:4;4890:131;:::i;:::-;4882:139;;4609:419;;;:::o;5034:222::-;5127:4;5165:2;5154:9;5150:18;5142:26;;5178:71;5246:1;5235:9;5231:17;5222:6;5178:71;:::i;:::-;5034:222;;;;:::o;5262:332::-;5383:4;5421:2;5410:9;5406:18;5398:26;;5434:71;5502:1;5491:9;5487:17;5478:6;5434:71;:::i;:::-;5515:72;5583:2;5572:9;5568:18;5559:6;5515:72;:::i;:::-;5262:332;;;;;:::o;5600:169::-;5684:11;5718:6;5713:3;5706:19;5758:4;5753:3;5749:14;5734:29;;5600:169;;;;:::o;5775:305::-;5815:3;5834:20;5852:1;5834:20;:::i;:::-;5829:25;;5868:20;5886:1;5868:20;:::i;:::-;5863:25;;6022:1;5954:66;5950:74;5947:1;5944:81;5941:107;;;6028:18;;:::i;:::-;5941:107;6072:1;6069;6065:9;6058:16;;5775:305;;;;:::o;6086:848::-;6147:5;6154:4;6178:6;6169:15;;6202:5;6193:14;;6216:712;6237:1;6227:8;6224:15;6216:712;;;6332:4;6327:3;6323:14;6317:4;6314:24;6311:50;;;6341:18;;:::i;:::-;6311:50;6391:1;6381:8;6377:16;6374:451;;;6806:4;6799:5;6795:16;6786:25;;6374:451;6856:4;6850;6846:15;6838:23;;6886:32;6909:8;6886:32;:::i;:::-;6874:44;;6216:712;;;6086:848;;;;;;;:::o;6940:281::-;6998:5;7022:23;7040:4;7022:23;:::i;:::-;7014:31;;7066:25;7082:8;7066:25;:::i;:::-;7054:37;;7110:104;7147:66;7137:8;7131:4;7110:104;:::i;:::-;7101:113;;6940:281;;;;:::o;7227:1073::-;7281:5;7472:8;7462:40;;7493:1;7484:10;;7495:5;;7462:40;7521:4;7511:36;;7538:1;7529:10;;7540:5;;7511:36;7607:4;7655:1;7650:27;;;;7691:1;7686:191;;;;7600:277;;7650:27;7668:1;7659:10;;7670:5;;;7686:191;7731:3;7721:8;7718:17;7715:43;;;7738:18;;:::i;:::-;7715:43;7787:8;7784:1;7780:16;7771:25;;7822:3;7815:5;7812:14;7809:40;;;7829:18;;:::i;:::-;7809:40;7862:5;;;7600:277;;7986:2;7976:8;7973:16;7967:3;7961:4;7958:13;7954:36;7936:2;7926:8;7923:16;7918:2;7912:4;7909:12;7905:35;7889:111;7886:246;;;8042:8;8036:4;8032:19;8023:28;;8077:3;8070:5;8067:14;8064:40;;;8084:18;;:::i;:::-;8064:40;8117:5;;7886:246;8157:42;8195:3;8185:8;8179:4;8176:1;8157:42;:::i;:::-;8142:57;;;;8231:4;8226:3;8222:14;8215:5;8212:25;8209:51;;;8240:18;;:::i;:::-;8209:51;8289:4;8282:5;8278:16;8269:25;;7227:1073;;;;;;:::o;8306:348::-;8346:7;8369:20;8387:1;8369:20;:::i;:::-;8364:25;;8403:20;8421:1;8403:20;:::i;:::-;8398:25;;8591:1;8523:66;8519:74;8516:1;8513:81;8508:1;8501:9;8494:17;8490:105;8487:131;;;8598:18;;:::i;:::-;8487:131;8646:1;8643;8639:9;8628:20;;8306:348;;;;:::o;8660:191::-;8700:4;8720:20;8738:1;8720:20;:::i;:::-;8715:25;;8754:20;8772:1;8754:20;:::i;:::-;8749:25;;8793:1;8790;8787:8;8784:34;;;8798:18;;:::i;:::-;8784:34;8843:1;8840;8836:9;8828:17;;8660:191;;;;:::o;8857:96::-;8894:7;8923:24;8941:5;8923:24;:::i;:::-;8912:35;;8857:96;;;:::o;8959:77::-;8996:7;9025:5;9014:16;;8959:77;;;:::o;9042:126::-;9079:7;9119:42;9112:5;9108:54;9097:65;;9042:126;;;:::o;9174:77::-;9211:7;9240:5;9229:16;;9174:77;;;:::o;9257:86::-;9292:7;9332:4;9325:5;9321:16;9310:27;;9257:86;;;:::o;9349:320::-;9393:6;9430:1;9424:4;9420:12;9410:22;;9477:1;9471:4;9467:12;9498:18;9488:81;;9554:4;9546:6;9542:17;9532:27;;9488:81;9616:2;9608:6;9605:14;9585:18;9582:38;9579:84;;;9635:18;;:::i;:::-;9579:84;9400:269;9349:320;;;:::o;9675:180::-;9723:77;9720:1;9713:88;9820:4;9817:1;9810:15;9844:4;9841:1;9834:15;9861:180;9909:77;9906:1;9899:88;10006:4;10003:1;9996:15;10030:4;10027:1;10020:15;10047:180;10095:77;10092:1;10085:88;10192:4;10189:1;10182:15;10216:4;10213:1;10206:15;10233:102;10275:8;10322:5;10319:1;10315:13;10294:34;;10233:102;;;:::o;10341:166::-;10481:18;10477:1;10469:6;10465:14;10458:42;10341:166;:::o;10513:235::-;10653:34;10649:1;10641:6;10637:14;10630:58;10722:18;10717:2;10709:6;10705:15;10698:43;10513:235;:::o;10754:226::-;10894:34;10890:1;10882:6;10878:14;10871:58;10963:9;10958:2;10950:6;10946:15;10939:34;10754:226;:::o;10986:225::-;11126:34;11122:1;11114:6;11110:14;11103:58;11195:8;11190:2;11182:6;11178:15;11171:33;10986:225;:::o;11217:181::-;11357:33;11353:1;11345:6;11341:14;11334:57;11217:181;:::o;616:1338:19:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DOMAIN_SEPARATOR_2138": {
"entryPoint": 1984,
"id": 2138,
"parameterSlots": 0,
"returnSlots": 1
},
"@_add_1956": {
"entryPoint": 5211,
"id": 1956,
"parameterSlots": 2,
"returnSlots": 1
},
"@_afterTokenTransfer_1738": {
"entryPoint": 5609,
"id": 1738,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_5659": {
"entryPoint": 9515,
"id": 5659,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_883": {
"entryPoint": 5657,
"id": 883,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_818": {
"entryPoint": 5706,
"id": 818,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1190": {
"entryPoint": 5423,
"id": 1190,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_5638": {
"entryPoint": 9491,
"id": 5638,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_872": {
"entryPoint": 5652,
"id": 872,
"parameterSlots": 3,
"returnSlots": 0
},
"@_buildDomainSeparator_3155": {
"entryPoint": 10139,
"id": 3155,
"parameterSlots": 3,
"returnSlots": 1
},
"@_burn_1708": {
"entryPoint": 10308,
"id": 1708,
"parameterSlots": 2,
"returnSlots": 0
},
"@_burn_5695": {
"entryPoint": 7735,
"id": 5695,
"parameterSlots": 2,
"returnSlots": 0
},
"@_burn_773": {
"entryPoint": 11581,
"id": 773,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkOwner_54": {
"entryPoint": 7496,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkpointsLookup_1566": {
"entryPoint": 7228,
"id": 1566,
"parameterSlots": 2,
"returnSlots": 1
},
"@_delegate_1777": {
"entryPoint": 7995,
"id": 1777,
"parameterSlots": 2,
"returnSlots": 0
},
"@_domainSeparatorV4_3128": {
"entryPoint": 6946,
"id": 3128,
"parameterSlots": 0,
"returnSlots": 1
},
"@_getCurrentSnapshotId_1079": {
"entryPoint": 10338,
"id": 1079,
"parameterSlots": 0,
"returnSlots": 1
},
"@_hashTypedDataV4_3171": {
"entryPoint": 8660,
"id": 3171,
"parameterSlots": 1,
"returnSlots": 1
},
"@_lastSnapshotId_1333": {
"entryPoint": 12052,
"id": 1333,
"parameterSlots": 1,
"returnSlots": 1
},
"@_maxSupply_1653": {
"entryPoint": 8823,
"id": 1653,
"parameterSlots": 0,
"returnSlots": 1
},
"@_mint_1685": {
"entryPoint": 4718,
"id": 1685,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_5677": {
"entryPoint": 7721,
"id": 5677,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_701": {
"entryPoint": 4859,
"id": 701,
"parameterSlots": 2,
"returnSlots": 0
},
"@_moveVotingPower_1848": {
"entryPoint": 9634,
"id": 1848,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_2301": {
"entryPoint": 5698,
"id": 2301,
"parameterSlots": 0,
"returnSlots": 1
},
"@_pause_281": {
"entryPoint": 8475,
"id": 281,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requireNotPaused_254": {
"entryPoint": 10573,
"id": 254,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requirePaused_265": {
"entryPoint": 10235,
"id": 265,
"parameterSlots": 0,
"returnSlots": 0
},
"@_snapshot_1068": {
"entryPoint": 8574,
"id": 1068,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_861": {
"entryPoint": 6165,
"id": 861,
"parameterSlots": 3,
"returnSlots": 0
},
"@_subtract_1970": {
"entryPoint": 5662,
"id": 1970,
"parameterSlots": 2,
"returnSlots": 1
},
"@_throwError_2675": {
"entryPoint": 10989,
"id": 2675,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 8277,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_645": {
"entryPoint": 6305,
"id": 645,
"parameterSlots": 3,
"returnSlots": 0
},
"@_unpause_297": {
"entryPoint": 7622,
"id": 297,
"parameterSlots": 0,
"returnSlots": 0
},
"@_updateAccountSnapshot_1260": {
"entryPoint": 9531,
"id": 1260,
"parameterSlots": 1,
"returnSlots": 0
},
"@_updateSnapshot_1308": {
"entryPoint": 11458,
"id": 1308,
"parameterSlots": 2,
"returnSlots": 0
},
"@_updateTotalSupplySnapshot_1270": {
"entryPoint": 9614,
"id": 1270,
"parameterSlots": 0,
"returnSlots": 0
},
"@_useNonce_2167": {
"entryPoint": 8729,
"id": 2167,
"parameterSlots": 1,
"returnSlots": 1
},
"@_valueAt_1245": {
"entryPoint": 7749,
"id": 1245,
"parameterSlots": 2,
"returnSlots": 2
},
"@_writeCheckpoint_1942": {
"entryPoint": 8859,
"id": 1942,
"parameterSlots": 3,
"returnSlots": 2
},
"@allowance_440": {
"entryPoint": 4179,
"id": 440,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_465": {
"entryPoint": 1883,
"id": 465,
"parameterSlots": 2,
"returnSlots": 1
},
"@average_3238": {
"entryPoint": 10197,
"id": 3238,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOfAt_1108": {
"entryPoint": 2262,
"id": 1108,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_397": {
"entryPoint": 2606,
"id": 397,
"parameterSlots": 1,
"returnSlots": 1
},
"@burnFrom_1005": {
"entryPoint": 2698,
"id": 1005,
"parameterSlots": 2,
"returnSlots": 0
},
"@burn_984": {
"entryPoint": 2242,
"id": 984,
"parameterSlots": 1,
"returnSlots": 0
},
"@checkpoints_1388": {
"entryPoint": 4314,
"id": 1388,
"parameterSlots": 2,
"returnSlots": 1
},
"@current_2329": {
"entryPoint": 5684,
"id": 2329,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_373": {
"entryPoint": 1975,
"id": 373,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_568": {
"entryPoint": 3443,
"id": 568,
"parameterSlots": 2,
"returnSlots": 1
},
"@delegateBySig_1640": {
"entryPoint": 3597,
"id": 1640,
"parameterSlots": 6,
"returnSlots": 0
},
"@delegate_1580": {
"entryPoint": 2479,
"id": 1580,
"parameterSlots": 1,
"returnSlots": 0
},
"@delegates_1419": {
"entryPoint": 2374,
"id": 1419,
"parameterSlots": 1,
"returnSlots": 1
},
"@findUpperBound_2288": {
"entryPoint": 10355,
"id": 2288,
"parameterSlots": 2,
"returnSlots": 1
},
"@getPastTotalSupply_1500": {
"entryPoint": 2870,
"id": 1500,
"parameterSlots": 1,
"returnSlots": 1
},
"@getPastVotes_1477": {
"entryPoint": 2054,
"id": 1477,
"parameterSlots": 2,
"returnSlots": 1
},
"@getVotes_1450": {
"entryPoint": 3170,
"id": 1450,
"parameterSlots": 1,
"returnSlots": 1
},
"@increaseAllowance_527": {
"entryPoint": 1999,
"id": 527,
"parameterSlots": 2,
"returnSlots": 1
},
"@increment_2343": {
"entryPoint": 10647,
"id": 2343,
"parameterSlots": 1,
"returnSlots": 0
},
"@mint_5615": {
"entryPoint": 2220,
"id": 5615,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_353": {
"entryPoint": 1737,
"id": 353,
"parameterSlots": 0,
"returnSlots": 1
},
"@nonces_2127": {
"entryPoint": 2730,
"id": 2127,
"parameterSlots": 1,
"returnSlots": 1
},
"@numCheckpoints_1405": {
"entryPoint": 2522,
"id": 1405,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2828,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_5591": {
"entryPoint": 2810,
"id": 5591,
"parameterSlots": 0,
"returnSlots": 0
},
"@paused_242": {
"entryPoint": 2499,
"id": 242,
"parameterSlots": 0,
"returnSlots": 1
},
"@permit_2111": {
"entryPoint": 3857,
"id": 2111,
"parameterSlots": 7,
"returnSlots": 0
},
"@recover_2958": {
"entryPoint": 8686,
"id": 2958,
"parameterSlots": 4,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 2678,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@snapshot_5582": {
"entryPoint": 3102,
"id": 5582,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_363": {
"entryPoint": 2956,
"id": 363,
"parameterSlots": 0,
"returnSlots": 1
},
"@toTypedDataHash_3017": {
"entryPoint": 10669,
"id": 3017,
"parameterSlots": 2,
"returnSlots": 1
},
"@toUint224_3779": {
"entryPoint": 5233,
"id": 3779,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUint32_4379": {
"entryPoint": 5340,
"id": 4379,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupplyAt_1132": {
"entryPoint": 3121,
"id": 1132,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_383": {
"entryPoint": 1918,
"id": 383,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_498": {
"entryPoint": 1928,
"id": 498,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_91": {
"entryPoint": 4586,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_422": {
"entryPoint": 3562,
"id": 422,
"parameterSlots": 2,
"returnSlots": 1
},
"@tryRecover_2925": {
"entryPoint": 10720,
"id": 2925,
"parameterSlots": 4,
"returnSlots": 2
},
"@unpause_5600": {
"entryPoint": 2202,
"id": 5600,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 12191,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 12212,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 12233,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint32": {
"entryPoint": 12254,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 12275,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 12296,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 12341,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 12405,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
"entryPoint": 12488,
"id": null,
"parameterSlots": 2,
"returnSlots": 7
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 12650,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
"entryPoint": 12714,
"id": null,
"parameterSlots": 2,
"returnSlots": 6
},
"abi_decode_tuple_t_addresst_uint32": {
"entryPoint": 12855,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 12919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 12964,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 12979,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 12994,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack": {
"entryPoint": 13009,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13032,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13089,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13124,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13159,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13194,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13229,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13264,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13299,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13334,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13404,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13439,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13474,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13509,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13544,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13614,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13684,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13719,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13754,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13824,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13859,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13894,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13929,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13964,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13999,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14034,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14069,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_Checkpoint_$1351_memory_ptr_to_t_struct$_Checkpoint_$1351_memory_ptr_fromStack": {
"entryPoint": 14104,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint224_to_t_uint224": {
"entryPoint": 14151,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 14166,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint32_to_t_uint32": {
"entryPoint": 14181,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint32_to_t_uint32_fromStack": {
"entryPoint": 14196,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 14211,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 14226,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 14281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 14308,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 14335,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 14362,
"id": null,
"parameterSlots": 7,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 14459,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": 14528,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
"entryPoint": 14611,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14680,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14714,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14746,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14778,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14810,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14842,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14874,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14906,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14970,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15002,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15034,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15066,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15098,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15130,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15162,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15194,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15226,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15290,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15322,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15386,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15418,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15450,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15482,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15514,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15578,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_Checkpoint_$1351_memory_ptr__to_t_struct$_Checkpoint_$1351_memory_ptr__fromStack_reversed": {
"entryPoint": 15610,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 15637,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 15664,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
"entryPoint": 15705,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 15732,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 15759,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 15770,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 15787,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 15798,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 15884,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 15933,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 15985,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 16003,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 16015,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 16025,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint224": {
"entryPoint": 16057,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 16097,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint32": {
"entryPoint": 16107,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 16123,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 16136,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 16187,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_bytes32": {
"entryPoint": 16237,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 16247,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 16294,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x21": {
"entryPoint": 16341,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 16388,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 16435,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 16482,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 16487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be": {
"entryPoint": 16504,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940": {
"entryPoint": 16545,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 16586,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d": {
"entryPoint": 16665,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a": {
"entryPoint": 16706,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257": {
"entryPoint": 16747,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd": {
"entryPoint": 16788,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77": {
"entryPoint": 16867,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872": {
"entryPoint": 16908,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 16949,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 17028,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541": {
"entryPoint": 17107,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 17148,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd": {
"entryPoint": 17189,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 17230,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd": {
"entryPoint": 17309,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 17388,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4": {
"entryPoint": 17429,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124": {
"entryPoint": 17508,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699": {
"entryPoint": 17549,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 17628,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79": {
"entryPoint": 17669,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f": {
"entryPoint": 17748,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 17827,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19": {
"entryPoint": 17906,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 17985,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6": {
"entryPoint": 18064,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 18105,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 18184,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 18225,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 18248,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 18271,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint32": {
"entryPoint": 18294,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 18317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:46778:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:20"
},
"nodeType": "YulFunctionCall",
"src": "78:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:20"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:20"
},
"nodeType": "YulFunctionCall",
"src": "107:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:20"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:20",
"type": ""
}
],
"src": "7:139:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:20"
},
"nodeType": "YulFunctionCall",
"src": "223:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:20"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "252:26:20"
},
"nodeType": "YulFunctionCall",
"src": "252:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:20"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:20",
"type": ""
}
],
"src": "152:139:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "359:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "381:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "368:12:20"
},
"nodeType": "YulFunctionCall",
"src": "368:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "359:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "424:5:20"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "397:26:20"
},
"nodeType": "YulFunctionCall",
"src": "397:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "397:33:20"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "327:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "335:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "343:5:20",
"type": ""
}
],
"src": "297:139:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "493:86:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "503:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "512:12:20"
},
"nodeType": "YulFunctionCall",
"src": "512:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "503:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "567:5:20"
}
],
"functionName": {
"name": "validator_revert_t_uint32",
"nodeType": "YulIdentifier",
"src": "541:25:20"
},
"nodeType": "YulFunctionCall",
"src": "541:32:20"
},
"nodeType": "YulExpressionStatement",
"src": "541:32:20"
}
]
},
"name": "abi_decode_t_uint32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "471:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "479:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "487:5:20",
"type": ""
}
],
"src": "442:137:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "635:85:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "645:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "667:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "654:12:20"
},
"nodeType": "YulFunctionCall",
"src": "654:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "645:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "708:5:20"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "683:24:20"
},
"nodeType": "YulFunctionCall",
"src": "683:31:20"
},
"nodeType": "YulExpressionStatement",
"src": "683:31:20"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "613:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "621:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "629:5:20",
"type": ""
}
],
"src": "585:135:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "792:263:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "838:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "840:77:20"
},
"nodeType": "YulFunctionCall",
"src": "840:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "840:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "813:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "822:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "809:3:20"
},
"nodeType": "YulFunctionCall",
"src": "809:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "834:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "805:3:20"
},
"nodeType": "YulFunctionCall",
"src": "805:32:20"
},
"nodeType": "YulIf",
"src": "802:119:20"
},
{
"nodeType": "YulBlock",
"src": "931:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "946:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "960:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "950:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "975:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1010:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1021:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1006:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1006:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1030:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "985:20:20"
},
"nodeType": "YulFunctionCall",
"src": "985:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "975:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "762:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "773:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "785:6:20",
"type": ""
}
],
"src": "726:329:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1144:391:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1190:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1192:77:20"
},
"nodeType": "YulFunctionCall",
"src": "1192:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "1192:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1165:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1174:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1161:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1161:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1186:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1157:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1157:32:20"
},
"nodeType": "YulIf",
"src": "1154:119:20"
},
{
"nodeType": "YulBlock",
"src": "1283:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1298:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1312:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1302:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1327:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1362:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1373:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1358:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1358:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1382:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1337:20:20"
},
"nodeType": "YulFunctionCall",
"src": "1337:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1327:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1410:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1425:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1439:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1429:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1455:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1490:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1501:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1486:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1486:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1510:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1465:20:20"
},
"nodeType": "YulFunctionCall",
"src": "1465:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1455:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1106:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1117:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1129:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1137:6:20",
"type": ""
}
],
"src": "1061:474:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1641:519:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1687:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1689:77:20"
},
"nodeType": "YulFunctionCall",
"src": "1689:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "1689:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1662:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1671:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1658:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1658:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1683:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1654:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1654:32:20"
},
"nodeType": "YulIf",
"src": "1651:119:20"
},
{
"nodeType": "YulBlock",
"src": "1780:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1795:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1809:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1799:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1824:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1859:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1870:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1855:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1855:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1879:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1834:20:20"
},
"nodeType": "YulFunctionCall",
"src": "1834:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1824:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1907:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1922:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1936:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1926:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1952:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1987:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1998:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1983:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1983:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2007:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1962:20:20"
},
"nodeType": "YulFunctionCall",
"src": "1962:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1952:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2035:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2050:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2064:2:20",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2054:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2080:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2115:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2126:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2111:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2111:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2135:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2090:20:20"
},
"nodeType": "YulFunctionCall",
"src": "2090:53:20"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2080:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1595:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1606:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1618:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1626:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1634:6:20",
"type": ""
}
],
"src": "1541:619:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2332:1033:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2379:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2381:77:20"
},
"nodeType": "YulFunctionCall",
"src": "2381:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "2381:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2353:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2362:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2349:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2349:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2374:3:20",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2345:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2345:33:20"
},
"nodeType": "YulIf",
"src": "2342:120:20"
},
{
"nodeType": "YulBlock",
"src": "2472:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2487:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2501:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2491:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2516:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2551:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2562:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2547:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2547:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2571:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2526:20:20"
},
"nodeType": "YulFunctionCall",
"src": "2526:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2516:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2599:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2614:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2628:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2618:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2644:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2679:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2690:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2675:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2675:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2699:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2654:20:20"
},
"nodeType": "YulFunctionCall",
"src": "2654:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2644:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2727:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2742:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2756:2:20",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2746:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2772:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2807:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2818:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2803:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2803:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2827:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2782:20:20"
},
"nodeType": "YulFunctionCall",
"src": "2782:53:20"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2772:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2855:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2870:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2884:2:20",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2874:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2900:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2935:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2946:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2931:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2931:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2955:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2910:20:20"
},
"nodeType": "YulFunctionCall",
"src": "2910:53:20"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2900:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2983:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2998:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3012:3:20",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3002:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3029:61:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3062:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3073:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3058:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3058:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3082:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3039:18:20"
},
"nodeType": "YulFunctionCall",
"src": "3039:51:20"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "3029:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3110:119:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3125:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3139:3:20",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3129:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3156:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3191:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3202:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3187:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3187:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3211:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "3166:20:20"
},
"nodeType": "YulFunctionCall",
"src": "3166:53:20"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "3156:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3239:119:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3254:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3268:3:20",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3258:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3285:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3320:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3331:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3316:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3316:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3340:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "3295:20:20"
},
"nodeType": "YulFunctionCall",
"src": "3295:53:20"
},
"variableNames": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "3285:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2254:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2265:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2277:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2285:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2293:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2301:6:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "2309:6:20",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "2317:6:20",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "2325:6:20",
"type": ""
}
],
"src": "2166:1199:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3454:391:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3500:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3502:77:20"
},
"nodeType": "YulFunctionCall",
"src": "3502:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "3502:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3475:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3484:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3471:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3471:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3496:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3467:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3467:32:20"
},
"nodeType": "YulIf",
"src": "3464:119:20"
},
{
"nodeType": "YulBlock",
"src": "3593:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3608:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3622:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3612:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3637:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3672:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3683:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3668:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3668:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3692:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3647:20:20"
},
"nodeType": "YulFunctionCall",
"src": "3647:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3637:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3720:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3735:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3749:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3739:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3765:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3800:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3811:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3796:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3796:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3820:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3775:20:20"
},
"nodeType": "YulFunctionCall",
"src": "3775:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3765:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3416:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3427:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3439:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3447:6:20",
"type": ""
}
],
"src": "3371:474:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4000:904:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4047:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4049:77:20"
},
"nodeType": "YulFunctionCall",
"src": "4049:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "4049:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4021:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4030:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4017:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4017:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4042:3:20",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4013:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4013:33:20"
},
"nodeType": "YulIf",
"src": "4010:120:20"
},
{
"nodeType": "YulBlock",
"src": "4140:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4155:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4159:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4184:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4219:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4230:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4215:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4215:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4239:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4194:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4194:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4184:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4267:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4282:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4296:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4286:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4312:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4347:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4358:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4343:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4343:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4367:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4322:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4322:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4312:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4395:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4410:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4424:2:20",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4414:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4440:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4475:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4486:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4471:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4471:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4495:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4450:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4450:53:20"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4440:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4523:116:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4538:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4552:2:20",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4542:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4568:61:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4601:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4612:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4597:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4597:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4621:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "4578:18:20"
},
"nodeType": "YulFunctionCall",
"src": "4578:51:20"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4568:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4649:119:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4664:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4678:3:20",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4668:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4695:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4730:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4741:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4726:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4726:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4750:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4705:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4705:53:20"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "4695:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4778:119:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4793:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4807:3:20",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4797:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4824:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4859:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4870:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4855:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4855:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4879:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4834:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4834:53:20"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "4824:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3930:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3941:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3953:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3961:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3969:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3977:6:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "3985:6:20",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "3993:6:20",
"type": ""
}
],
"src": "3851:1053:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4992:390:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5038:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5040:77:20"
},
"nodeType": "YulFunctionCall",
"src": "5040:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "5040:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5013:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5022:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5009:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5009:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5034:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5005:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5005:32:20"
},
"nodeType": "YulIf",
"src": "5002:119:20"
},
{
"nodeType": "YulBlock",
"src": "5131:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5146:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5160:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5150:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5175:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5210:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5221:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5206:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5206:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5230:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5185:20:20"
},
"nodeType": "YulFunctionCall",
"src": "5185:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5175:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5258:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5273:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5287:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5277:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5303:62:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5337:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5348:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5333:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5333:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5357:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint32",
"nodeType": "YulIdentifier",
"src": "5313:19:20"
},
"nodeType": "YulFunctionCall",
"src": "5313:52:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5303:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4954:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4965:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4977:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4985:6:20",
"type": ""
}
],
"src": "4910:472:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5454:263:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5500:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5502:77:20"
},
"nodeType": "YulFunctionCall",
"src": "5502:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "5502:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5475:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5484:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5471:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5471:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5496:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5467:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5467:32:20"
},
"nodeType": "YulIf",
"src": "5464:119:20"
},
{
"nodeType": "YulBlock",
"src": "5593:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5608:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5622:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5612:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5637:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5672:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5683:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5668:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5668:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5692:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5647:20:20"
},
"nodeType": "YulFunctionCall",
"src": "5647:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5637:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5424:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5435:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5447:6:20",
"type": ""
}
],
"src": "5388:329:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5788:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5805:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5828:5:20"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5810:17:20"
},
"nodeType": "YulFunctionCall",
"src": "5810:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5798:6:20"
},
"nodeType": "YulFunctionCall",
"src": "5798:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "5798:37:20"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5776:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5783:3:20",
"type": ""
}
],
"src": "5723:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5906:50:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5923:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5943:5:20"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "5928:14:20"
},
"nodeType": "YulFunctionCall",
"src": "5928:21:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5916:6:20"
},
"nodeType": "YulFunctionCall",
"src": "5916:34:20"
},
"nodeType": "YulExpressionStatement",
"src": "5916:34:20"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5894:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5901:3:20",
"type": ""
}
],
"src": "5847:109:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6027:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6044:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6067:5:20"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6049:17:20"
},
"nodeType": "YulFunctionCall",
"src": "6049:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6037:6:20"
},
"nodeType": "YulFunctionCall",
"src": "6037:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "6037:37:20"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6015:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6022:3:20",
"type": ""
}
],
"src": "5962:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6169:74:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6186:3:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6229:5:20"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6211:17:20"
},
"nodeType": "YulFunctionCall",
"src": "6211:24:20"
}
],
"functionName": {
"name": "leftAlign_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6191:19:20"
},
"nodeType": "YulFunctionCall",
"src": "6191:45:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6179:6:20"
},
"nodeType": "YulFunctionCall",
"src": "6179:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "6179:58:20"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6157:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6164:3:20",
"type": ""
}
],
"src": "6086:157:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6341:272:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6351:53:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6398:5:20"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6365:32:20"
},
"nodeType": "YulFunctionCall",
"src": "6365:39:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6355:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6413:78:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6479:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6484:6:20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6420:58:20"
},
"nodeType": "YulFunctionCall",
"src": "6420:71:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6413:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6526:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6533:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6522:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6522:16:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6540:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6545:6:20"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6500:21:20"
},
"nodeType": "YulFunctionCall",
"src": "6500:52:20"
},
"nodeType": "YulExpressionStatement",
"src": "6500:52:20"
},
{
"nodeType": "YulAssignment",
"src": "6561:46:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6572:3:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6599:6:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6577:21:20"
},
"nodeType": "YulFunctionCall",
"src": "6577:29:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6568:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6568:39:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6561:3:20"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6322:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6329:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6337:3:20",
"type": ""
}
],
"src": "6249:364:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6765:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6775:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6841:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6846:2:20",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6782:58:20"
},
"nodeType": "YulFunctionCall",
"src": "6782:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6775:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6947:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be",
"nodeType": "YulIdentifier",
"src": "6858:88:20"
},
"nodeType": "YulFunctionCall",
"src": "6858:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "6858:93:20"
},
{
"nodeType": "YulAssignment",
"src": "6960:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6971:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6976:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6967:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6967:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6960:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6753:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6761:3:20",
"type": ""
}
],
"src": "6619:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7137:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7147:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7213:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7218:2:20",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7154:58:20"
},
"nodeType": "YulFunctionCall",
"src": "7154:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7147:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7319:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940",
"nodeType": "YulIdentifier",
"src": "7230:88:20"
},
"nodeType": "YulFunctionCall",
"src": "7230:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "7230:93:20"
},
{
"nodeType": "YulAssignment",
"src": "7332:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7343:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7348:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7339:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7339:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7332:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7125:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7133:3:20",
"type": ""
}
],
"src": "6991:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7509:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7519:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7585:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7590:2:20",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7526:58:20"
},
"nodeType": "YulFunctionCall",
"src": "7526:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7519:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7691:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "7602:88:20"
},
"nodeType": "YulFunctionCall",
"src": "7602:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "7602:93:20"
},
{
"nodeType": "YulAssignment",
"src": "7704:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7715:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7720:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7711:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7711:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7704:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7497:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7505:3:20",
"type": ""
}
],
"src": "7363:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7881:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7891:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7957:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7962:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7898:58:20"
},
"nodeType": "YulFunctionCall",
"src": "7898:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7891:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8063:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d",
"nodeType": "YulIdentifier",
"src": "7974:88:20"
},
"nodeType": "YulFunctionCall",
"src": "7974:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "7974:93:20"
},
{
"nodeType": "YulAssignment",
"src": "8076:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8087:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8092:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8083:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8083:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8076:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7869:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7877:3:20",
"type": ""
}
],
"src": "7735:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8253:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8263:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8329:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8334:2:20",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8270:58:20"
},
"nodeType": "YulFunctionCall",
"src": "8270:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8263:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8435:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "8346:88:20"
},
"nodeType": "YulFunctionCall",
"src": "8346:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "8346:93:20"
},
{
"nodeType": "YulAssignment",
"src": "8448:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8459:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8464:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8455:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8455:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8448:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8241:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8249:3:20",
"type": ""
}
],
"src": "8107:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8625:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8635:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8701:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8706:2:20",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8642:58:20"
},
"nodeType": "YulFunctionCall",
"src": "8642:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8635:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8807:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257",
"nodeType": "YulIdentifier",
"src": "8718:88:20"
},
"nodeType": "YulFunctionCall",
"src": "8718:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "8718:93:20"
},
{
"nodeType": "YulAssignment",
"src": "8820:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8831:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8836:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8827:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8827:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8820:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8613:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8621:3:20",
"type": ""
}
],
"src": "8479:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8997:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9007:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9073:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9078:2:20",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9014:58:20"
},
"nodeType": "YulFunctionCall",
"src": "9014:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9007:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9179:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "9090:88:20"
},
"nodeType": "YulFunctionCall",
"src": "9090:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "9090:93:20"
},
{
"nodeType": "YulAssignment",
"src": "9192:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9203:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9208:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9199:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9199:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9192:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8985:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8993:3:20",
"type": ""
}
],
"src": "8851:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9369:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9379:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9445:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9450:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9386:58:20"
},
"nodeType": "YulFunctionCall",
"src": "9386:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9379:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9551:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77",
"nodeType": "YulIdentifier",
"src": "9462:88:20"
},
"nodeType": "YulFunctionCall",
"src": "9462:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "9462:93:20"
},
{
"nodeType": "YulAssignment",
"src": "9564:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9575:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9580:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9571:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9571:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9564:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9357:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9365:3:20",
"type": ""
}
],
"src": "9223:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9741:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9751:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9817:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9822:2:20",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9758:58:20"
},
"nodeType": "YulFunctionCall",
"src": "9758:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9751:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9923:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872",
"nodeType": "YulIdentifier",
"src": "9834:88:20"
},
"nodeType": "YulFunctionCall",
"src": "9834:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "9834:93:20"
},
{
"nodeType": "YulAssignment",
"src": "9936:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9947:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9952:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9943:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9943:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9936:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9729:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9737:3:20",
"type": ""
}
],
"src": "9595:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10113:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10123:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10189:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10194:2:20",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10130:58:20"
},
"nodeType": "YulFunctionCall",
"src": "10130:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10123:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10295:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "10206:88:20"
},
"nodeType": "YulFunctionCall",
"src": "10206:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "10206:93:20"
},
{
"nodeType": "YulAssignment",
"src": "10308:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10319:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10324:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10315:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10315:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10308:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10101:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10109:3:20",
"type": ""
}
],
"src": "9967:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10485:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10495:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10561:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10566:2:20",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10502:58:20"
},
"nodeType": "YulFunctionCall",
"src": "10502:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10495:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10667:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "10578:88:20"
},
"nodeType": "YulFunctionCall",
"src": "10578:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "10578:93:20"
},
{
"nodeType": "YulAssignment",
"src": "10680:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10691:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10696:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10687:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10687:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10680:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10473:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10481:3:20",
"type": ""
}
],
"src": "10339:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10875:236:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10885:91:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10969:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10974:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "10892:76:20"
},
"nodeType": "YulFunctionCall",
"src": "10892:84:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10885:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11074:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
"nodeType": "YulIdentifier",
"src": "10985:88:20"
},
"nodeType": "YulFunctionCall",
"src": "10985:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "10985:93:20"
},
{
"nodeType": "YulAssignment",
"src": "11087:18:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11098:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11103:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11094:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11094:11:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11087:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10863:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10871:3:20",
"type": ""
}
],
"src": "10711:400:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11263:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11273:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11339:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11344:2:20",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11280:58:20"
},
"nodeType": "YulFunctionCall",
"src": "11280:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11273:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11445:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "11356:88:20"
},
"nodeType": "YulFunctionCall",
"src": "11356:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "11356:93:20"
},
{
"nodeType": "YulAssignment",
"src": "11458:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11469:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11474:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11465:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11465:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11458:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11251:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11259:3:20",
"type": ""
}
],
"src": "11117:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11635:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11645:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11711:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11716:2:20",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11652:58:20"
},
"nodeType": "YulFunctionCall",
"src": "11652:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11645:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11817:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd",
"nodeType": "YulIdentifier",
"src": "11728:88:20"
},
"nodeType": "YulFunctionCall",
"src": "11728:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "11728:93:20"
},
{
"nodeType": "YulAssignment",
"src": "11830:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11841:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11846:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11837:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11837:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11830:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11623:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11631:3:20",
"type": ""
}
],
"src": "11489:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12007:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12017:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12083:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12088:2:20",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12024:58:20"
},
"nodeType": "YulFunctionCall",
"src": "12024:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12017:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12189:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "12100:88:20"
},
"nodeType": "YulFunctionCall",
"src": "12100:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "12100:93:20"
},
{
"nodeType": "YulAssignment",
"src": "12202:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12213:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12218:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12209:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12209:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12202:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11995:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12003:3:20",
"type": ""
}
],
"src": "11861:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12379:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12389:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12455:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12460:2:20",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12396:58:20"
},
"nodeType": "YulFunctionCall",
"src": "12396:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12389:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12561:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd",
"nodeType": "YulIdentifier",
"src": "12472:88:20"
},
"nodeType": "YulFunctionCall",
"src": "12472:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "12472:93:20"
},
{
"nodeType": "YulAssignment",
"src": "12574:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12585:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12590:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12581:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12581:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12574:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12367:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12375:3:20",
"type": ""
}
],
"src": "12233:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12751:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12761:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12827:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12832:2:20",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12768:58:20"
},
"nodeType": "YulFunctionCall",
"src": "12768:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12761:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12933:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "12844:88:20"
},
"nodeType": "YulFunctionCall",
"src": "12844:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "12844:93:20"
},
{
"nodeType": "YulAssignment",
"src": "12946:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12957:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12962:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12953:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12953:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12946:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12739:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12747:3:20",
"type": ""
}
],
"src": "12605:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13123:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13133:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13199:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13204:2:20",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13140:58:20"
},
"nodeType": "YulFunctionCall",
"src": "13140:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13133:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13305:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4",
"nodeType": "YulIdentifier",
"src": "13216:88:20"
},
"nodeType": "YulFunctionCall",
"src": "13216:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "13216:93:20"
},
{
"nodeType": "YulAssignment",
"src": "13318:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13329:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13334:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13325:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13325:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13318:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13111:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13119:3:20",
"type": ""
}
],
"src": "12977:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13495:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13505:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13571:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13576:2:20",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13512:58:20"
},
"nodeType": "YulFunctionCall",
"src": "13512:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13505:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13677:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124",
"nodeType": "YulIdentifier",
"src": "13588:88:20"
},
"nodeType": "YulFunctionCall",
"src": "13588:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "13588:93:20"
},
{
"nodeType": "YulAssignment",
"src": "13690:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13701:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13706:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13697:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13697:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13690:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13483:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13491:3:20",
"type": ""
}
],
"src": "13349:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13867:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13877:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13943:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13948:2:20",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13884:58:20"
},
"nodeType": "YulFunctionCall",
"src": "13884:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13877:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14049:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699",
"nodeType": "YulIdentifier",
"src": "13960:88:20"
},
"nodeType": "YulFunctionCall",
"src": "13960:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "13960:93:20"
},
{
"nodeType": "YulAssignment",
"src": "14062:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14073:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14078:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14069:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14069:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14062:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13855:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13863:3:20",
"type": ""
}
],
"src": "13721:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14239:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14249:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14315:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14320:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14256:58:20"
},
"nodeType": "YulFunctionCall",
"src": "14256:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14249:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14421:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "14332:88:20"
},
"nodeType": "YulFunctionCall",
"src": "14332:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "14332:93:20"
},
{
"nodeType": "YulAssignment",
"src": "14434:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14445:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14450:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14441:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14441:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14434:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14227:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14235:3:20",
"type": ""
}
],
"src": "14093:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14611:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14621:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14687:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14692:2:20",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14628:58:20"
},
"nodeType": "YulFunctionCall",
"src": "14628:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14621:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14793:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
"nodeType": "YulIdentifier",
"src": "14704:88:20"
},
"nodeType": "YulFunctionCall",
"src": "14704:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "14704:93:20"
},
{
"nodeType": "YulAssignment",
"src": "14806:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14817:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14822:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14813:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14813:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14806:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14599:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14607:3:20",
"type": ""
}
],
"src": "14465:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14983:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14993:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15059:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15064:2:20",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15000:58:20"
},
"nodeType": "YulFunctionCall",
"src": "15000:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14993:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15165:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "15076:88:20"
},
"nodeType": "YulFunctionCall",
"src": "15076:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "15076:93:20"
},
{
"nodeType": "YulAssignment",
"src": "15178:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15189:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15194:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15185:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15185:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15178:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14971:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14979:3:20",
"type": ""
}
],
"src": "14837:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15355:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15365:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15431:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15436:2:20",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15372:58:20"
},
"nodeType": "YulFunctionCall",
"src": "15372:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15365:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15537:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "15448:88:20"
},
"nodeType": "YulFunctionCall",
"src": "15448:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "15448:93:20"
},
{
"nodeType": "YulAssignment",
"src": "15550:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15561:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15566:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15557:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15557:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15550:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15343:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15351:3:20",
"type": ""
}
],
"src": "15209:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15727:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15737:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15803:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15808:2:20",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15744:58:20"
},
"nodeType": "YulFunctionCall",
"src": "15744:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15737:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15909:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
"nodeType": "YulIdentifier",
"src": "15820:88:20"
},
"nodeType": "YulFunctionCall",
"src": "15820:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "15820:93:20"
},
{
"nodeType": "YulAssignment",
"src": "15922:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15933:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15938:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15929:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15929:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15922:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15715:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15723:3:20",
"type": ""
}
],
"src": "15581:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16099:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16109:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16175:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16180:2:20",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16116:58:20"
},
"nodeType": "YulFunctionCall",
"src": "16116:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16109:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16281:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "16192:88:20"
},
"nodeType": "YulFunctionCall",
"src": "16192:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "16192:93:20"
},
{
"nodeType": "YulAssignment",
"src": "16294:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16305:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16310:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16301:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16301:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16294:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16087:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16095:3:20",
"type": ""
}
],
"src": "15953:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16471:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16481:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16547:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16552:2:20",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16488:58:20"
},
"nodeType": "YulFunctionCall",
"src": "16488:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16481:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16653:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6",
"nodeType": "YulIdentifier",
"src": "16564:88:20"
},
"nodeType": "YulFunctionCall",
"src": "16564:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "16564:93:20"
},
{
"nodeType": "YulAssignment",
"src": "16666:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16677:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16682:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16673:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16673:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16666:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16459:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16467:3:20",
"type": ""
}
],
"src": "16325:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16843:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16853:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16919:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16924:2:20",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16860:58:20"
},
"nodeType": "YulFunctionCall",
"src": "16860:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16853:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17025:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "16936:88:20"
},
"nodeType": "YulFunctionCall",
"src": "16936:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "16936:93:20"
},
{
"nodeType": "YulAssignment",
"src": "17038:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17049:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17054:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17045:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17045:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17038:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16831:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16839:3:20",
"type": ""
}
],
"src": "16697:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17215:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17225:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17291:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17296:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17232:58:20"
},
"nodeType": "YulFunctionCall",
"src": "17232:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17225:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17397:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "17308:88:20"
},
"nodeType": "YulFunctionCall",
"src": "17308:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "17308:93:20"
},
{
"nodeType": "YulAssignment",
"src": "17410:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17421:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17426:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17417:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17417:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17410:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17203:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17211:3:20",
"type": ""
}
],
"src": "17069:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17631:395:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17641:26:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17657:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17662:4:20",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17653:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17653:14:20"
},
"variables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17645:4:20",
"type": ""
}
]
},
{
"nodeType": "YulBlock",
"src": "17677:167:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17717:43:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17747:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17754:4:20",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17743:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17743:16:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "17737:5:20"
},
"nodeType": "YulFunctionCall",
"src": "17737:23:20"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "17721:12:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "17805:12:20"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17823:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17828:4:20",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17819:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17819:14:20"
}
],
"functionName": {
"name": "abi_encode_t_uint32_to_t_uint32",
"nodeType": "YulIdentifier",
"src": "17773:31:20"
},
"nodeType": "YulFunctionCall",
"src": "17773:61:20"
},
"nodeType": "YulExpressionStatement",
"src": "17773:61:20"
}
]
},
{
"nodeType": "YulBlock",
"src": "17854:165:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17890:43:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17920:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17927:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17916:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17916:16:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "17910:5:20"
},
"nodeType": "YulFunctionCall",
"src": "17910:23:20"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "17894:12:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "17980:12:20"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17998:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18003:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17994:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17994:14:20"
}
],
"functionName": {
"name": "abi_encode_t_uint224_to_t_uint224",
"nodeType": "YulIdentifier",
"src": "17946:33:20"
},
"nodeType": "YulFunctionCall",
"src": "17946:63:20"
},
"nodeType": "YulExpressionStatement",
"src": "17946:63:20"
}
]
}
]
},
"name": "abi_encode_t_struct$_Checkpoint_$1351_memory_ptr_to_t_struct$_Checkpoint_$1351_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17618:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17625:3:20",
"type": ""
}
],
"src": "17509:517:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18087:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18104:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18127:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint224",
"nodeType": "YulIdentifier",
"src": "18109:17:20"
},
"nodeType": "YulFunctionCall",
"src": "18109:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18097:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18097:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "18097:37:20"
}
]
},
"name": "abi_encode_t_uint224_to_t_uint224",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18075:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18082:3:20",
"type": ""
}
],
"src": "18032:108:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18211:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18228:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18251:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18233:17:20"
},
"nodeType": "YulFunctionCall",
"src": "18233:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18221:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18221:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "18221:37:20"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18199:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18206:3:20",
"type": ""
}
],
"src": "18146:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18323:52:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18340:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18362:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint32",
"nodeType": "YulIdentifier",
"src": "18345:16:20"
},
"nodeType": "YulFunctionCall",
"src": "18345:23:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18333:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18333:36:20"
},
"nodeType": "YulExpressionStatement",
"src": "18333:36:20"
}
]
},
"name": "abi_encode_t_uint32_to_t_uint32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18311:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18318:3:20",
"type": ""
}
],
"src": "18270:105:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18444:52:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18461:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18483:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint32",
"nodeType": "YulIdentifier",
"src": "18466:16:20"
},
"nodeType": "YulFunctionCall",
"src": "18466:23:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18454:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18454:36:20"
},
"nodeType": "YulExpressionStatement",
"src": "18454:36:20"
}
]
},
"name": "abi_encode_t_uint32_to_t_uint32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18432:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18439:3:20",
"type": ""
}
],
"src": "18381:115:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18563:51:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18580:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18601:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "18585:15:20"
},
"nodeType": "YulFunctionCall",
"src": "18585:22:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18573:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18573:35:20"
},
"nodeType": "YulExpressionStatement",
"src": "18573:35:20"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18551:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18558:3:20",
"type": ""
}
],
"src": "18502:112:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18865:418:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18876:155:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19027:3:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18883:142:20"
},
"nodeType": "YulFunctionCall",
"src": "18883:148:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18876:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19103:6:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19112:3:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19041:61:20"
},
"nodeType": "YulFunctionCall",
"src": "19041:75:20"
},
"nodeType": "YulExpressionStatement",
"src": "19041:75:20"
},
{
"nodeType": "YulAssignment",
"src": "19125:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19136:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19141:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19132:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19132:12:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19125:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "19216:6:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19225:3:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "19154:61:20"
},
"nodeType": "YulFunctionCall",
"src": "19154:75:20"
},
"nodeType": "YulExpressionStatement",
"src": "19154:75:20"
},
{
"nodeType": "YulAssignment",
"src": "19238:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19249:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19254:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19245:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19245:12:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19238:3:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19267:10:20",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19274:3:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19267:3:20"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18836:3:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18842:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18850:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18861:3:20",
"type": ""
}
],
"src": "18620:663:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19387:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19397:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19409:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19420:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19405:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19405:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19397:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19477:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19490:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19501:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19486:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19486:17:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "19433:43:20"
},
"nodeType": "YulFunctionCall",
"src": "19433:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "19433:71:20"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19359:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19371:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19382:4:20",
"type": ""
}
],
"src": "19289:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19609:118:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19619:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19631:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19642:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19627:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19627:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19619:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19693:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19706:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19717:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19702:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19702:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "19655:37:20"
},
"nodeType": "YulFunctionCall",
"src": "19655:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "19655:65:20"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19581:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19593:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19604:4:20",
"type": ""
}
],
"src": "19517:210:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19831:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19841:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19853:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19864:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19849:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19849:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19841:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19921:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19934:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19945:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19930:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19930:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "19877:43:20"
},
"nodeType": "YulFunctionCall",
"src": "19877:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "19877:71:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19803:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19815:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19826:4:20",
"type": ""
}
],
"src": "19733:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20199:537:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20209:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20221:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20232:3:20",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20217:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20217:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20209:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20290:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20303:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20314:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20299:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20299:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "20246:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20246:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "20246:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "20371:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20384:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20395:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20380:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20380:18:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20327:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20327:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "20327:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "20453:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20466:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20477:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20462:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20462:18:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20409:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20409:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "20409:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "20535:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20548:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20559:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20544:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20544:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20491:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20491:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "20491:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "20617:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20630:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20641:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20626:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20626:19:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20573:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20573:73:20"
},
"nodeType": "YulExpressionStatement",
"src": "20573:73:20"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "20700:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20713:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20724:3:20",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20709:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20709:19:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20656:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20656:73:20"
},
"nodeType": "YulExpressionStatement",
"src": "20656:73:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20131:9:20",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "20143:6:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "20151:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "20159:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "20167:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20175:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20183:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20194:4:20",
"type": ""
}
],
"src": "19961:775:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20924:371:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20934:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20946:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20957:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20942:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20942:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20934:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21015:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21028:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21039:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21024:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21024:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "20971:43:20"
},
"nodeType": "YulFunctionCall",
"src": "20971:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "20971:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21096:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21109:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21120:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21105:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21105:18:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21052:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21052:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21052:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "21178:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21191:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21202:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21187:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21187:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21134:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21134:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21134:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "21260:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21273:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21284:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21269:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21269:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21216:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21216:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21216:72:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20872:9:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "20884:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "20892:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20900:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20908:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20919:4:20",
"type": ""
}
],
"src": "20742:553:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21511:454:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21521:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21533:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21544:3:20",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21529:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21529:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21521:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21602:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21615:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21626:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21611:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21611:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "21558:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21558:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "21558:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21683:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21696:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21707:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21692:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21692:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "21639:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21639:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21639:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "21765:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21778:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21789:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21774:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21774:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "21721:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21721:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21721:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "21847:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21860:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21871:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21856:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21856:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21803:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21803:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "21803:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "21929:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21942:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21953:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21938:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21938:19:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21885:43:20"
},
"nodeType": "YulFunctionCall",
"src": "21885:73:20"
},
"nodeType": "YulExpressionStatement",
"src": "21885:73:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21451:9:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "21463:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "21471:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "21479:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "21487:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21495:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21506:4:20",
"type": ""
}
],
"src": "21301:664:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22149:367:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22159:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22171:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22182:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22167:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22167:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22159:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22240:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22253:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22264:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22249:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22249:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "22196:43:20"
},
"nodeType": "YulFunctionCall",
"src": "22196:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "22196:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22317:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22330:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22341:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22326:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22326:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "22277:39:20"
},
"nodeType": "YulFunctionCall",
"src": "22277:68:20"
},
"nodeType": "YulExpressionStatement",
"src": "22277:68:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22399:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22412:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22423:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22408:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22408:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "22355:43:20"
},
"nodeType": "YulFunctionCall",
"src": "22355:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "22355:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22481:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22494:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22505:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22490:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22490:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "22437:43:20"
},
"nodeType": "YulFunctionCall",
"src": "22437:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "22437:72:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22097:9:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "22109:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "22117:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22125:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22133:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22144:4:20",
"type": ""
}
],
"src": "21971:545:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22640:195:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22650:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22662:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22673:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22658:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22658:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22650:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22697:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22708:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22693:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22693:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22716:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22722:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22712:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22712:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22686:6:20"
},
"nodeType": "YulFunctionCall",
"src": "22686:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "22686:47:20"
},
{
"nodeType": "YulAssignment",
"src": "22742:86:20",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22814:6:20"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22823:4:20"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22750:63:20"
},
"nodeType": "YulFunctionCall",
"src": "22750:78:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22742:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22612:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22624:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22635:4:20",
"type": ""
}
],
"src": "22522:313:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23012:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23022:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23034:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23045:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23030:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23030:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23022:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23069:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23080:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23065:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23065:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23088:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23094:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23084:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23084:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23058:6:20"
},
"nodeType": "YulFunctionCall",
"src": "23058:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "23058:47:20"
},
{
"nodeType": "YulAssignment",
"src": "23114:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23248:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23122:124:20"
},
"nodeType": "YulFunctionCall",
"src": "23122:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23114:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22992:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23007:4:20",
"type": ""
}
],
"src": "22841:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23437:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23447:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23459:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23470:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23455:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23455:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23447:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23494:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23505:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23490:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23490:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23513:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23519:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23509:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23509:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23483:6:20"
},
"nodeType": "YulFunctionCall",
"src": "23483:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "23483:47:20"
},
{
"nodeType": "YulAssignment",
"src": "23539:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23673:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23547:124:20"
},
"nodeType": "YulFunctionCall",
"src": "23547:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23539:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23417:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23432:4:20",
"type": ""
}
],
"src": "23266:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23862:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23872:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23884:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23895:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23880:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23880:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23872:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23919:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23930:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23915:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23915:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23938:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23944:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23934:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23934:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23908:6:20"
},
"nodeType": "YulFunctionCall",
"src": "23908:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "23908:47:20"
},
{
"nodeType": "YulAssignment",
"src": "23964:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24098:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23972:124:20"
},
"nodeType": "YulFunctionCall",
"src": "23972:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23964:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23842:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23857:4:20",
"type": ""
}
],
"src": "23691:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24287:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24297:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24309:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24320:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24305:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24305:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24297:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24344:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24355:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24340:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24340:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24363:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24369:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24359:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24359:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24333:6:20"
},
"nodeType": "YulFunctionCall",
"src": "24333:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "24333:47:20"
},
{
"nodeType": "YulAssignment",
"src": "24389:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24523:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24397:124:20"
},
"nodeType": "YulFunctionCall",
"src": "24397:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24389:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24267:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24282:4:20",
"type": ""
}
],
"src": "24116:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24712:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24722:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24734:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24745:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24730:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24730:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24722:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24769:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24780:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24765:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24765:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24788:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24794:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24784:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24784:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24758:6:20"
},
"nodeType": "YulFunctionCall",
"src": "24758:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "24758:47:20"
},
{
"nodeType": "YulAssignment",
"src": "24814:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24948:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24822:124:20"
},
"nodeType": "YulFunctionCall",
"src": "24822:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24814:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24692:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24707:4:20",
"type": ""
}
],
"src": "24541:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25137:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25147:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25159:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25170:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25155:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25155:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25147:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25194:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25205:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25190:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25190:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25213:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25219:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25209:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25209:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25183:6:20"
},
"nodeType": "YulFunctionCall",
"src": "25183:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "25183:47:20"
},
{
"nodeType": "YulAssignment",
"src": "25239:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25373:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25247:124:20"
},
"nodeType": "YulFunctionCall",
"src": "25247:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25239:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25117:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25132:4:20",
"type": ""
}
],
"src": "24966:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25562:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25572:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25584:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25595:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25580:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25580:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25572:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25619:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25630:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25615:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25615:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25638:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25644:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25634:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25634:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25608:6:20"
},
"nodeType": "YulFunctionCall",
"src": "25608:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "25608:47:20"
},
{
"nodeType": "YulAssignment",
"src": "25664:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25798:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25672:124:20"
},
"nodeType": "YulFunctionCall",
"src": "25672:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25664:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25542:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25557:4:20",
"type": ""
}
],
"src": "25391:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25987:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25997:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26009:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26020:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26005:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26005:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25997:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26044:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26055:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26040:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26040:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26063:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26069:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26059:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26059:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26033:6:20"
},
"nodeType": "YulFunctionCall",
"src": "26033:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "26033:47:20"
},
{
"nodeType": "YulAssignment",
"src": "26089:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26223:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26097:124:20"
},
"nodeType": "YulFunctionCall",
"src": "26097:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26089:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25967:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25982:4:20",
"type": ""
}
],
"src": "25816:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26412:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26422:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26434:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26445:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26430:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26430:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26422:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26469:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26480:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26465:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26465:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26488:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26494:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26484:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26484:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26458:6:20"
},
"nodeType": "YulFunctionCall",
"src": "26458:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "26458:47:20"
},
{
"nodeType": "YulAssignment",
"src": "26514:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26648:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26522:124:20"
},
"nodeType": "YulFunctionCall",
"src": "26522:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26514:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26392:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26407:4:20",
"type": ""
}
],
"src": "26241:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26837:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26847:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26859:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26870:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26855:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26855:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26847:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26894:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26905:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26890:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26890:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26913:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26919:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26909:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26909:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26883:6:20"
},
"nodeType": "YulFunctionCall",
"src": "26883:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "26883:47:20"
},
{
"nodeType": "YulAssignment",
"src": "26939:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27073:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26947:124:20"
},
"nodeType": "YulFunctionCall",
"src": "26947:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26939:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26817:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26832:4:20",
"type": ""
}
],
"src": "26666:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27262:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27272:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27284:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27295:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27280:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27280:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27272:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27319:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27330:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27315:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27315:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27338:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27344:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27334:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27334:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27308:6:20"
},
"nodeType": "YulFunctionCall",
"src": "27308:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "27308:47:20"
},
{
"nodeType": "YulAssignment",
"src": "27364:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27498:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27372:124:20"
},
"nodeType": "YulFunctionCall",
"src": "27372:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27364:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27242:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27257:4:20",
"type": ""
}
],
"src": "27091:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27687:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27697:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27709:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27720:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27705:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27705:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27697:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27744:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27755:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27740:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27740:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27763:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27769:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27759:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27759:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27733:6:20"
},
"nodeType": "YulFunctionCall",
"src": "27733:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "27733:47:20"
},
{
"nodeType": "YulAssignment",
"src": "27789:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27923:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27797:124:20"
},
"nodeType": "YulFunctionCall",
"src": "27797:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27789:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27667:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27682:4:20",
"type": ""
}
],
"src": "27516:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28112:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28122:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28134:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28145:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28130:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28130:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28122:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28169:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28180:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28165:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28165:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28188:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28194:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28184:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28184:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28158:6:20"
},
"nodeType": "YulFunctionCall",
"src": "28158:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "28158:47:20"
},
{
"nodeType": "YulAssignment",
"src": "28214:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28348:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28222:124:20"
},
"nodeType": "YulFunctionCall",
"src": "28222:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28214:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28092:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28107:4:20",
"type": ""
}
],
"src": "27941:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28537:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28547:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28559:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28570:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28555:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28555:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28547:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28594:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28605:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28590:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28590:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28613:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28619:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28609:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28609:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28583:6:20"
},
"nodeType": "YulFunctionCall",
"src": "28583:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "28583:47:20"
},
{
"nodeType": "YulAssignment",
"src": "28639:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28773:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28647:124:20"
},
"nodeType": "YulFunctionCall",
"src": "28647:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28639:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28517:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28532:4:20",
"type": ""
}
],
"src": "28366:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28962:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28972:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28984:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28995:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28980:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28980:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28972:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29019:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29030:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29015:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29015:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29038:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29044:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29034:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29034:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29008:6:20"
},
"nodeType": "YulFunctionCall",
"src": "29008:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "29008:47:20"
},
{
"nodeType": "YulAssignment",
"src": "29064:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29198:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29072:124:20"
},
"nodeType": "YulFunctionCall",
"src": "29072:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29064:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28942:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28957:4:20",
"type": ""
}
],
"src": "28791:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29387:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29397:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29409:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29420:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29405:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29405:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29397:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29444:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29455:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29440:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29440:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29463:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29469:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29459:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29459:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29433:6:20"
},
"nodeType": "YulFunctionCall",
"src": "29433:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "29433:47:20"
},
{
"nodeType": "YulAssignment",
"src": "29489:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29623:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29497:124:20"
},
"nodeType": "YulFunctionCall",
"src": "29497:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29489:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29367:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29382:4:20",
"type": ""
}
],
"src": "29216:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29812:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29822:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29834:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29845:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29830:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29830:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29822:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29869:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29880:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29865:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29865:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29888:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29894:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29884:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29884:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29858:6:20"
},
"nodeType": "YulFunctionCall",
"src": "29858:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "29858:47:20"
},
{
"nodeType": "YulAssignment",
"src": "29914:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30048:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29922:124:20"
},
"nodeType": "YulFunctionCall",
"src": "29922:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29914:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29792:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29807:4:20",
"type": ""
}
],
"src": "29641:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30237:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30247:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30259:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30270:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30255:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30255:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30247:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30294:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30305:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30290:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30290:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30313:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30319:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30309:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30309:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30283:6:20"
},
"nodeType": "YulFunctionCall",
"src": "30283:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "30283:47:20"
},
{
"nodeType": "YulAssignment",
"src": "30339:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30473:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30347:124:20"
},
"nodeType": "YulFunctionCall",
"src": "30347:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30339:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30217:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30232:4:20",
"type": ""
}
],
"src": "30066:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30662:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30672:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30684:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30695:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30680:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30680:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30672:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30719:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30730:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30715:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30715:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30738:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30744:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30734:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30734:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30708:6:20"
},
"nodeType": "YulFunctionCall",
"src": "30708:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "30708:47:20"
},
{
"nodeType": "YulAssignment",
"src": "30764:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30898:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30772:124:20"
},
"nodeType": "YulFunctionCall",
"src": "30772:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30764:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30642:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30657:4:20",
"type": ""
}
],
"src": "30491:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31087:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31097:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31109:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31120:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31105:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31105:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31097:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31144:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31155:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31140:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31140:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31163:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31169:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31159:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31159:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31133:6:20"
},
"nodeType": "YulFunctionCall",
"src": "31133:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "31133:47:20"
},
{
"nodeType": "YulAssignment",
"src": "31189:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31323:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31197:124:20"
},
"nodeType": "YulFunctionCall",
"src": "31197:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31189:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31067:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31082:4:20",
"type": ""
}
],
"src": "30916:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31512:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31522:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31534:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31545:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31530:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31530:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31522:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31569:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31580:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31565:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31565:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31588:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31594:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31584:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31584:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31558:6:20"
},
"nodeType": "YulFunctionCall",
"src": "31558:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "31558:47:20"
},
{
"nodeType": "YulAssignment",
"src": "31614:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31748:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31622:124:20"
},
"nodeType": "YulFunctionCall",
"src": "31622:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31614:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31492:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31507:4:20",
"type": ""
}
],
"src": "31341:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31937:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31947:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31959:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31970:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31955:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31955:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31947:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31994:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32005:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31990:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31990:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32013:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32019:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32009:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32009:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31983:6:20"
},
"nodeType": "YulFunctionCall",
"src": "31983:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "31983:47:20"
},
{
"nodeType": "YulAssignment",
"src": "32039:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32173:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32047:124:20"
},
"nodeType": "YulFunctionCall",
"src": "32047:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32039:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31917:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31932:4:20",
"type": ""
}
],
"src": "31766:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32362:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32372:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32384:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32395:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32380:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32380:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32372:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32419:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32430:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32415:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32415:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32438:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32444:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32434:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32434:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32408:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32408:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "32408:47:20"
},
{
"nodeType": "YulAssignment",
"src": "32464:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32598:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32472:124:20"
},
"nodeType": "YulFunctionCall",
"src": "32472:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32464:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32342:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32357:4:20",
"type": ""
}
],
"src": "32191:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32787:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32797:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32809:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32820:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32805:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32805:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32797:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32844:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32855:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32840:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32840:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32863:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32869:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32859:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32859:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32833:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32833:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "32833:47:20"
},
{
"nodeType": "YulAssignment",
"src": "32889:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33023:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32897:124:20"
},
"nodeType": "YulFunctionCall",
"src": "32897:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32889:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32767:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32782:4:20",
"type": ""
}
],
"src": "32616:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33212:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33222:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33234:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33245:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33230:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33230:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33222:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33269:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33280:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33265:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33265:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33288:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33294:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33284:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33284:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33258:6:20"
},
"nodeType": "YulFunctionCall",
"src": "33258:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "33258:47:20"
},
{
"nodeType": "YulAssignment",
"src": "33314:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33448:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33322:124:20"
},
"nodeType": "YulFunctionCall",
"src": "33322:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33314:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33192:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33207:4:20",
"type": ""
}
],
"src": "33041:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33637:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33647:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33659:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33670:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33655:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33655:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33647:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33694:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33705:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33690:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33690:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33713:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33719:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33709:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33709:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33683:6:20"
},
"nodeType": "YulFunctionCall",
"src": "33683:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "33683:47:20"
},
{
"nodeType": "YulAssignment",
"src": "33739:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33873:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33747:124:20"
},
"nodeType": "YulFunctionCall",
"src": "33747:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33739:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33617:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33632:4:20",
"type": ""
}
],
"src": "33466:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34062:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34072:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34084:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34095:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34080:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34080:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34072:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34119:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34130:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34115:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34115:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34138:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34144:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34134:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34134:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34108:6:20"
},
"nodeType": "YulFunctionCall",
"src": "34108:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "34108:47:20"
},
{
"nodeType": "YulAssignment",
"src": "34164:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34298:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34172:124:20"
},
"nodeType": "YulFunctionCall",
"src": "34172:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34164:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34042:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34057:4:20",
"type": ""
}
],
"src": "33891:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34487:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34497:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34509:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34520:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34505:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34505:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34497:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34544:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34555:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34540:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34540:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34563:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34569:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34559:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34559:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34533:6:20"
},
"nodeType": "YulFunctionCall",
"src": "34533:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "34533:47:20"
},
{
"nodeType": "YulAssignment",
"src": "34589:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34723:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34597:124:20"
},
"nodeType": "YulFunctionCall",
"src": "34597:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34589:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34467:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34482:4:20",
"type": ""
}
],
"src": "34316:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34895:180:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34905:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34917:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34928:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34913:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34913:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34905:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35041:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35054:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35065:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35050:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35050:17:20"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Checkpoint_$1351_memory_ptr_to_t_struct$_Checkpoint_$1351_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34941:99:20"
},
"nodeType": "YulFunctionCall",
"src": "34941:127:20"
},
"nodeType": "YulExpressionStatement",
"src": "34941:127:20"
}
]
},
"name": "abi_encode_tuple_t_struct$_Checkpoint_$1351_memory_ptr__to_t_struct$_Checkpoint_$1351_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34867:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "34879:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34890:4:20",
"type": ""
}
],
"src": "34741:334:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35179:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35189:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35201:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35212:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35197:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35197:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35189:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35269:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35282:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35293:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35278:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35278:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "35225:43:20"
},
"nodeType": "YulFunctionCall",
"src": "35225:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "35225:71:20"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35151:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35163:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35174:4:20",
"type": ""
}
],
"src": "35081:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35435:206:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35445:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35457:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35468:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35453:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35453:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35445:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35525:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35538:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35549:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35534:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35534:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "35481:43:20"
},
"nodeType": "YulFunctionCall",
"src": "35481:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "35481:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "35606:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35619:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35630:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35615:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35615:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "35562:43:20"
},
"nodeType": "YulFunctionCall",
"src": "35562:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "35562:72:20"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35399:9:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "35411:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35419:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35430:4:20",
"type": ""
}
],
"src": "35309:332:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35743:122:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35753:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35765:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35776:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35761:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35761:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35753:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "35831:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35844:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35855:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35840:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35840:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint32_to_t_uint32_fromStack",
"nodeType": "YulIdentifier",
"src": "35789:41:20"
},
"nodeType": "YulFunctionCall",
"src": "35789:69:20"
},
"nodeType": "YulExpressionStatement",
"src": "35789:69:20"
}
]
},
"name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35715:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35727:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35738:4:20",
"type": ""
}
],
"src": "35647:218:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35965:120:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35975:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35987:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35998:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35983:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35983:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35975:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "36051:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36064:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36075:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36060:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36060:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "36011:39:20"
},
"nodeType": "YulFunctionCall",
"src": "36011:67:20"
},
"nodeType": "YulExpressionStatement",
"src": "36011:67:20"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35937:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "35949:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35960:4:20",
"type": ""
}
],
"src": "35871:214:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36131:35:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36141:19:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36157:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "36151:5:20"
},
"nodeType": "YulFunctionCall",
"src": "36151:9:20"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36141:6:20"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36124:6:20",
"type": ""
}
],
"src": "36091:75:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36231:40:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36242:22:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36258:5:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "36252:5:20"
},
"nodeType": "YulFunctionCall",
"src": "36252:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36242:6:20"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "36214:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36224:6:20",
"type": ""
}
],
"src": "36172:99:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36373:73:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36390:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "36395:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36383:6:20"
},
"nodeType": "YulFunctionCall",
"src": "36383:19:20"
},
"nodeType": "YulExpressionStatement",
"src": "36383:19:20"
},
{
"nodeType": "YulAssignment",
"src": "36411:29:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36430:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36435:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36426:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36426:14:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36411:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36345:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36350:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36361:11:20",
"type": ""
}
],
"src": "36277:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36566:34:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36576:18:20",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36591:3:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "36576:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36538:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "36543:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "36554:11:20",
"type": ""
}
],
"src": "36452:148:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36650:261:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36660:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36683:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "36665:17:20"
},
"nodeType": "YulFunctionCall",
"src": "36665:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36660:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "36694:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36717:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "36699:17:20"
},
"nodeType": "YulFunctionCall",
"src": "36699:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36694:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "36857:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "36859:16:20"
},
"nodeType": "YulFunctionCall",
"src": "36859:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "36859:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36778:1:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36785:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36853:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36781:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36781:74:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "36775:2:20"
},
"nodeType": "YulFunctionCall",
"src": "36775:81:20"
},
"nodeType": "YulIf",
"src": "36772:107:20"
},
{
"nodeType": "YulAssignment",
"src": "36889:16:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36900:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "36903:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36896:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36896:9:20"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "36889:3:20"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "36637:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "36640:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "36646:3:20",
"type": ""
}
],
"src": "36606:305:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36959:143:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36969:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36992:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "36974:17:20"
},
"nodeType": "YulFunctionCall",
"src": "36974:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "36969:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37003:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37026:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37008:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37008:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37003:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37050:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "37052:16:20"
},
"nodeType": "YulFunctionCall",
"src": "37052:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "37052:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37047:1:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37040:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37040:9:20"
},
"nodeType": "YulIf",
"src": "37037:35:20"
},
{
"nodeType": "YulAssignment",
"src": "37082:14:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37091:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37094:1:20"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "37087:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37087:9:20"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "37082:1:20"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "36948:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "36951:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "36957:1:20",
"type": ""
}
],
"src": "36917:185:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37153:146:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37163:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37186:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37168:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37168:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37163:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37197:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37220:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37202:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37202:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37197:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37244:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37246:16:20"
},
"nodeType": "YulFunctionCall",
"src": "37246:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "37246:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37238:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37241:1:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "37235:2:20"
},
"nodeType": "YulFunctionCall",
"src": "37235:8:20"
},
"nodeType": "YulIf",
"src": "37232:34:20"
},
{
"nodeType": "YulAssignment",
"src": "37276:17:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37288:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37291:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37284:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37284:9:20"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37276:4:20"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37139:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37142:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "37148:4:20",
"type": ""
}
],
"src": "37108:191:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37350:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37360:35:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37389:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "37371:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37371:24:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37360:7:20"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37332:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37342:7:20",
"type": ""
}
],
"src": "37305:96:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37449:48:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37459:32:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37484:5:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37477:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37477:13:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37470:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37470:21:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37459:7:20"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37431:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37441:7:20",
"type": ""
}
],
"src": "37407:90:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37548:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37558:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "37569:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37558:7:20"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37530:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37540:7:20",
"type": ""
}
],
"src": "37503:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37631:81:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37641:65:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37656:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37663:42:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "37652:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37652:54:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37641:7:20"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37613:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37623:7:20",
"type": ""
}
],
"src": "37586:126:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37763:97:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37773:81:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37788:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37795:58:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "37784:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37784:70:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37773:7:20"
}
]
}
]
},
"name": "cleanup_t_uint224",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37745:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37755:7:20",
"type": ""
}
],
"src": "37718:142:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37911:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37921:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "37932:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "37921:7:20"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37893:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37903:7:20",
"type": ""
}
],
"src": "37866:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37993:49:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38003:33:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38018:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38025:10:20",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38014:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38014:22:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38003:7:20"
}
]
}
]
},
"name": "cleanup_t_uint32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37975:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "37985:7:20",
"type": ""
}
],
"src": "37949:93:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38091:43:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38101:27:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "38116:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38123:4:20",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38112:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38112:16:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "38101:7:20"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38073:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "38083:7:20",
"type": ""
}
],
"src": "38048:86:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38189:258:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "38199:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "38208:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "38203:1:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "38268:63:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38293:3:20"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38298:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38289:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38289:11:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "38312:3:20"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38317:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38308:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38308:11:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "38302:5:20"
},
"nodeType": "YulFunctionCall",
"src": "38302:18:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38282:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38282:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "38282:39:20"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38229:1:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38232:6:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "38226:2:20"
},
"nodeType": "YulFunctionCall",
"src": "38226:13:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "38240:19:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38242:15:20",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38251:1:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38254:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38247:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38247:10:20"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38242:1:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "38222:3:20",
"statements": []
},
"src": "38218:113:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38365:76:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "38415:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38420:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38411:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38411:16:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38429:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38404:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38404:27:20"
},
"nodeType": "YulExpressionStatement",
"src": "38404:27:20"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "38346:1:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38349:6:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "38343:2:20"
},
"nodeType": "YulFunctionCall",
"src": "38343:13:20"
},
"nodeType": "YulIf",
"src": "38340:101:20"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "38171:3:20",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "38176:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38181:6:20",
"type": ""
}
],
"src": "38140:307:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38504:269:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38514:22:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "38528:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38534:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "38524:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38524:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38514:6:20"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "38545:38:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "38575:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38581:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38571:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38571:12:20"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "38549:18:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "38622:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38636:27:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38650:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38658:4:20",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "38646:3:20"
},
"nodeType": "YulFunctionCall",
"src": "38646:17:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38636:6:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "38602:18:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "38595:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38595:26:20"
},
"nodeType": "YulIf",
"src": "38592:81:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38725:42:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "38739:16:20"
},
"nodeType": "YulFunctionCall",
"src": "38739:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "38739:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "38689:18:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "38712:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38720:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "38709:2:20"
},
"nodeType": "YulFunctionCall",
"src": "38709:14:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "38686:2:20"
},
"nodeType": "YulFunctionCall",
"src": "38686:38:20"
},
"nodeType": "YulIf",
"src": "38683:84:20"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "38488:4:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "38497:6:20",
"type": ""
}
],
"src": "38453:320:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38826:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38836:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "38847:5:20"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "38836:7:20"
}
]
}
]
},
"name": "leftAlign_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "38808:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "38818:7:20",
"type": ""
}
],
"src": "38779:79:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38892:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38909:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38912:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38902:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38902:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "38902:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39006:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39009:4:20",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38999:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38999:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "38999:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39030:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39033:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "39023:6:20"
},
"nodeType": "YulFunctionCall",
"src": "39023:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "39023:15:20"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "38864:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39078:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39095:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39098:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39088:6:20"
},
"nodeType": "YulFunctionCall",
"src": "39088:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "39088:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
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.)

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.)

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