Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oluwaseye/5c00d427fa5061916e2ddaff096dbed0 to your computer and use it in GitHub Desktop.
Save oluwaseye/5c00d427fa5061916e2ddaff096dbed0 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
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 guidelines: functions revert instead
* of 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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, 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 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
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 {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @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);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../extensions/ERC20Burnable.sol";
/**
* @dev {ERC20} token, including:
*
* - Preminted initial supply
* - Ability for holders to burn (destroy) their tokens
* - No access control mechanism (for minting/pausing) and hence no governance
*
* This contract uses {ERC20Burnable} to include burn capabilities - head to
* its documentation for details.
*
* _Available since v3.4._
*/
contract ERC20PresetFixedSupply is ERC20Burnable {
/**
* @dev Mints `initialSupply` amount of token and transfers them to `owner`.
*
* See {ERC20-constructor}.
*/
constructor(
string memory name,
string memory symbol,
uint256 initialSupply,
address owner
) ERC20(name, symbol) {
_mint(owner, initialSupply);
}
}
// SPDX-License-Identifier: MIT
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
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
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 Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
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
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 guidelines: functions revert instead
* of 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 defaut 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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, 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:
*
* - `to` 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);
}
/**
* @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");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(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 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 to 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 { }
}
// SPDX-License-Identifier: MIT
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 {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../extensions/ERC20Burnable.sol";
/**
* @dev {ERC20} token, including:
*
* - Preminted initial supply
* - Ability for holders to burn (destroy) their tokens
* - No access control mechanism (for minting/pausing) and hence no governance
*
* This contract uses {ERC20Burnable} to include burn capabilities - head to
* its documentation for details.
*
* _Available since v3.4._
*/
contract ERC20PresetFixedSupply is ERC20Burnable {
/**
* @dev Mints `initialSupply` amount of token and transfers them to `owner`.
*
* See {ERC20-constructor}.
*/
constructor(
string memory name,
string memory symbol,
uint256 initialSupply,
address owner
) ERC20(name, symbol) {
_mint(owner, initialSupply);
}
}
// SPDX-License-Identifier: MIT
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) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// SPDX-License-Identifier: MIT
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
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 Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
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
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 guidelines: functions revert instead
* of 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 defaut 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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, 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:
*
* - `to` 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);
}
/**
* @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");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(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 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 to 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 { }
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// SPDX-License-Identifier: MIT
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) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
{
"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": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6350:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:7"
},
"nodeType": "YulFunctionCall",
"src": "170:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "246:88:7"
},
"nodeType": "YulFunctionCall",
"src": "246:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:7"
},
{
"nodeType": "YulAssignment",
"src": "348:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:7"
},
"nodeType": "YulFunctionCall",
"src": "355:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:7",
"type": ""
}
],
"src": "7:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "525:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "535:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "601:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "542:58:7"
},
"nodeType": "YulFunctionCall",
"src": "542:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "535:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "707:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "618:88:7"
},
"nodeType": "YulFunctionCall",
"src": "618:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "618:93:7"
},
{
"nodeType": "YulAssignment",
"src": "720:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:7"
},
"nodeType": "YulFunctionCall",
"src": "727:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "720:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "513:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "521:3:7",
"type": ""
}
],
"src": "379:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "816:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "838:17:7"
},
"nodeType": "YulFunctionCall",
"src": "838:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "826:6:7"
},
"nodeType": "YulFunctionCall",
"src": "826:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "826:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "804:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "811:3:7",
"type": ""
}
],
"src": "751:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1056:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1068:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1079:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1064:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1064:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1056:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1103:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1114:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1099:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1122:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1128:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1118:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1118:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1092:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1092:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1092:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1148:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1282:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1156:124:7"
},
"nodeType": "YulFunctionCall",
"src": "1156:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1148:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1026:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1041:4:7",
"type": ""
}
],
"src": "875:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1471:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1481:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1493:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1504:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1489:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1489:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1481:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1528:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1524:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1524:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1547:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1553:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1543:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1543:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1517:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1517:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1517:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1573:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1707:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1581:124:7"
},
"nodeType": "YulFunctionCall",
"src": "1581:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1573:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1451:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1466:4:7",
"type": ""
}
],
"src": "1300:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1823:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1833:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1845:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1841:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1841:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1833:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1913:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1937:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1922:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1869:43:7"
},
"nodeType": "YulFunctionCall",
"src": "1869:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "1869:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1795:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1807:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1818:4:7",
"type": ""
}
],
"src": "1725:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2049:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2066:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2071:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2059:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2059:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "2059:19:7"
},
{
"nodeType": "YulAssignment",
"src": "2087:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2106:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2111:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2102:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2102:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2087:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2021:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2026:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2037:11:7",
"type": ""
}
],
"src": "1953:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2172:261:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2182:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2205:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2187:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2187:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2182:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2216:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2239:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2221:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2221:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2216:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2379:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2381:16:7"
},
"nodeType": "YulFunctionCall",
"src": "2381:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "2381:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2300:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2375:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2303:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2303:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2297:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2297:81:7"
},
"nodeType": "YulIf",
"src": "2294:2:7"
},
{
"nodeType": "YulAssignment",
"src": "2411:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2422:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2425:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2418:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2418:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2411:3:7"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2159:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2162:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2168:3:7",
"type": ""
}
],
"src": "2128:305:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2512:775:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2522:15:7",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "2531:6:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2522:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2546:14:7",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "2555:5:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2546:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:677:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2692:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2694:16:7"
},
"nodeType": "YulFunctionCall",
"src": "2694:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "2694:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2670:4:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2680:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2685:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2676:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2676:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2667:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2667:24:7"
},
"nodeType": "YulIf",
"src": "2664:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2759:419:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3139:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3152:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3159:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3148:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3148:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3139:5:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2734:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2744:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2730:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2730:16:7"
},
"nodeType": "YulIf",
"src": "2727:2:7"
},
{
"nodeType": "YulAssignment",
"src": "3191:23:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3203:4:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3209:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3199:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3199:15:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3191:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3227:44:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3262:8:7"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "3239:22:7"
},
"nodeType": "YulFunctionCall",
"src": "3239:32:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3227:8:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2580:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2590:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2577:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2577:15:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2593:2:7",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "2573:3:7",
"statements": []
},
"src": "2569:712:7"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "2467:6:7",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "2475:5:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2482:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2492:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2500:5:7",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2507:4:7",
"type": ""
}
],
"src": "2439:848:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3357:217:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3367:31:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3393:4:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3375:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3375:23:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3367:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3407:37:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3435:8:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3419:15:7"
},
"nodeType": "YulFunctionCall",
"src": "3419:25:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3407:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3454:113:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3484:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3490:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3500:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3463:20:7"
},
"nodeType": "YulFunctionCall",
"src": "3463:104:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3454:5:7"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3332:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3338:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3351:5:7",
"type": ""
}
],
"src": "3293:281:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3640:1013:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3835:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3837:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3846:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3837:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "3848:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3825:8:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3818:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3818:16:7"
},
"nodeType": "YulIf",
"src": "3815:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3880:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3882:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3891:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3882:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "3893:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3874:4:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3867:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3867:12:7"
},
"nodeType": "YulIf",
"src": "3864:2:7"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4010:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4012:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4021:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4012:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "4023:5:7"
}
]
},
"nodeType": "YulCase",
"src": "4003:27:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:176:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4089:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4091:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4091:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4074:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4084:3:7",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4071:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:7"
},
"nodeType": "YulIf",
"src": "4068:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4124:25:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:1:7",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4140:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4133:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4133:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4124:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4182:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4182:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4182:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4168:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4175:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4165:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4165:14:7"
},
"nodeType": "YulIf",
"src": "4162:2:7"
},
{
"nodeType": "YulLeave",
"src": "4215:5:7"
}
]
},
"nodeType": "YulCase",
"src": "4039:191:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4044:1:7",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3960:4:7"
},
"nodeType": "YulSwitch",
"src": "3953:277:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4362:123:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4376:28:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4389:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4395:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4385:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4385:19:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4376:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4435:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4437:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4437:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4437:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4423:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4430:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4420:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4420:14:7"
},
"nodeType": "YulIf",
"src": "4417:2:7"
},
{
"nodeType": "YulLeave",
"src": "4470:5:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4265:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4271:2:7",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4262:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4262:12:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4279:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4289:2:7",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4276:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4276:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4258:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4258:35:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4314:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4320:3:7",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4311:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4311:13:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4329:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4339:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4326:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4326:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4307:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4307:36:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4242:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4242:111:7"
},
"nodeType": "YulIf",
"src": "4239:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4495:57:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4529:1:7",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4532:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4538:8:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4548:3:7"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "4510:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4510:42:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4495:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4502:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4591:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4593:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4593:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4593:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4568:5:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4579:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4584:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4575:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4575:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4565:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4565:25:7"
},
"nodeType": "YulIf",
"src": "4562:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4622:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4635:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4642:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4631:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4631:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4622:5:7"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3610:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3616:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "3626:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3634:5:7",
"type": ""
}
],
"src": "3580:1073:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4707:300:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4717:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4740:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4722:17:7"
},
"nodeType": "YulFunctionCall",
"src": "4722:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4717:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4751:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4774:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4756:17:7"
},
"nodeType": "YulFunctionCall",
"src": "4756:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4751:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4949:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4951:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4951:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4951:18:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4861:1:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4854:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4854:9:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4847:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4847:17:7"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4869:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4876:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4944:1:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4872:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4872:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4866:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4866:81:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4843:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4843:105:7"
},
"nodeType": "YulIf",
"src": "4840:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4981:20:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4996:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4999:1:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4992:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4992:9:7"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4981:7:7"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4690:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4693:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4699:7:7",
"type": ""
}
],
"src": "4659:348:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5058:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5068:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5079:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5068:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5040:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5050:7:7",
"type": ""
}
],
"src": "5013:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5139:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5149:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5164:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5171:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5160:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5160:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5149:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5121:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5131:7:7",
"type": ""
}
],
"src": "5096:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5239:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5249:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5263:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5269:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5259:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5259:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5249:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5280:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5310:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5316:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5306:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5306:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5284:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5357:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5371:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5385:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5393:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5381:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5381:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5371:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5337:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5330:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5330:26:7"
},
"nodeType": "YulIf",
"src": "5327:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5460:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5474:16:7"
},
"nodeType": "YulFunctionCall",
"src": "5474:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "5474:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5424:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5447:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5455:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5444:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5444:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5421:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5421:38:7"
},
"nodeType": "YulIf",
"src": "5418:2:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5223:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5232:6:7",
"type": ""
}
],
"src": "5188:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5542:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5559:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5562:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5552:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5552:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "5552:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5659:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5649:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5649:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5649:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5680:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5683:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5673:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5673:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5673:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5514:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5728:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5745:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5738:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5738:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "5738:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5842:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5845:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5835:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5835:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5835:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5866:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5869:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5859:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5859:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5859:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5700:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5937:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5947:34:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5972:1:7",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5975:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5968:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5968:13:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5947:8:7"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5928:8:7",
"type": ""
}
],
"src": "5886:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6100:60:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6122:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6130:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6118:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6118:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6134:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6111:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6111:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "6111:42:7"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6092:6:7",
"type": ""
}
],
"src": "5994:166:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6272:75:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6294:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6302:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6290:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6290:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6306:33:7",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6283:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6283:57:7"
},
"nodeType": "YulExpressionStatement",
"src": "6283:57:7"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6264:6:7",
"type": ""
}
],
"src": "6166:181:7"
}
]
},
"contents": "{\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_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_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_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 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 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 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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600681526020017f42696166726100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4249414652410000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003c3565b508060049080519060200190620000af929190620003c3565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df620001c160201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001bb3362000193620001c960201b60201c565b600a620001a19190620005fc565b6001620001af919062000739565b620001d260201b60201c565b620008a4565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000245576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023c90620004f4565b60405180910390fd5b62000259600083836200033760201b60201c565b80600260008282546200026d919062000544565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c4919062000544565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032b919062000516565b60405180910390a35050565b62000347620003a760201b60201c565b156200038a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038190620004d2565b60405180910390fd5b620003a2838383620003be60201b62000d181760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620003d190620007b1565b90600052602060002090601f016020900481019282620003f5576000855562000441565b82601f106200041057805160ff191683800117855562000441565b8280016001018555821562000441579182015b828111156200044057825182559160200191906001019062000423565b5b50905062000450919062000454565b5090565b5b808211156200046f57600081600090555060010162000455565b5090565b60006200048260108362000533565b91506200048f8262000852565b602082019050919050565b6000620004a9601f8362000533565b9150620004b6826200087b565b602082019050919050565b620004cc816200079a565b82525050565b60006020820190508181036000830152620004ed8162000473565b9050919050565b600060208201905081810360008301526200050f816200049a565b9050919050565b60006020820190506200052d6000830184620004c1565b92915050565b600082825260208201905092915050565b600062000551826200079a565b91506200055e836200079a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005965762000595620007e7565b5b828201905092915050565b6000808291508390505b6001851115620005f357808604811115620005cb57620005ca620007e7565b5b6001851615620005db5780820291505b8081029050620005eb8562000845565b9450620005ab565b94509492505050565b600062000609826200079a565b91506200061683620007a4565b9250620006457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200064d565b905092915050565b6000826200065f576001905062000732565b816200066f576000905062000732565b81600181146200068857600281146200069357620006c9565b600191505062000732565b60ff841115620006a857620006a7620007e7565b5b8360020a915084821115620006c257620006c1620007e7565b5b5062000732565b5060208310610133831016604e8410600b8410161715620007035782820a905083811115620006fd57620006fc620007e7565b5b62000732565b620007128484846001620005a1565b925090508184048111156200072c576200072b620007e7565b5b81810290505b9392505050565b600062000746826200079a565b915062000753836200079a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200078f576200078e620007e7565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007ca57607f821691505b60208210811415620007e157620007e062000816565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611ef080620008b46000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806340c10f191461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b60405161013091906117c9565b60405180910390f35b610153600480360381019061014e919061153e565b610407565b60405161016091906117ae565b60405180910390f35b610171610425565b60405161017e919061196b565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61042f565b6040516101ae91906117ae565b60405180910390f35b6101bf610530565b6040516101cc9190611986565b60405180910390f35b6101ef60048036038101906101ea919061153e565b610539565b6040516101fc91906117ae565b60405180910390f35b61020d6105e5565b005b6102296004803603810190610224919061153e565b61066b565b005b6102336106f5565b60405161024091906117ae565b60405180910390f35b610263600480360381019061025e919061148a565b61070c565b604051610270919061196b565b60405180910390f35b610281610754565b005b61028b610891565b005b610295610917565b6040516102a29190611793565b60405180910390f35b6102b3610941565b6040516102c091906117c9565b60405180910390f35b6102e360048036038101906102de919061153e565b6109d3565b6040516102f091906117ae565b60405180910390f35b610313600480360381019061030e919061153e565b610ac7565b60405161032091906117ae565b60405180910390f35b610343600480360381019061033e91906114b3565b610ae5565b604051610350919061196b565b60405180910390f35b610373600480360381019061036e919061148a565b610b6c565b005b60606003805461038490611acf565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611acf565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610d1d565b8484610d25565b6001905092915050565b6000600254905090565b600061043c848484610ef0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe906118ab565b60405180910390fd5b61052485610513610d1d565b858461051f9190611a13565b610d25565b60019150509392505050565b60006012905090565b60006105db610546610d1d565b848460016000610554610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d691906119bd565b610d25565b6001905092915050565b6105ed610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661060b610917565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906118cb565b60405180910390fd5b61066961116f565b565b610673610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610691610917565b73ffffffffffffffffffffffffffffffffffffffff16146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de906118cb565b60405180910390fd5b6106f18282611211565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075c610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661077a610917565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c7906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610899610d1d565b73ffffffffffffffffffffffffffffffffffffffff166108b7610917565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906118cb565b60405180910390fd5b610915611365565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095090611acf565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90611acf565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b600080600160006109e2610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061192b565b60405180910390fd5b610abc610aaa610d1d565b858584610ab79190611a13565b610d25565b600191505092915050565b6000610adb610ad4610d1d565b8484610ef0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b74610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b92610917565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061182b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc9061184b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee3919061196b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906117eb565b60405180910390fd5b610fdb838383611408565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110589061186b565b60405180910390fd5b818161106d9190611a13565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd91906119bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611161919061196b565b60405180910390a350505050565b6111776106f5565b6111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad9061180b565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111fa610d1d565b6040516112079190611793565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061194b565b60405180910390fd5b61128d60008383611408565b806002600082825461129f91906119bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f491906119bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611359919061196b565b60405180910390a35050565b61136d6106f5565b156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a49061188b565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113f1610d1d565b6040516113fe9190611793565b60405180910390a1565b6114106106f5565b15611450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114479061188b565b60405180910390fd5b61145b838383610d18565b505050565b60008135905061146f81611e8c565b92915050565b60008135905061148481611ea3565b92915050565b60006020828403121561149c57600080fd5b60006114aa84828501611460565b91505092915050565b600080604083850312156114c657600080fd5b60006114d485828601611460565b92505060206114e585828601611460565b9150509250929050565b60008060006060848603121561150457600080fd5b600061151286828701611460565b935050602061152386828701611460565b925050604061153486828701611475565b9150509250925092565b6000806040838503121561155157600080fd5b600061155f85828601611460565b925050602061157085828601611475565b9150509250929050565b61158381611a47565b82525050565b61159281611a59565b82525050565b60006115a3826119a1565b6115ad81856119ac565b93506115bd818560208601611a9c565b6115c681611b5f565b840191505092915050565b60006115de6023836119ac565b91506115e982611b70565b604082019050919050565b60006116016014836119ac565b915061160c82611bbf565b602082019050919050565b60006116246026836119ac565b915061162f82611be8565b604082019050919050565b60006116476022836119ac565b915061165282611c37565b604082019050919050565b600061166a6026836119ac565b915061167582611c86565b604082019050919050565b600061168d6010836119ac565b915061169882611cd5565b602082019050919050565b60006116b06028836119ac565b91506116bb82611cfe565b604082019050919050565b60006116d36020836119ac565b91506116de82611d4d565b602082019050919050565b60006116f66025836119ac565b915061170182611d76565b604082019050919050565b60006117196024836119ac565b915061172482611dc5565b604082019050919050565b600061173c6025836119ac565b915061174782611e14565b604082019050919050565b600061175f601f836119ac565b915061176a82611e63565b602082019050919050565b61177e81611a85565b82525050565b61178d81611a8f565b82525050565b60006020820190506117a8600083018461157a565b92915050565b60006020820190506117c36000830184611589565b92915050565b600060208201905081810360008301526117e38184611598565b905092915050565b60006020820190508181036000830152611804816115d1565b9050919050565b60006020820190508181036000830152611824816115f4565b9050919050565b6000602082019050818103600083015261184481611617565b9050919050565b600060208201905081810360008301526118648161163a565b9050919050565b600060208201905081810360008301526118848161165d565b9050919050565b600060208201905081810360008301526118a481611680565b9050919050565b600060208201905081810360008301526118c4816116a3565b9050919050565b600060208201905081810360008301526118e4816116c6565b9050919050565b60006020820190508181036000830152611904816116e9565b9050919050565b600060208201905081810360008301526119248161170c565b9050919050565b600060208201905081810360008301526119448161172f565b9050919050565b6000602082019050818103600083015261196481611752565b9050919050565b60006020820190506119806000830184611775565b92915050565b600060208201905061199b6000830184611784565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119c882611a85565b91506119d383611a85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0857611a07611b01565b5b828201905092915050565b6000611a1e82611a85565b9150611a2983611a85565b925082821015611a3c57611a3b611b01565b5b828203905092915050565b6000611a5282611a65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611aba578082015181840152602081019050611a9f565b83811115611ac9576000848401525b50505050565b60006002820490506001821680611ae757607f821691505b60208210811415611afb57611afa611b30565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e9581611a47565b8114611ea057600080fd5b50565b611eac81611a85565b8114611eb757600080fd5b5056fea2646970667358221220adf7727859988210326853b201cf8189d7521db03bc366836aa202093356e5a864736f6c63430008010033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4269616672610000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4249414652410000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x3C3 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x3C3 JUMP JUMPDEST POP POP POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH3 0xDF PUSH3 0x1C1 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH3 0x1BB CALLER PUSH3 0x193 PUSH3 0x1C9 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x1A1 SWAP2 SWAP1 PUSH3 0x5FC JUMP JUMPDEST PUSH1 0x1 PUSH3 0x1AF SWAP2 SWAP1 PUSH3 0x739 JUMP JUMPDEST PUSH3 0x1D2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x8A4 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x245 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x23C SWAP1 PUSH3 0x4F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x259 PUSH1 0x0 DUP4 DUP4 PUSH3 0x337 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x26D SWAP2 SWAP1 PUSH3 0x544 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 0x2C4 SWAP2 SWAP1 PUSH3 0x544 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 0x32B SWAP2 SWAP1 PUSH3 0x516 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x347 PUSH3 0x3A7 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x38A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x381 SWAP1 PUSH3 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x3A2 DUP4 DUP4 DUP4 PUSH3 0x3BE PUSH1 0x20 SHL PUSH3 0xD18 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x3D1 SWAP1 PUSH3 0x7B1 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3F5 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x441 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x410 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x441 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x441 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x440 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x423 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x450 SWAP2 SWAP1 PUSH3 0x454 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x46F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x455 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x482 PUSH1 0x10 DUP4 PUSH3 0x533 JUMP JUMPDEST SWAP2 POP PUSH3 0x48F DUP3 PUSH3 0x852 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4A9 PUSH1 0x1F DUP4 PUSH3 0x533 JUMP JUMPDEST SWAP2 POP PUSH3 0x4B6 DUP3 PUSH3 0x87B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4CC DUP2 PUSH3 0x79A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x4ED DUP2 PUSH3 0x473 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 0x50F DUP2 PUSH3 0x49A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x52D PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4C1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x551 DUP3 PUSH3 0x79A JUMP JUMPDEST SWAP2 POP PUSH3 0x55E DUP4 PUSH3 0x79A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x596 JUMPI PUSH3 0x595 PUSH3 0x7E7 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 0x5F3 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x5CB JUMPI PUSH3 0x5CA PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x5DB JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x5EB DUP6 PUSH3 0x845 JUMP JUMPDEST SWAP5 POP PUSH3 0x5AB JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x609 DUP3 PUSH3 0x79A JUMP JUMPDEST SWAP2 POP PUSH3 0x616 DUP4 PUSH3 0x7A4 JUMP JUMPDEST SWAP3 POP PUSH3 0x645 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x64D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x65F JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x732 JUMP JUMPDEST DUP2 PUSH3 0x66F JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x732 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x688 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x693 JUMPI PUSH3 0x6C9 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x732 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6A8 JUMPI PUSH3 0x6A7 PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6C2 JUMPI PUSH3 0x6C1 PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST POP PUSH3 0x732 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x703 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x6FD JUMPI PUSH3 0x6FC PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST PUSH3 0x732 JUMP JUMPDEST PUSH3 0x712 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5A1 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x72C JUMPI PUSH3 0x72B PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x746 DUP3 PUSH3 0x79A JUMP JUMPDEST SWAP2 POP PUSH3 0x753 DUP4 PUSH3 0x79A JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x78F JUMPI PUSH3 0x78E PUSH3 0x7E7 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP 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 0x7CA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7E1 JUMPI PUSH3 0x7E0 PUSH3 0x816 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 PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1EF0 DUP1 PUSH3 0x8B4 PUSH1 0x0 CODECOPY 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 0x116 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2F9 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x359 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x28D JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1B7 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1D5 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x22B JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x169 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x187 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x123 PUSH2 0x375 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x153 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x14E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x407 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH2 0x425 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17E SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AE SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BF PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CC SWAP2 SWAP1 PUSH2 0x1986 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EA SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20D PUSH2 0x5E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x66B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x233 PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x263 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0x70C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x281 PUSH2 0x754 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28B PUSH2 0x891 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x295 PUSH2 0x917 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B3 PUSH2 0x941 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C0 SWAP2 SWAP1 PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x9D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F0 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x313 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x30E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0xAC7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x320 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x343 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33E SWAP2 SWAP1 PUSH2 0x14B3 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x350 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x373 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0xB6C JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x384 SWAP1 PUSH2 0x1ACF 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 0x3B0 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3D2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3FD 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 0x3E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41B PUSH2 0x414 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43C DUP5 DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x487 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x507 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4FE SWAP1 PUSH2 0x18AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x524 DUP6 PUSH2 0x513 PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP5 PUSH2 0x51F SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH2 0xD25 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 0x5DB PUSH2 0x546 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x554 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x19BD JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5ED PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x60B PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x661 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x658 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x669 PUSH2 0x116F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x673 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x691 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6DE SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6F1 DUP3 DUP3 PUSH2 0x1211 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 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 0x75C PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x77A PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C7 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x899 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8B7 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x90D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x904 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x915 PUSH2 0x1365 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x950 SWAP1 PUSH2 0x1ACF 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 0x97C SWAP1 PUSH2 0x1ACF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9C9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x99E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9C9 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 0x9AC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x9E2 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 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 DUP3 DUP2 LT ISZERO PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP1 PUSH2 0x192B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xABC PUSH2 0xAAA PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAB7 SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADB PUSH2 0xAD4 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 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 0xB74 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB92 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBE8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDF SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC58 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4F SWAP1 PUSH2 0x182B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8C SWAP1 PUSH2 0x190B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDFC SWAP1 PUSH2 0x184B 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 0xEE3 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF57 SWAP1 PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFDB DUP4 DUP4 DUP4 PUSH2 0x1408 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 0x1061 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1058 SWAP1 PUSH2 0x186B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x106D SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST 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 0x10FD SWAP2 SWAP1 PUSH2 0x19BD JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1161 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x1177 PUSH2 0x6F5 JUMP JUMPDEST PUSH2 0x11B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AD SWAP1 PUSH2 0x180B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x11FA PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1207 SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1281 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1278 SWAP1 PUSH2 0x194B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x128D PUSH1 0x0 DUP4 DUP4 PUSH2 0x1408 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x19BD 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 0x12F4 SWAP2 SWAP1 PUSH2 0x19BD 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 0x1359 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x136D PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x13AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13A4 SWAP1 PUSH2 0x188B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x13F1 PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13FE SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x1410 PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x1450 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1447 SWAP1 PUSH2 0x188B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x145B DUP4 DUP4 DUP4 PUSH2 0xD18 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x146F DUP2 PUSH2 0x1E8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1484 DUP2 PUSH2 0x1EA3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x149C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14AA DUP5 DUP3 DUP6 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14D4 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x14E5 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 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 0x1504 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1512 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1523 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1534 DUP7 DUP3 DUP8 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1570 DUP6 DUP3 DUP7 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1583 DUP2 PUSH2 0x1A47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1592 DUP2 PUSH2 0x1A59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15A3 DUP3 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0x15AD DUP2 DUP6 PUSH2 0x19AC JUMP JUMPDEST SWAP4 POP PUSH2 0x15BD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1A9C JUMP JUMPDEST PUSH2 0x15C6 DUP2 PUSH2 0x1B5F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DE PUSH1 0x23 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x15E9 DUP3 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1601 PUSH1 0x14 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x160C DUP3 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1624 PUSH1 0x26 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x162F DUP3 PUSH2 0x1BE8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1647 PUSH1 0x22 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1652 DUP3 PUSH2 0x1C37 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x166A PUSH1 0x26 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1675 DUP3 PUSH2 0x1C86 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x168D PUSH1 0x10 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1698 DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16B0 PUSH1 0x28 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x16BB DUP3 PUSH2 0x1CFE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16D3 PUSH1 0x20 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x16DE DUP3 PUSH2 0x1D4D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F6 PUSH1 0x25 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1701 DUP3 PUSH2 0x1D76 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1719 PUSH1 0x24 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1724 DUP3 PUSH2 0x1DC5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x173C PUSH1 0x25 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1747 DUP3 PUSH2 0x1E14 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x175F PUSH1 0x1F DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x176A DUP3 PUSH2 0x1E63 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x177E DUP2 PUSH2 0x1A85 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x178D DUP2 PUSH2 0x1A8F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17A8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x157A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17C3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1589 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17E3 DUP2 DUP5 PUSH2 0x1598 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 0x1804 DUP2 PUSH2 0x15D1 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 0x1824 DUP2 PUSH2 0x15F4 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 0x1844 DUP2 PUSH2 0x1617 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 0x1864 DUP2 PUSH2 0x163A 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 0x1884 DUP2 PUSH2 0x165D 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 0x18A4 DUP2 PUSH2 0x1680 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 0x18C4 DUP2 PUSH2 0x16A3 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 0x18E4 DUP2 PUSH2 0x16C6 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 0x1904 DUP2 PUSH2 0x16E9 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 0x1924 DUP2 PUSH2 0x170C 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 0x1944 DUP2 PUSH2 0x172F 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 0x1964 DUP2 PUSH2 0x1752 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1980 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1775 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1784 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 PUSH2 0x19C8 DUP3 PUSH2 0x1A85 JUMP JUMPDEST SWAP2 POP PUSH2 0x19D3 DUP4 PUSH2 0x1A85 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1A08 JUMPI PUSH2 0x1A07 PUSH2 0x1B01 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A1E DUP3 PUSH2 0x1A85 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A29 DUP4 PUSH2 0x1A85 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1A3C JUMPI PUSH2 0x1A3B PUSH2 0x1B01 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A52 DUP3 PUSH2 0x1A65 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1ABA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1A9F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1AC9 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 0x1AE7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1AFB JUMPI PUSH2 0x1AFA PUSH2 0x1B30 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 PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 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 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 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 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 0x1E95 DUP2 PUSH2 0x1A47 JUMP JUMPDEST DUP2 EQ PUSH2 0x1EA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1EAC DUP2 PUSH2 0x1A85 JUMP JUMPDEST DUP2 EQ PUSH2 0x1EB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD 0xF7 PUSH19 0x7859988210326853B201CF8189D7521DB03BC3 PUSH7 0x836AA202093356 0xE5 0xA8 PUSH5 0x736F6C6343 STOP ADDMOD ADD STOP CALLER ",
"sourceMap": "241:580:6:-:0;;;291:96;;;;;;;;;;1898:114:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973:5;1965;:13;;;;;;;;;;;;:::i;:::-;;1998:7;1988;:17;;;;;;;;;;;;:::i;:::-;;1898:114;;935:5:1;925:7;;:15;;;;;;;;;;;;;;;;;;867:17:0;887:12;:10;;;:12;;:::i;:::-;867:32;;918:9;909:6;;:18;;;;;;;;;;;;;;;;;;975:9;942:43;;971:1;942:43;;;;;;;;;;;;842:150;341:39:6::1;347:10;369;:8;;;:10;;:::i;:::-;363:2;:16;;;;:::i;:::-;359:1;:20;;;;:::i;:::-;341:5;;;:39;;:::i;:::-;241:580:::0;;586:96:5;639:7;665:10;658:17;;586:96;:::o;3014:91:2:-;3072:5;3096:2;3089:9;;3014:91;:::o;8023:330::-;8125:1;8106:21;;:7;:21;;;;8098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8174:49;8203:1;8207:7;8216:6;8174:20;;;:49;;:::i;:::-;8250:6;8234:12;;:22;;;;;;;:::i;:::-;;;;;;;;8288:6;8266:9;:18;8276:7;8266:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8330:7;8309:37;;8326:1;8309:37;;;8339:6;8309:37;;;;;;:::i;:::-;;;;;;;;8023:330;;:::o;626:193:6:-;1356:8:1;:6;;;:8;;:::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;768:44:6::1;795:4;801:2;805:6;768:26;;;;;:44;;:::i;:::-;626:193:::0;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;10506:92:2:-;;;;:::o;241:580:6:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:7:-;;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;153:220;;;:::o;379:366::-;;542:67;606:2;601:3;542:67;:::i;:::-;535:74;;618:93;707:3;618:93;:::i;:::-;736:2;731:3;727:12;720:19;;525:220;;;:::o;751:118::-;838:24;856:5;838:24;:::i;:::-;833:3;826:37;816:53;;:::o;875:419::-;;1079:2;1068:9;1064:18;1056:26;;1128:9;1122:4;1118:20;1114:1;1103:9;1099:17;1092:47;1156:131;1282:4;1156:131;:::i;:::-;1148:139;;1046:248;;;:::o;1300:419::-;;1504:2;1493:9;1489:18;1481:26;;1553:9;1547:4;1543:20;1539:1;1528:9;1524:17;1517:47;1581:131;1707:4;1581:131;:::i;:::-;1573:139;;1471:248;;;:::o;1725:222::-;;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1823:124;;;;:::o;1953:169::-;;2071:6;2066:3;2059:19;2111:4;2106:3;2102:14;2087:29;;2049:73;;;;:::o;2128:305::-;;2187:20;2205:1;2187:20;:::i;:::-;2182:25;;2221:20;2239:1;2221:20;:::i;:::-;2216:25;;2375:1;2307:66;2303:74;2300:1;2297:81;2294:2;;;2381:18;;:::i;:::-;2294:2;2425:1;2422;2418:9;2411:16;;2172:261;;;;:::o;2439:848::-;;;2531:6;2522:15;;2555:5;2546:14;;2569:712;2590:1;2580:8;2577:15;2569:712;;;2685:4;2680:3;2676:14;2670:4;2667:24;2664:2;;;2694:18;;:::i;:::-;2664:2;2744:1;2734:8;2730:16;2727:2;;;3159:4;3152:5;3148:16;3139:25;;2727:2;3209:4;3203;3199:15;3191:23;;3239:32;3262:8;3239:32;:::i;:::-;3227:44;;2569:712;;;2512:775;;;;;;;:::o;3293:281::-;;3375:23;3393:4;3375:23;:::i;:::-;3367:31;;3419:25;3435:8;3419:25;:::i;:::-;3407:37;;3463:104;3500:66;3490:8;3484:4;3463:104;:::i;:::-;3454:113;;3357:217;;;;:::o;3580:1073::-;;3825:8;3815:2;;3846:1;3837:10;;3848:5;;3815:2;3874:4;3864:2;;3891:1;3882:10;;3893:5;;3864:2;3960:4;4008:1;4003:27;;;;4044:1;4039:191;;;;3953:277;;4003:27;4021:1;4012:10;;4023:5;;;4039:191;4084:3;4074:8;4071:17;4068:2;;;4091:18;;:::i;:::-;4068:2;4140:8;4137:1;4133:16;4124:25;;4175:3;4168:5;4165:14;4162:2;;;4182:18;;:::i;:::-;4162:2;4215:5;;;3953:277;;4339:2;4329:8;4326:16;4320:3;4314:4;4311:13;4307:36;4289:2;4279:8;4276:16;4271:2;4265:4;4262:12;4258:35;4242:111;4239:2;;;4395:8;4389:4;4385:19;4376:28;;4430:3;4423:5;4420:14;4417:2;;;4437:18;;:::i;:::-;4417:2;4470:5;;4239:2;4510:42;4548:3;4538:8;4532:4;4529:1;4510:42;:::i;:::-;4495:57;;;;4584:4;4579:3;4575:14;4568:5;4565:25;4562:2;;;4593:18;;:::i;:::-;4562:2;4642:4;4635:5;4631:16;4622:25;;3640:1013;;;;;;:::o;4659:348::-;;4722:20;4740:1;4722:20;:::i;:::-;4717:25;;4756:20;4774:1;4756:20;:::i;:::-;4751:25;;4944:1;4876:66;4872:74;4869:1;4866:81;4861:1;4854:9;4847:17;4843:105;4840:2;;;4951:18;;:::i;:::-;4840:2;4999:1;4996;4992:9;4981:20;;4707:300;;;;:::o;5013:77::-;;5079:5;5068:16;;5058:32;;;:::o;5096:86::-;;5171:4;5164:5;5160:16;5149:27;;5139:43;;;:::o;5188:320::-;;5269:1;5263:4;5259:12;5249:22;;5316:1;5310:4;5306:12;5337:18;5327:2;;5393:4;5385:6;5381:17;5371:27;;5327:2;5455;5447:6;5444:14;5424:18;5421:38;5418:2;;;5474:18;;:::i;:::-;5418:2;5239:269;;;;:::o;5514:180::-;5562:77;5559:1;5552:88;5659:4;5656:1;5649:15;5683:4;5680:1;5673:15;5700:180;5748:77;5745:1;5738:88;5845:4;5842:1;5835:15;5869:4;5866:1;5859:15;5886:102;;5975:5;5972:1;5968:13;5947:34;;5937:51;;;:::o;5994:166::-;6134:18;6130:1;6122:6;6118:14;6111:42;6100:60;:::o;6166:181::-;6306:33;6302:1;6294:6;6290:14;6283:57;6272:75;:::o;241:580:6:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:18802:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:7"
},
"nodeType": "YulFunctionCall",
"src": "78:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:7"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:7"
},
"nodeType": "YulFunctionCall",
"src": "107:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:7"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:7",
"type": ""
}
],
"src": "7:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:7"
},
"nodeType": "YulFunctionCall",
"src": "223:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:7"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:7"
},
"nodeType": "YulFunctionCall",
"src": "252:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:7"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:7",
"type": ""
}
],
"src": "152:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:7"
},
"nodeType": "YulFunctionCall",
"src": "411:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:7"
},
"nodeType": "YulFunctionCall",
"src": "380:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:7"
},
"nodeType": "YulFunctionCall",
"src": "376:32:7"
},
"nodeType": "YulIf",
"src": "373:2:7"
},
{
"nodeType": "YulBlock",
"src": "435:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:7"
},
"nodeType": "YulFunctionCall",
"src": "510:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:7"
},
"nodeType": "YulFunctionCall",
"src": "489:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:7",
"type": ""
}
],
"src": "297:262:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:7"
},
"nodeType": "YulFunctionCall",
"src": "696:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:7"
},
"nodeType": "YulFunctionCall",
"src": "665:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:7"
},
"nodeType": "YulFunctionCall",
"src": "661:32:7"
},
"nodeType": "YulIf",
"src": "658:2:7"
},
{
"nodeType": "YulBlock",
"src": "720:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:7"
},
"nodeType": "YulFunctionCall",
"src": "795:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:7"
},
"nodeType": "YulFunctionCall",
"src": "774:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:7"
},
"nodeType": "YulFunctionCall",
"src": "923:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:7"
},
"nodeType": "YulFunctionCall",
"src": "902:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:7",
"type": ""
}
],
"src": "565:407:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:7",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:7"
},
"nodeType": "YulIf",
"src": "1088:2:7"
},
{
"nodeType": "YulBlock",
"src": "1150:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:7",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:7"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:7",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:7",
"type": ""
}
],
"src": "978:552:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:7"
},
"nodeType": "YulIf",
"src": "1629:2:7"
},
{
"nodeType": "YulBlock",
"src": "1691:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:7",
"type": ""
}
],
"src": "1536:407:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2014:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2031:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2054:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2036:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2036:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2024:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2024:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "2024:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2002:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2009:3:7",
"type": ""
}
],
"src": "1949:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2132:50:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2149:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2169:5:7"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2154:14:7"
},
"nodeType": "YulFunctionCall",
"src": "2154:21:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2142:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2142:34:7"
},
"nodeType": "YulExpressionStatement",
"src": "2142:34:7"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2120:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2127:3:7",
"type": ""
}
],
"src": "2073:109:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2280:272:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2290:53:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2337:5:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2304:32:7"
},
"nodeType": "YulFunctionCall",
"src": "2304:39:7"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2294:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2352:78:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2418:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2423:6:7"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2359:58:7"
},
"nodeType": "YulFunctionCall",
"src": "2359:71:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2352:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2465:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2472:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2461:16:7"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2479:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2484:6:7"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2439:21:7"
},
"nodeType": "YulFunctionCall",
"src": "2439:52:7"
},
"nodeType": "YulExpressionStatement",
"src": "2439:52:7"
},
{
"nodeType": "YulAssignment",
"src": "2500:46:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2511:3:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2538:6:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2516:21:7"
},
"nodeType": "YulFunctionCall",
"src": "2516:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2507:39:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2500:3:7"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2261:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2268:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2276:3:7",
"type": ""
}
],
"src": "2188:364:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2714:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2780:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2785:2:7",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2721:58:7"
},
"nodeType": "YulFunctionCall",
"src": "2721:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2714:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2886:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "2797:88:7"
},
"nodeType": "YulFunctionCall",
"src": "2797:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "2797:93:7"
},
{
"nodeType": "YulAssignment",
"src": "2899:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2910:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2915:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2906:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2906:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2899:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2692:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2700:3:7",
"type": ""
}
],
"src": "2558:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3076:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3086:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3152:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3157:2:7",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3093:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3093:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3086:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3258:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "3169:88:7"
},
"nodeType": "YulFunctionCall",
"src": "3169:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "3169:93:7"
},
{
"nodeType": "YulAssignment",
"src": "3271:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3282:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3287:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3278:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3278:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3271:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3064:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3072:3:7",
"type": ""
}
],
"src": "2930:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3448:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3458:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3524:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3529:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3465:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3465:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3458:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3630:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "3541:88:7"
},
"nodeType": "YulFunctionCall",
"src": "3541:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "3541:93:7"
},
{
"nodeType": "YulAssignment",
"src": "3643:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3654:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3659:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3650:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3650:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3643:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3436:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3444:3:7",
"type": ""
}
],
"src": "3302:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3820:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3830:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3896:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3901:2:7",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3837:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3837:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3830:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4002:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "3913:88:7"
},
"nodeType": "YulFunctionCall",
"src": "3913:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "3913:93:7"
},
{
"nodeType": "YulAssignment",
"src": "4015:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4026:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4031:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4022:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4022:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4015:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3808:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3816:3:7",
"type": ""
}
],
"src": "3674:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4192:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4202:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4268:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4273:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4209:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4209:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4202:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4374:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4285:88:7"
},
"nodeType": "YulFunctionCall",
"src": "4285:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "4285:93:7"
},
{
"nodeType": "YulAssignment",
"src": "4387:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4398:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4403:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4394:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4394:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4387:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4180:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4188:3:7",
"type": ""
}
],
"src": "4046:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4564:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4574:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4640:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4645:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4581:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4581:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4574:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4746:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "4657:88:7"
},
"nodeType": "YulFunctionCall",
"src": "4657:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "4657:93:7"
},
{
"nodeType": "YulAssignment",
"src": "4759:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4770:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4775:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4766:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4759:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4552:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4560:3:7",
"type": ""
}
],
"src": "4418:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4936:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4946:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5012:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5017:2:7",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4953:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4953:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4946:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5118:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "5029:88:7"
},
"nodeType": "YulFunctionCall",
"src": "5029:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "5029:93:7"
},
{
"nodeType": "YulAssignment",
"src": "5131:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5142:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5147:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5138:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5138:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5131:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4924:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4932:3:7",
"type": ""
}
],
"src": "4790:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5308:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5318:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5384:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5389:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5325:58:7"
},
"nodeType": "YulFunctionCall",
"src": "5325:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5318:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5490:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "5401:88:7"
},
"nodeType": "YulFunctionCall",
"src": "5401:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "5401:93:7"
},
{
"nodeType": "YulAssignment",
"src": "5503:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5514:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5519:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5510:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5510:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5503:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5296:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5304:3:7",
"type": ""
}
],
"src": "5162:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5680:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5690:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5756:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5761:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5697:58:7"
},
"nodeType": "YulFunctionCall",
"src": "5697:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5690:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5862:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "5773:88:7"
},
"nodeType": "YulFunctionCall",
"src": "5773:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "5773:93:7"
},
{
"nodeType": "YulAssignment",
"src": "5875:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5886:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5891:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5882:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5882:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5875:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5668:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5676:3:7",
"type": ""
}
],
"src": "5534:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6052:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6062:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6128:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6133:2:7",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6069:58:7"
},
"nodeType": "YulFunctionCall",
"src": "6069:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6062:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6234:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "6145:88:7"
},
"nodeType": "YulFunctionCall",
"src": "6145:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "6145:93:7"
},
{
"nodeType": "YulAssignment",
"src": "6247:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6258:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6263:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6254:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6254:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6247:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6040:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6048:3:7",
"type": ""
}
],
"src": "5906:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6424:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6434:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6500:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6505:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6441:58:7"
},
"nodeType": "YulFunctionCall",
"src": "6441:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6434:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6606:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "6517:88:7"
},
"nodeType": "YulFunctionCall",
"src": "6517:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "6517:93:7"
},
{
"nodeType": "YulAssignment",
"src": "6619:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6630:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6635:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6626:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6626:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6619:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6412:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6420:3:7",
"type": ""
}
],
"src": "6278:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6796:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6806:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6872:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6877:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6813:58:7"
},
"nodeType": "YulFunctionCall",
"src": "6813:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6806:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6978:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "6889:88:7"
},
"nodeType": "YulFunctionCall",
"src": "6889:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "6889:93:7"
},
{
"nodeType": "YulAssignment",
"src": "6991:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7002:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7007:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6998:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6998:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6991:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6784:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6792:3:7",
"type": ""
}
],
"src": "6650:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7087:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7104:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7127:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7109:17:7"
},
"nodeType": "YulFunctionCall",
"src": "7109:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7097:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7097:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "7097:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7075:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7082:3:7",
"type": ""
}
],
"src": "7022:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7207:51:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7224:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7245:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7229:15:7"
},
"nodeType": "YulFunctionCall",
"src": "7229:22:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7217:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7217:35:7"
},
"nodeType": "YulExpressionStatement",
"src": "7217:35:7"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7195:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7202:3:7",
"type": ""
}
],
"src": "7146:112:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7362:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7372:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7384:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7395:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7380:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7380:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7372:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7452:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7465:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7476:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7461:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7461:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "7408:43:7"
},
"nodeType": "YulFunctionCall",
"src": "7408:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "7408:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7334:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7346:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7357:4:7",
"type": ""
}
],
"src": "7264:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7584:118:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7594:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7606:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7617:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7602:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7602:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7594:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7668:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7681:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7692:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7677:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7677:17:7"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "7630:37:7"
},
"nodeType": "YulFunctionCall",
"src": "7630:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "7630:65:7"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7556:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7568:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7579:4:7",
"type": ""
}
],
"src": "7492:210:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7826:195:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7836:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7848:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7859:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7844:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7844:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7836:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7883:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7894:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7879:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7879:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7902:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7908:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7898:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7898:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7872:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7872:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "7872:47:7"
},
{
"nodeType": "YulAssignment",
"src": "7928:86:7",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8000:6:7"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8009:4:7"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7936:63:7"
},
"nodeType": "YulFunctionCall",
"src": "7936:78:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7928:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7798:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7810:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7821:4:7",
"type": ""
}
],
"src": "7708:313:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8198:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8208:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8220:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8231:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8216:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8216:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8208:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8255:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8266:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8251:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8251:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8274:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8280:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8270:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8270:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8244:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8244:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8244:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8300:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8434:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8308:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8308:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8300:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8178:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8193:4:7",
"type": ""
}
],
"src": "8027:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8623:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8633:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8645:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8656:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8641:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8641:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8633:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8680:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8691:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8676:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8676:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8699:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8705:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8695:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8695:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8669:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8669:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8669:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8725:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8859:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8733:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8733:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8725:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8603:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8618:4:7",
"type": ""
}
],
"src": "8452:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9048:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9058:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9070:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9081:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9066:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9066:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9058:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9105:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9116:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9101:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9101:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9124:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9130:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9120:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9120:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9094:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9094:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9094:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9150:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9284:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9158:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9158:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9150:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9028:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9043:4:7",
"type": ""
}
],
"src": "8877:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9473:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9483:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9495:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9506:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9491:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9491:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9483:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9530:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9541:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9526:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9526:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9549:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9555:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9545:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9545:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9519:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9519:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9519:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9575:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9709:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9583:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9583:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9575:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9453:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9468:4:7",
"type": ""
}
],
"src": "9302:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9898:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9908:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9920:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9931:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9916:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9916:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9908:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9955:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9966:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9951:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9951:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9974:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9980:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9970:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9970:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9944:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9944:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9944:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10000:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10134:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10008:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10008:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10000:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9878:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9893:4:7",
"type": ""
}
],
"src": "9727:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10323:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10333:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10345:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10356:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10341:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10341:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10333:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10380:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10391:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10376:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10376:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10399:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10405:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10395:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10395:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10369:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10369:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10369:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10425:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10559:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10433:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10433:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10425:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10303:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10318:4:7",
"type": ""
}
],
"src": "10152:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10748:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10758:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10770:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10766:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10758:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10805:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10816:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10801:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10801:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10824:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10830:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10820:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10820:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10794:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10794:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10794:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10850:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10984:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10858:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10858:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10850:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10728:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10743:4:7",
"type": ""
}
],
"src": "10577:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11173:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11183:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11195:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11206:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11191:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11191:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11183:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11230:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11241:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11226:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11226:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11249:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11255:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11245:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11245:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11219:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11219:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11219:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11275:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11409:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11283:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11283:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11275:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11153:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11168:4:7",
"type": ""
}
],
"src": "11002:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11598:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11608:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11620:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11631:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11616:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11616:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11608:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11655:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11666:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11651:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11651:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11674:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11680:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11670:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11670:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11644:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11644:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11644:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11700:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11834:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11708:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11708:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11700:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11578:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11593:4:7",
"type": ""
}
],
"src": "11427:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12023:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12033:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12045:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12056:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12041:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12041:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12033:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12080:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12091:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12076:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12076:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12099:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12105:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12095:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12095:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12069:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12069:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12069:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12125:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12259:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12133:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12133:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12125:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12003:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12018:4:7",
"type": ""
}
],
"src": "11852:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12448:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12458:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12470:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12481:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12466:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12466:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12458:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12505:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12516:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12501:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12501:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12524:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12530:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12520:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12520:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12494:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12494:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12494:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12550:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12684:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12558:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12558:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12550:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12428:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12443:4:7",
"type": ""
}
],
"src": "12277:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12873:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12883:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12895:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12906:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12891:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12891:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12883:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12930:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12941:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12926:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12926:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12949:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12955:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12945:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12945:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12919:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12919:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12919:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12975:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13109:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12983:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12983:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12975:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12853:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12868:4:7",
"type": ""
}
],
"src": "12702:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13225:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13235:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13247:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13258:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13243:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13243:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13235:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13315:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13328:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13339:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13324:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13324:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13271:43:7"
},
"nodeType": "YulFunctionCall",
"src": "13271:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "13271:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13197:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13209:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13220:4:7",
"type": ""
}
],
"src": "13127:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13449:120:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13459:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13471:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13482:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13467:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13467:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13459:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13535:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13548:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13559:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13544:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13544:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "13495:39:7"
},
"nodeType": "YulFunctionCall",
"src": "13495:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "13495:67:7"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13421:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13433:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13444:4:7",
"type": ""
}
],
"src": "13355:214:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13634:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13645:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13661:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13655:5:7"
},
"nodeType": "YulFunctionCall",
"src": "13655:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13645:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13617:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13627:6:7",
"type": ""
}
],
"src": "13575:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13776:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13793:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13798:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13786:6:7"
},
"nodeType": "YulFunctionCall",
"src": "13786:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "13786:19:7"
},
{
"nodeType": "YulAssignment",
"src": "13814:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13833:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13838:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13829:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13829:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "13814:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13748:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13753:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "13764:11:7",
"type": ""
}
],
"src": "13680:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13899:261:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13909:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13932:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13914:17:7"
},
"nodeType": "YulFunctionCall",
"src": "13914:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13909:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13943:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13966:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13948:17:7"
},
"nodeType": "YulFunctionCall",
"src": "13948:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13943:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14106:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14108:16:7"
},
"nodeType": "YulFunctionCall",
"src": "14108:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "14108:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14027:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14034:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14102:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14030:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14030:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "14024:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14024:81:7"
},
"nodeType": "YulIf",
"src": "14021:2:7"
},
{
"nodeType": "YulAssignment",
"src": "14138:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14149:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14152:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14145:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14145:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "14138:3:7"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "13886:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "13889:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "13895:3:7",
"type": ""
}
],
"src": "13855:305:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14211:146:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14221:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14244:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14226:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14226:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14221:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14255:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14278:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14260:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14260:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14255:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14302:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14304:16:7"
},
"nodeType": "YulFunctionCall",
"src": "14304:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "14304:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14296:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14299:1:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14293:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14293:8:7"
},
"nodeType": "YulIf",
"src": "14290:2:7"
},
{
"nodeType": "YulAssignment",
"src": "14334:17:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14346:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14349:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14342:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14342:9:7"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "14334:4:7"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14197:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14200:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "14206:4:7",
"type": ""
}
],
"src": "14166:191:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14408:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14418:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14447:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "14429:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14429:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14418:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14390:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14400:7:7",
"type": ""
}
],
"src": "14363:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14507:48:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14517:32:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14542:5:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14535:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14535:13:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14528:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14528:21:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14517:7:7"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14489:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14499:7:7",
"type": ""
}
],
"src": "14465:90:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14606:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14616:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14631:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14638:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14627:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14627:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14616:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14588:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14598:7:7",
"type": ""
}
],
"src": "14561:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14738:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14748:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "14759:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14748:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14720:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14730:7:7",
"type": ""
}
],
"src": "14693:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14819:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14829:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14844:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14851:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14840:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14840:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14829:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14801:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14811:7:7",
"type": ""
}
],
"src": "14776:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14917:258:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14927:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14936:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "14931:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14996:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "15021:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "15026:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15017:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15017:11:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "15040:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "15045:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15036:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15036:11:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "15030:5:7"
},
"nodeType": "YulFunctionCall",
"src": "15030:18:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15010:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15010:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "15010:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14957:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14960:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14954:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14954:13:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "14968:19:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14970:15:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14979:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14982:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14975:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14975:10:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14970:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "14950:3:7",
"statements": []
},
"src": "14946:113:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15093:76:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "15143:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15148:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15139:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15139:16:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15157:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15132:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15132:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "15132:27:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "15074:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15077:6:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15071:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15071:13:7"
},
"nodeType": "YulIf",
"src": "15068:2:7"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "14899:3:7",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "14904:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "14909:6:7",
"type": ""
}
],
"src": "14868:307:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15232:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15242:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "15256:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15262:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "15252:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15252:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15242:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "15273:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "15303:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15309:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15299:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15299:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "15277:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15350:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15364:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15378:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15386:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15374:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15374:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15364:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "15330:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15323:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15323:26:7"
},
"nodeType": "YulIf",
"src": "15320:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15453:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "15467:16:7"
},
"nodeType": "YulFunctionCall",
"src": "15467:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "15467:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "15417:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15440:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15448:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "15437:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15437:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "15414:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15414:38:7"
},
"nodeType": "YulIf",
"src": "15411:2:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "15216:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15225:6:7",
"type": ""
}
],
"src": "15181:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15535:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15552:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15555:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15545:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15545:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "15545:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15649:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15652:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15642:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15642:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15642:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15673:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15676:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15666:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15666:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15666:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "15507:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15721:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15738:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15741:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15731:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15731:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "15731:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15835:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15838:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15828:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15828:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15828:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15859:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15862:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15852:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15852:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15852:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "15693:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15927:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15937:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15955:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15962:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15951:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15951:14:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15971:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "15967:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15967:7:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15947:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15947:28:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "15937:6:7"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15910:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "15920:6:7",
"type": ""
}
],
"src": "15879:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16093:116:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16115:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16123:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16111:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16111:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16127:34:7",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16104:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16104:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "16104:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16183:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16191:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16179:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16179:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16196:5:7",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16172:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16172:30:7"
},
"nodeType": "YulExpressionStatement",
"src": "16172:30:7"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16085:6:7",
"type": ""
}
],
"src": "15987:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16321:64:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16343:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16351:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16339:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16339:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16355:22:7",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16332:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16332:46:7"
},
"nodeType": "YulExpressionStatement",
"src": "16332:46:7"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16313:6:7",
"type": ""
}
],
"src": "16215:170:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16497:119:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16519:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16527:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16515:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16515:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16531:34:7",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16508:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16508:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "16508:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16587:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16595:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16583:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16583:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16600:8:7",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16576:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16576:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "16576:33:7"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16489:6:7",
"type": ""
}
],
"src": "16391:225:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16728:115:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16750:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16758:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16746:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16746:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16762:34:7",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16739:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16739:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "16739:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16818:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16826:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16814:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16814:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16831:4:7",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16807:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16807:29:7"
},
"nodeType": "YulExpressionStatement",
"src": "16807:29:7"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16720:6:7",
"type": ""
}
],
"src": "16622:221:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16955:119:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16977:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16985:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16973:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16973:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16989:34:7",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16966:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16966:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "16966:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17045:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17053:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17041:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17041:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17058:8:7",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17034:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17034:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "17034:33:7"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16947:6:7",
"type": ""
}
],
"src": "16849:225:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17186:60:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17208:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17216:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17204:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17204:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17220:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17197:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17197:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "17197:42:7"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17178:6:7",
"type": ""
}
],
"src": "17080:166:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17358:121:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17380:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17388:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17376:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17376:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17392:34:7",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17369:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17369:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "17369:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17448:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17456:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17444:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17444:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17461:10:7",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17437:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17437:35:7"
},
"nodeType": "YulExpressionStatement",
"src": "17437:35:7"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17350:6:7",
"type": ""
}
],
"src": "17252:227:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17591:76:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17613:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17621:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17609:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17609:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17625:34:7",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17602:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17602:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "17602:58:7"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17583:6:7",
"type": ""
}
],
"src": "17485:182:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17779:118:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17801:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17809:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17797:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17797:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17813:34:7",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17790:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17790:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "17790:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17869:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17877:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17865:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17865:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17882:7:7",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17858:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17858:32:7"
},
"nodeType": "YulExpressionStatement",
"src": "17858:32:7"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17771:6:7",
"type": ""
}
],
"src": "17673:224:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18009:117:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18031:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18039:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18027:3:7"
},
"nodeType": "YulFunctionCall",
"src": "18027:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18043:34:7",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18020:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18020:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "18020:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18099:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18107:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18095:3:7"
},
"nodeType": "YulFunctionCall",
"src": "18095:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18112:6:7",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18088:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18088:31:7"
},
"nodeType": "YulExpressionStatement",
"src": "18088:31:7"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18001:6:7",
"type": ""
}
],
"src": "17903:223:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18238:118:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18260:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18268:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18256:3:7"
},
"nodeType": "YulFunctionCall",
"src": "18256:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18272:34:7",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18249:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18249:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "18249:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18328:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18336:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18324:3:7"
},
"nodeType": "YulFunctionCall",
"src": "18324:15:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18341:7:7",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18317:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18317:32:7"
},
"nodeType": "YulExpressionStatement",
"src": "18317:32:7"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18230:6:7",
"type": ""
}
],
"src": "18132:224:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18468:75:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18490:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18498:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18486:3:7"
},
"nodeType": "YulFunctionCall",
"src": "18486:14:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18502:33:7",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18479:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18479:57:7"
},
"nodeType": "YulExpressionStatement",
"src": "18479:57:7"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18460:6:7",
"type": ""
}
],
"src": "18362:181:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18592:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18649:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18658:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18661:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18651:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18651:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "18651:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18615:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18640:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "18622:17:7"
},
"nodeType": "YulFunctionCall",
"src": "18622:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "18612:2:7"
},
"nodeType": "YulFunctionCall",
"src": "18612:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18605:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18605:43:7"
},
"nodeType": "YulIf",
"src": "18602:2:7"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18585:5:7",
"type": ""
}
],
"src": "18549:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18720:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18777:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18786:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18789:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18779:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18779:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "18779:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18743:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18768:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18750:17:7"
},
"nodeType": "YulFunctionCall",
"src": "18750:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "18740:2:7"
},
"nodeType": "YulFunctionCall",
"src": "18740:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18733:6:7"
},
"nodeType": "YulFunctionCall",
"src": "18733:43:7"
},
"nodeType": "YulIf",
"src": "18730:2:7"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18713:5:7",
"type": ""
}
],
"src": "18677:122:7"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(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_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_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_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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_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_bool(value) -> cleaned {\n cleaned := iszero(iszero(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 copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(memPtr, 32), \"llowance\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\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 function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806340c10f191461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b60405161013091906117c9565b60405180910390f35b610153600480360381019061014e919061153e565b610407565b60405161016091906117ae565b60405180910390f35b610171610425565b60405161017e919061196b565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61042f565b6040516101ae91906117ae565b60405180910390f35b6101bf610530565b6040516101cc9190611986565b60405180910390f35b6101ef60048036038101906101ea919061153e565b610539565b6040516101fc91906117ae565b60405180910390f35b61020d6105e5565b005b6102296004803603810190610224919061153e565b61066b565b005b6102336106f5565b60405161024091906117ae565b60405180910390f35b610263600480360381019061025e919061148a565b61070c565b604051610270919061196b565b60405180910390f35b610281610754565b005b61028b610891565b005b610295610917565b6040516102a29190611793565b60405180910390f35b6102b3610941565b6040516102c091906117c9565b60405180910390f35b6102e360048036038101906102de919061153e565b6109d3565b6040516102f091906117ae565b60405180910390f35b610313600480360381019061030e919061153e565b610ac7565b60405161032091906117ae565b60405180910390f35b610343600480360381019061033e91906114b3565b610ae5565b604051610350919061196b565b60405180910390f35b610373600480360381019061036e919061148a565b610b6c565b005b60606003805461038490611acf565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611acf565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610d1d565b8484610d25565b6001905092915050565b6000600254905090565b600061043c848484610ef0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe906118ab565b60405180910390fd5b61052485610513610d1d565b858461051f9190611a13565b610d25565b60019150509392505050565b60006012905090565b60006105db610546610d1d565b848460016000610554610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d691906119bd565b610d25565b6001905092915050565b6105ed610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661060b610917565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906118cb565b60405180910390fd5b61066961116f565b565b610673610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610691610917565b73ffffffffffffffffffffffffffffffffffffffff16146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de906118cb565b60405180910390fd5b6106f18282611211565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075c610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661077a610917565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c7906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610899610d1d565b73ffffffffffffffffffffffffffffffffffffffff166108b7610917565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906118cb565b60405180910390fd5b610915611365565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095090611acf565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90611acf565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b600080600160006109e2610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061192b565b60405180910390fd5b610abc610aaa610d1d565b858584610ab79190611a13565b610d25565b600191505092915050565b6000610adb610ad4610d1d565b8484610ef0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b74610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b92610917565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906118cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061182b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc9061184b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee3919061196b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906118eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906117eb565b60405180910390fd5b610fdb838383611408565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110589061186b565b60405180910390fd5b818161106d9190611a13565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd91906119bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611161919061196b565b60405180910390a350505050565b6111776106f5565b6111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad9061180b565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111fa610d1d565b6040516112079190611793565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061194b565b60405180910390fd5b61128d60008383611408565b806002600082825461129f91906119bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f491906119bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611359919061196b565b60405180910390a35050565b61136d6106f5565b156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a49061188b565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113f1610d1d565b6040516113fe9190611793565b60405180910390a1565b6114106106f5565b15611450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114479061188b565b60405180910390fd5b61145b838383610d18565b505050565b60008135905061146f81611e8c565b92915050565b60008135905061148481611ea3565b92915050565b60006020828403121561149c57600080fd5b60006114aa84828501611460565b91505092915050565b600080604083850312156114c657600080fd5b60006114d485828601611460565b92505060206114e585828601611460565b9150509250929050565b60008060006060848603121561150457600080fd5b600061151286828701611460565b935050602061152386828701611460565b925050604061153486828701611475565b9150509250925092565b6000806040838503121561155157600080fd5b600061155f85828601611460565b925050602061157085828601611475565b9150509250929050565b61158381611a47565b82525050565b61159281611a59565b82525050565b60006115a3826119a1565b6115ad81856119ac565b93506115bd818560208601611a9c565b6115c681611b5f565b840191505092915050565b60006115de6023836119ac565b91506115e982611b70565b604082019050919050565b60006116016014836119ac565b915061160c82611bbf565b602082019050919050565b60006116246026836119ac565b915061162f82611be8565b604082019050919050565b60006116476022836119ac565b915061165282611c37565b604082019050919050565b600061166a6026836119ac565b915061167582611c86565b604082019050919050565b600061168d6010836119ac565b915061169882611cd5565b602082019050919050565b60006116b06028836119ac565b91506116bb82611cfe565b604082019050919050565b60006116d36020836119ac565b91506116de82611d4d565b602082019050919050565b60006116f66025836119ac565b915061170182611d76565b604082019050919050565b60006117196024836119ac565b915061172482611dc5565b604082019050919050565b600061173c6025836119ac565b915061174782611e14565b604082019050919050565b600061175f601f836119ac565b915061176a82611e63565b602082019050919050565b61177e81611a85565b82525050565b61178d81611a8f565b82525050565b60006020820190506117a8600083018461157a565b92915050565b60006020820190506117c36000830184611589565b92915050565b600060208201905081810360008301526117e38184611598565b905092915050565b60006020820190508181036000830152611804816115d1565b9050919050565b60006020820190508181036000830152611824816115f4565b9050919050565b6000602082019050818103600083015261184481611617565b9050919050565b600060208201905081810360008301526118648161163a565b9050919050565b600060208201905081810360008301526118848161165d565b9050919050565b600060208201905081810360008301526118a481611680565b9050919050565b600060208201905081810360008301526118c4816116a3565b9050919050565b600060208201905081810360008301526118e4816116c6565b9050919050565b60006020820190508181036000830152611904816116e9565b9050919050565b600060208201905081810360008301526119248161170c565b9050919050565b600060208201905081810360008301526119448161172f565b9050919050565b6000602082019050818103600083015261196481611752565b9050919050565b60006020820190506119806000830184611775565b92915050565b600060208201905061199b6000830184611784565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119c882611a85565b91506119d383611a85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0857611a07611b01565b5b828201905092915050565b6000611a1e82611a85565b9150611a2983611a85565b925082821015611a3c57611a3b611b01565b5b828203905092915050565b6000611a5282611a65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611aba578082015181840152602081019050611a9f565b83811115611ac9576000848401525b50505050565b60006002820490506001821680611ae757607f821691505b60208210811415611afb57611afa611b30565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e9581611a47565b8114611ea057600080fd5b50565b611eac81611a85565b8114611eb757600080fd5b5056fea2646970667358221220adf7727859988210326853b201cf8189d7521db03bc366836aa202093356e5a864736f6c63430008010033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x116 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2F9 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x359 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x28D JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1B7 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1D5 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x22B JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x169 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x187 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x123 PUSH2 0x375 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x153 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x14E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x407 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH2 0x425 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17E SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AE SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BF PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CC SWAP2 SWAP1 PUSH2 0x1986 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EA SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20D PUSH2 0x5E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x66B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x233 PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x263 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0x70C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x281 PUSH2 0x754 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28B PUSH2 0x891 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x295 PUSH2 0x917 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B3 PUSH2 0x941 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C0 SWAP2 SWAP1 PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x9D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F0 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x313 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x30E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0xAC7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x320 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x343 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33E SWAP2 SWAP1 PUSH2 0x14B3 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x350 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x373 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0xB6C JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x384 SWAP1 PUSH2 0x1ACF 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 0x3B0 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3D2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3FD 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 0x3E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41B PUSH2 0x414 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43C DUP5 DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x487 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x507 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4FE SWAP1 PUSH2 0x18AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x524 DUP6 PUSH2 0x513 PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP5 PUSH2 0x51F SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH2 0xD25 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 0x5DB PUSH2 0x546 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x554 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x19BD JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5ED PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x60B PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x661 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x658 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x669 PUSH2 0x116F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x673 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x691 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6DE SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6F1 DUP3 DUP3 PUSH2 0x1211 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 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 0x75C PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x77A PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C7 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x899 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8B7 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x90D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x904 SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x915 PUSH2 0x1365 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x950 SWAP1 PUSH2 0x1ACF 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 0x97C SWAP1 PUSH2 0x1ACF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9C9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x99E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9C9 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 0x9AC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x9E2 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 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 DUP3 DUP2 LT ISZERO PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP1 PUSH2 0x192B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xABC PUSH2 0xAAA PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAB7 SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADB PUSH2 0xAD4 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 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 0xB74 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB92 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBE8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDF SWAP1 PUSH2 0x18CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC58 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4F SWAP1 PUSH2 0x182B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8C SWAP1 PUSH2 0x190B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDFC SWAP1 PUSH2 0x184B 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 0xEE3 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF57 SWAP1 PUSH2 0x18EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFDB DUP4 DUP4 DUP4 PUSH2 0x1408 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 0x1061 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1058 SWAP1 PUSH2 0x186B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x106D SWAP2 SWAP1 PUSH2 0x1A13 JUMP JUMPDEST 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 0x10FD SWAP2 SWAP1 PUSH2 0x19BD JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1161 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x1177 PUSH2 0x6F5 JUMP JUMPDEST PUSH2 0x11B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AD SWAP1 PUSH2 0x180B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x11FA PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1207 SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1281 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1278 SWAP1 PUSH2 0x194B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x128D PUSH1 0x0 DUP4 DUP4 PUSH2 0x1408 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x19BD 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 0x12F4 SWAP2 SWAP1 PUSH2 0x19BD 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 0x1359 SWAP2 SWAP1 PUSH2 0x196B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x136D PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x13AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13A4 SWAP1 PUSH2 0x188B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x13F1 PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13FE SWAP2 SWAP1 PUSH2 0x1793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x1410 PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x1450 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1447 SWAP1 PUSH2 0x188B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x145B DUP4 DUP4 DUP4 PUSH2 0xD18 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x146F DUP2 PUSH2 0x1E8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1484 DUP2 PUSH2 0x1EA3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x149C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14AA DUP5 DUP3 DUP6 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14D4 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x14E5 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 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 0x1504 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1512 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1523 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1534 DUP7 DUP3 DUP8 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1570 DUP6 DUP3 DUP7 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1583 DUP2 PUSH2 0x1A47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1592 DUP2 PUSH2 0x1A59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15A3 DUP3 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0x15AD DUP2 DUP6 PUSH2 0x19AC JUMP JUMPDEST SWAP4 POP PUSH2 0x15BD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1A9C JUMP JUMPDEST PUSH2 0x15C6 DUP2 PUSH2 0x1B5F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DE PUSH1 0x23 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x15E9 DUP3 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1601 PUSH1 0x14 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x160C DUP3 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1624 PUSH1 0x26 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x162F DUP3 PUSH2 0x1BE8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1647 PUSH1 0x22 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1652 DUP3 PUSH2 0x1C37 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x166A PUSH1 0x26 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1675 DUP3 PUSH2 0x1C86 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x168D PUSH1 0x10 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1698 DUP3 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16B0 PUSH1 0x28 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x16BB DUP3 PUSH2 0x1CFE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16D3 PUSH1 0x20 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x16DE DUP3 PUSH2 0x1D4D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F6 PUSH1 0x25 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1701 DUP3 PUSH2 0x1D76 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1719 PUSH1 0x24 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1724 DUP3 PUSH2 0x1DC5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x173C PUSH1 0x25 DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x1747 DUP3 PUSH2 0x1E14 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x175F PUSH1 0x1F DUP4 PUSH2 0x19AC JUMP JUMPDEST SWAP2 POP PUSH2 0x176A DUP3 PUSH2 0x1E63 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x177E DUP2 PUSH2 0x1A85 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x178D DUP2 PUSH2 0x1A8F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17A8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x157A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x17C3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1589 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17E3 DUP2 DUP5 PUSH2 0x1598 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 0x1804 DUP2 PUSH2 0x15D1 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 0x1824 DUP2 PUSH2 0x15F4 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 0x1844 DUP2 PUSH2 0x1617 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 0x1864 DUP2 PUSH2 0x163A 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 0x1884 DUP2 PUSH2 0x165D 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 0x18A4 DUP2 PUSH2 0x1680 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 0x18C4 DUP2 PUSH2 0x16A3 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 0x18E4 DUP2 PUSH2 0x16C6 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 0x1904 DUP2 PUSH2 0x16E9 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 0x1924 DUP2 PUSH2 0x170C 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 0x1944 DUP2 PUSH2 0x172F 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 0x1964 DUP2 PUSH2 0x1752 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1980 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1775 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1784 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 PUSH2 0x19C8 DUP3 PUSH2 0x1A85 JUMP JUMPDEST SWAP2 POP PUSH2 0x19D3 DUP4 PUSH2 0x1A85 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1A08 JUMPI PUSH2 0x1A07 PUSH2 0x1B01 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A1E DUP3 PUSH2 0x1A85 JUMP JUMPDEST SWAP2 POP PUSH2 0x1A29 DUP4 PUSH2 0x1A85 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1A3C JUMPI PUSH2 0x1A3B PUSH2 0x1B01 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A52 DUP3 PUSH2 0x1A65 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1ABA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1A9F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1AC9 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 0x1AE7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1AFB JUMPI PUSH2 0x1AFA PUSH2 0x1B30 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 PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 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 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 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 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 0x1E95 DUP2 PUSH2 0x1A47 JUMP JUMPDEST DUP2 EQ PUSH2 0x1EA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1EAC DUP2 PUSH2 0x1A85 JUMP JUMPDEST DUP2 EQ PUSH2 0x1EB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD 0xF7 PUSH19 0x7859988210326853B201CF8189D7521DB03BC3 PUSH7 0x836AA202093356 0xE5 0xA8 PUSH5 0x736F6C6343 STOP ADDMOD ADD STOP CALLER ",
"sourceMap": "241:580:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4174:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3165:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3014:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;458:63:6;;;:::i;:::-;;527:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1042:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3329:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1700:145:0;;;:::i;:::-;;393:59:6;;;:::i;:::-;;1068:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2288:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6315:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3657:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3887:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:240:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2077:98:2;2131:13;2163:5;2156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98;:::o;4174:166::-;4257:4;4273:39;4282:12;:10;:12::i;:::-;4296:7;4305:6;4273:8;:39::i;:::-;4329:4;4322:11;;4174:166;;;;:::o;3165:106::-;3226:7;3252:12;;3245:19;;3165:106;:::o;4807:414::-;4913:4;4929:36;4939:6;4947:9;4958:6;4929:9;:36::i;:::-;4976:24;5003:11;:19;5015:6;5003:19;;;;;;;;;;;;;;;:33;5023:12;:10;:12::i;:::-;5003:33;;;;;;;;;;;;;;;;4976:60;;5074:6;5054:16;:26;;5046:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5135:57;5144:6;5152:12;:10;:12::i;:::-;5185:6;5166:16;:25;;;;:::i;:::-;5135:8;:57::i;:::-;5210:4;5203:11;;;4807:414;;;;;:::o;3014:91::-;3072:5;3096:2;3089:9;;3014:91;:::o;5616:212::-;5704:4;5720:80;5729:12;:10;:12::i;:::-;5743:7;5789:10;5752:11;:25;5764:12;:10;:12::i;:::-;5752:25;;;;;;;;;;;;;;;:34;5778:7;5752:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5720:8;:80::i;:::-;5817:4;5810:11;;5616:212;;;;:::o;458:63:6:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;504:10:6::1;:8;:10::i;:::-;458:63::o:0;527:93::-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;596:17:6::1;602:2;606:6;596:5;:17::i;:::-;527:93:::0;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;3329:125:2:-;3403:7;3429:9;:18;3439:7;3429:18;;;;;;;;;;;;;;;;3422:25;;3329:125;;;:::o;1700:145:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1806:1:::1;1769:40;;1790:6;;;;;;;;;;;1769:40;;;;;;;;;;;;1836:1;1819:6;;:19;;;;;;;;;;;;;;;;;;1700:145::o:0;393:59:6:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;437:8:6::1;:6;:8::i;:::-;393:59::o:0;1068:85:0:-;1114:7;1140:6;;;;;;;;;;;1133:13;;1068:85;:::o;2288:102:2:-;2344:13;2376:7;2369:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:102;:::o;6315:371::-;6408:4;6424:24;6451:11;:25;6463:12;:10;:12::i;:::-;6451:25;;;;;;;;;;;;;;;:34;6477:7;6451:34;;;;;;;;;;;;;;;;6424:61;;6523:15;6503:16;:35;;6495:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6590:67;6599:12;:10;:12::i;:::-;6613:7;6641:15;6622:16;:34;;;;:::i;:::-;6590:8;:67::i;:::-;6675:4;6668:11;;;6315:371;;;;:::o;3657:172::-;3743:4;3759:42;3769:12;:10;:12::i;:::-;3783:9;3794:6;3759:9;:42::i;:::-;3818:4;3811:11;;3657:172;;;;:::o;3887:149::-;3976:7;4002:11;:18;4014:5;4002:18;;;;;;;;;;;;;;;:27;4021:7;4002:27;;;;;;;;;;;;;;;;3995:34;;3887:149;;;;:::o;1994:240:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2102:1:::1;2082:22;;:8;:22;;;;2074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2191:8;2162:38;;2183:6;;;;;;;;;;;2162:38;;;;;;;;;;;;2219:8;2210:6;;:17;;;;;;;;;;;;;;;;;;1994:240:::0;:::o;10506:92:2:-;;;;:::o;586:96:5:-;639:7;665:10;658:17;;586:96;:::o;9579:340:2:-;9697:1;9680:19;;:5;:19;;;;9672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9777:1;9758:21;;:7;:21;;;;9750:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9859:6;9829:11;:18;9841:5;9829:18;;;;;;;;;;;;;;;:27;9848:7;9829:27;;;;;;;;;;;;;;;:36;;;;9896:7;9880:32;;9889:5;9880:32;;;9905:6;9880:32;;;;;;:::i;:::-;;;;;;;;9579:340;;;:::o;7160:592::-;7283:1;7265:20;;:6;:20;;;;7257:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7366:1;7345:23;;:9;:23;;;;7337:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7419:47;7440:6;7448:9;7459:6;7419:20;:47::i;:::-;7477:21;7501:9;:17;7511:6;7501:17;;;;;;;;;;;;;;;;7477:41;;7553:6;7536:13;:23;;7528:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7648:6;7632:13;:22;;;;:::i;:::-;7612:9;:17;7622:6;7612:17;;;;;;;;;;;;;;;:42;;;;7688:6;7664:9;:20;7674:9;7664:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7727:9;7710:35;;7719:6;7710:35;;;7738:6;7710:35;;;;;;:::i;:::-;;;;;;;;7160:592;;;;:::o;2054:117:1:-;1621:8;:6;:8::i;:::-;1613:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2122:5:::1;2112:7;;:15;;;;;;;;;;;;;;;;;;2142:22;2151:12;:10;:12::i;:::-;2142:22;;;;;;:::i;:::-;;;;;;;;2054:117::o:0;8023:330:2:-;8125:1;8106:21;;:7;:21;;;;8098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8174:49;8203:1;8207:7;8216:6;8174:20;:49::i;:::-;8250:6;8234:12;;:22;;;;;;;:::i;:::-;;;;;;;;8288:6;8266:9;:18;8276:7;8266:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8330:7;8309:37;;8326:1;8309:37;;;8339:6;8309:37;;;;;;:::i;:::-;;;;;;;;8023:330;;:::o;1807:115:1:-;1356:8;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1876:4:::1;1866:7;;:14;;;;;;;;;;;;;;;;;;1895:20;1902:12;:10;:12::i;:::-;1895:20;;;;;;:::i;:::-;;;;;;;;1807:115::o:0;626:193:6:-;1356:8:1;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;768:44:6::1;795:4;801:2;805:6;768:26;:44::i;:::-;626:193:::0;;;:::o;7:139:7:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:366::-;;5697:67;5761:2;5756:3;5697:67;:::i;:::-;5690:74;;5773:93;5862:3;5773:93;:::i;:::-;5891:2;5886:3;5882:12;5875:19;;5680:220;;;:::o;5906:366::-;;6069:67;6133:2;6128:3;6069:67;:::i;:::-;6062:74;;6145:93;6234:3;6145:93;:::i;:::-;6263:2;6258:3;6254:12;6247:19;;6052:220;;;:::o;6278:366::-;;6441:67;6505:2;6500:3;6441:67;:::i;:::-;6434:74;;6517:93;6606:3;6517:93;:::i;:::-;6635:2;6630:3;6626:12;6619:19;;6424:220;;;:::o;6650:366::-;;6813:67;6877:2;6872:3;6813:67;:::i;:::-;6806:74;;6889:93;6978:3;6889:93;:::i;:::-;7007:2;7002:3;6998:12;6991:19;;6796:220;;;:::o;7022:118::-;7109:24;7127:5;7109:24;:::i;:::-;7104:3;7097:37;7087:53;;:::o;7146:112::-;7229:22;7245:5;7229:22;:::i;:::-;7224:3;7217:35;7207:51;;:::o;7264:222::-;;7395:2;7384:9;7380:18;7372:26;;7408:71;7476:1;7465:9;7461:17;7452:6;7408:71;:::i;:::-;7362:124;;;;:::o;7492:210::-;;7617:2;7606:9;7602:18;7594:26;;7630:65;7692:1;7681:9;7677:17;7668:6;7630:65;:::i;:::-;7584:118;;;;:::o;7708:313::-;;7859:2;7848:9;7844:18;7836:26;;7908:9;7902:4;7898:20;7894:1;7883:9;7879:17;7872:47;7936:78;8009:4;8000:6;7936:78;:::i;:::-;7928:86;;7826:195;;;;:::o;8027:419::-;;8231:2;8220:9;8216:18;8208:26;;8280:9;8274:4;8270:20;8266:1;8255:9;8251:17;8244:47;8308:131;8434:4;8308:131;:::i;:::-;8300:139;;8198:248;;;:::o;8452:419::-;;8656:2;8645:9;8641:18;8633:26;;8705:9;8699:4;8695:20;8691:1;8680:9;8676:17;8669:47;8733:131;8859:4;8733:131;:::i;:::-;8725:139;;8623:248;;;:::o;8877:419::-;;9081:2;9070:9;9066:18;9058:26;;9130:9;9124:4;9120:20;9116:1;9105:9;9101:17;9094:47;9158:131;9284:4;9158:131;:::i;:::-;9150:139;;9048:248;;;:::o;9302:419::-;;9506:2;9495:9;9491:18;9483:26;;9555:9;9549:4;9545:20;9541:1;9530:9;9526:17;9519:47;9583:131;9709:4;9583:131;:::i;:::-;9575:139;;9473:248;;;:::o;9727:419::-;;9931:2;9920:9;9916:18;9908:26;;9980:9;9974:4;9970:20;9966:1;9955:9;9951:17;9944:47;10008:131;10134:4;10008:131;:::i;:::-;10000:139;;9898:248;;;:::o;10152:419::-;;10356:2;10345:9;10341:18;10333:26;;10405:9;10399:4;10395:20;10391:1;10380:9;10376:17;10369:47;10433:131;10559:4;10433:131;:::i;:::-;10425:139;;10323:248;;;:::o;10577:419::-;;10781:2;10770:9;10766:18;10758:26;;10830:9;10824:4;10820:20;10816:1;10805:9;10801:17;10794:47;10858:131;10984:4;10858:131;:::i;:::-;10850:139;;10748:248;;;:::o;11002:419::-;;11206:2;11195:9;11191:18;11183:26;;11255:9;11249:4;11245:20;11241:1;11230:9;11226:17;11219:47;11283:131;11409:4;11283:131;:::i;:::-;11275:139;;11173:248;;;:::o;11427:419::-;;11631:2;11620:9;11616:18;11608:26;;11680:9;11674:4;11670:20;11666:1;11655:9;11651:17;11644:47;11708:131;11834:4;11708:131;:::i;:::-;11700:139;;11598:248;;;:::o;11852:419::-;;12056:2;12045:9;12041:18;12033:26;;12105:9;12099:4;12095:20;12091:1;12080:9;12076:17;12069:47;12133:131;12259:4;12133:131;:::i;:::-;12125:139;;12023:248;;;:::o;12277:419::-;;12481:2;12470:9;12466:18;12458:26;;12530:9;12524:4;12520:20;12516:1;12505:9;12501:17;12494:47;12558:131;12684:4;12558:131;:::i;:::-;12550:139;;12448:248;;;:::o;12702:419::-;;12906:2;12895:9;12891:18;12883:26;;12955:9;12949:4;12945:20;12941:1;12930:9;12926:17;12919:47;12983:131;13109:4;12983:131;:::i;:::-;12975:139;;12873:248;;;:::o;13127:222::-;;13258:2;13247:9;13243:18;13235:26;;13271:71;13339:1;13328:9;13324:17;13315:6;13271:71;:::i;:::-;13225:124;;;;:::o;13355:214::-;;13482:2;13471:9;13467:18;13459:26;;13495:67;13559:1;13548:9;13544:17;13535:6;13495:67;:::i;:::-;13449:120;;;;:::o;13575:99::-;;13661:5;13655:12;13645:22;;13634:40;;;:::o;13680:169::-;;13798:6;13793:3;13786:19;13838:4;13833:3;13829:14;13814:29;;13776:73;;;;:::o;13855:305::-;;13914:20;13932:1;13914:20;:::i;:::-;13909:25;;13948:20;13966:1;13948:20;:::i;:::-;13943:25;;14102:1;14034:66;14030:74;14027:1;14024:81;14021:2;;;14108:18;;:::i;:::-;14021:2;14152:1;14149;14145:9;14138:16;;13899:261;;;;:::o;14166:191::-;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14260:20;14278:1;14260:20;:::i;:::-;14255:25;;14299:1;14296;14293:8;14290:2;;;14304:18;;:::i;:::-;14290:2;14349:1;14346;14342:9;14334:17;;14211:146;;;;:::o;14363:96::-;;14429:24;14447:5;14429:24;:::i;:::-;14418:35;;14408:51;;;:::o;14465:90::-;;14542:5;14535:13;14528:21;14517:32;;14507:48;;;:::o;14561:126::-;;14638:42;14631:5;14627:54;14616:65;;14606:81;;;:::o;14693:77::-;;14759:5;14748:16;;14738:32;;;:::o;14776:86::-;;14851:4;14844:5;14840:16;14829:27;;14819:43;;;:::o;14868:307::-;14936:1;14946:113;14960:6;14957:1;14954:13;14946:113;;;15045:1;15040:3;15036:11;15030:18;15026:1;15021:3;15017:11;15010:39;14982:2;14979:1;14975:10;14970:15;;14946:113;;;15077:6;15074:1;15071:13;15068:2;;;15157:1;15148:6;15143:3;15139:16;15132:27;15068:2;14917:258;;;;:::o;15181:320::-;;15262:1;15256:4;15252:12;15242:22;;15309:1;15303:4;15299:12;15330:18;15320:2;;15386:4;15378:6;15374:17;15364:27;;15320:2;15448;15440:6;15437:14;15417:18;15414:38;15411:2;;;15467:18;;:::i;:::-;15411:2;15232:269;;;;:::o;15507:180::-;15555:77;15552:1;15545:88;15652:4;15649:1;15642:15;15676:4;15673:1;15666:15;15693:180;15741:77;15738:1;15731:88;15838:4;15835:1;15828:15;15862:4;15859:1;15852:15;15879:102;;15971:2;15967:7;15962:2;15955:5;15951:14;15947:28;15937:38;;15927:54;;;:::o;15987:222::-;16127:34;16123:1;16115:6;16111:14;16104:58;16196:5;16191:2;16183:6;16179:15;16172:30;16093:116;:::o;16215:170::-;16355:22;16351:1;16343:6;16339:14;16332:46;16321:64;:::o;16391:225::-;16531:34;16527:1;16519:6;16515:14;16508:58;16600:8;16595:2;16587:6;16583:15;16576:33;16497:119;:::o;16622:221::-;16762:34;16758:1;16750:6;16746:14;16739:58;16831:4;16826:2;16818:6;16814:15;16807:29;16728:115;:::o;16849:225::-;16989:34;16985:1;16977:6;16973:14;16966:58;17058:8;17053:2;17045:6;17041:15;17034:33;16955:119;:::o;17080:166::-;17220:18;17216:1;17208:6;17204:14;17197:42;17186:60;:::o;17252:227::-;17392:34;17388:1;17380:6;17376:14;17369:58;17461:10;17456:2;17448:6;17444:15;17437:35;17358:121;:::o;17485:182::-;17625:34;17621:1;17613:6;17609:14;17602:58;17591:76;:::o;17673:224::-;17813:34;17809:1;17801:6;17797:14;17790:58;17882:7;17877:2;17869:6;17865:15;17858:32;17779:118;:::o;17903:223::-;18043:34;18039:1;18031:6;18027:14;18020:58;18112:6;18107:2;18099:6;18095:15;18088:31;18009:117;:::o;18132:224::-;18272:34;18268:1;18260:6;18256:14;18249:58;18341:7;18336:2;18328:6;18324:15;18317:32;18238:118;:::o;18362:181::-;18502:33;18498:1;18490:6;18486:14;18479:57;18468:75;:::o;18549:122::-;18622:24;18640:5;18622:24;:::i;:::-;18615:5;18612:35;18602:2;;18661:1;18658;18651:12;18602:2;18592:79;:::o;18677:122::-;18750:24;18768:5;18750:24;:::i;:::-;18743:5;18740:35;18730:2;;18789:1;18786;18779:12;18730:2;18720:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1584000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1564",
"decimals()": "366",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "1361",
"pause()": "infinite",
"paused()": "1290",
"renounceOwnership()": "24527",
"symbol()": "infinite",
"totalSupply()": "1205",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "24941",
"unpause()": "infinite"
},
"internal": {
"_beforeTokenTransfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetFixedSupply.sol";
contract VoltaToken is ERC20PresetFixedSupply {
constructor() ERC20PresetFixedSupply("Volta", "VOLTA", 1000000 * 10 ** 18, msg.sender) {
}
}
View raw

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

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5902:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:168:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:7"
},
"nodeType": "YulFunctionCall",
"src": "170:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "258:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "263:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "254:3:7"
},
"nodeType": "YulFunctionCall",
"src": "254:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "267:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:7"
},
"nodeType": "YulFunctionCall",
"src": "247:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "247:39:7"
},
{
"nodeType": "YulAssignment",
"src": "296:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "307:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "312:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "303:3:7"
},
"nodeType": "YulFunctionCall",
"src": "303:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "296:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:7",
"type": ""
}
],
"src": "7:314:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "473:183:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "483:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "549:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "554:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "490:58:7"
},
"nodeType": "YulFunctionCall",
"src": "490:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "483:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "578:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "583:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "574:3:7"
},
"nodeType": "YulFunctionCall",
"src": "574:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "587:33:7",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "567:6:7"
},
"nodeType": "YulFunctionCall",
"src": "567:54:7"
},
"nodeType": "YulExpressionStatement",
"src": "567:54:7"
},
{
"nodeType": "YulAssignment",
"src": "631:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "642:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "647:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "638:3:7"
},
"nodeType": "YulFunctionCall",
"src": "638:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "631:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "461:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "469:3:7",
"type": ""
}
],
"src": "327:329:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "727:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "744:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "767:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "749:17:7"
},
"nodeType": "YulFunctionCall",
"src": "749:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "737:6:7"
},
"nodeType": "YulFunctionCall",
"src": "737:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "737:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "715:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "722:3:7",
"type": ""
}
],
"src": "662:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "957:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "967:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "979:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "990:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "975:3:7"
},
"nodeType": "YulFunctionCall",
"src": "975:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "967:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1014:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1025:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1010:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1010:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1033:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1039:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1029:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1029:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1003:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1003:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1003:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1059:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1193:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1067:124:7"
},
"nodeType": "YulFunctionCall",
"src": "1067:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1059:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "937:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "952:4:7",
"type": ""
}
],
"src": "786:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1382:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1392:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1404:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1400:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1400:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1392:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1439:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1450:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1435:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1435:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1458:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1464:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1454:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1454:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1428:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1428:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1428:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1484:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1618:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1492:124:7"
},
"nodeType": "YulFunctionCall",
"src": "1492:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1484:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1362:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1377:4:7",
"type": ""
}
],
"src": "1211:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1734:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1744:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1756:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1752:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1752:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1744:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1824:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1837:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1848:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1833:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1833:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1780:43:7"
},
"nodeType": "YulFunctionCall",
"src": "1780:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "1780:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1706:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1718:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1729:4:7",
"type": ""
}
],
"src": "1636:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1977:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1982:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1970:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1970:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "1970:19:7"
},
{
"nodeType": "YulAssignment",
"src": "1998:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2017:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2013:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2013:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1998:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1932:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1937:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1948:11:7",
"type": ""
}
],
"src": "1864:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2083:261:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2093:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2116:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2098:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2098:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2093:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2127:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2150:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2132:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2132:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2127:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2290:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2292:16:7"
},
"nodeType": "YulFunctionCall",
"src": "2292:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "2292:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2211:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2218:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2286:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2214:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2214:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2208:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2208:81:7"
},
"nodeType": "YulIf",
"src": "2205:2:7"
},
{
"nodeType": "YulAssignment",
"src": "2322:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2333:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2336:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2329:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2329:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2322:3:7"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2070:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2073:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2079:3:7",
"type": ""
}
],
"src": "2039:305:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2423:775:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2433:15:7",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "2442:6:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2433:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2457:14:7",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "2466:5:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2457:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2515:677:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2603:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2605:16:7"
},
"nodeType": "YulFunctionCall",
"src": "2605:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "2605:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2581:4:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2591:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2596:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2587:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2587:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2578:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2578:24:7"
},
"nodeType": "YulIf",
"src": "2575:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2670:419:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3050:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3063:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3070:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3059:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3059:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3050:5:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2645:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2655:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2641:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2641:16:7"
},
"nodeType": "YulIf",
"src": "2638:2:7"
},
{
"nodeType": "YulAssignment",
"src": "3102:23:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3114:4:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3120:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3110:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3110:15:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3102:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3138:44:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3173:8:7"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "3150:22:7"
},
"nodeType": "YulFunctionCall",
"src": "3150:32:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3138:8:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2491:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2501:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2488:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2488:15:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2504:2:7",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "2484:3:7",
"statements": []
},
"src": "2480:712:7"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "2378:6:7",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "2386:5:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2393:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2403:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2411:5:7",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2418:4:7",
"type": ""
}
],
"src": "2350:848:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3268:217:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3278:31:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3304:4:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3286:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3286:23:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3278:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3318:37:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3346:8:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3330:15:7"
},
"nodeType": "YulFunctionCall",
"src": "3330:25:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3318:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3365:113:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3395:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3401:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3411:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3374:20:7"
},
"nodeType": "YulFunctionCall",
"src": "3374:104:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3365:5:7"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3243:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3249:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3262:5:7",
"type": ""
}
],
"src": "3204:281:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3551:1013:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3746:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3748:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3757:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3748:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "3759:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3736:8:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3729:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3729:16:7"
},
"nodeType": "YulIf",
"src": "3726:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3791:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3793:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3802:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3793:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "3804:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3785:4:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3778:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3778:12:7"
},
"nodeType": "YulIf",
"src": "3775:2:7"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3921:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3923:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3932:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3923:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "3934:5:7"
}
]
},
"nodeType": "YulCase",
"src": "3914:27:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3919:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3965:176:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4000:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4002:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4002:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4002:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3985:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3995:3:7",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3982:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3982:17:7"
},
"nodeType": "YulIf",
"src": "3979:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4035:25:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4048:1:7",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4051:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4044:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4044:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4035:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4091:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4093:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4093:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4093:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4079:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4086:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4076:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4076:14:7"
},
"nodeType": "YulIf",
"src": "4073:2:7"
},
{
"nodeType": "YulLeave",
"src": "4126:5:7"
}
]
},
"nodeType": "YulCase",
"src": "3950:191:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3955:1:7",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3871:4:7"
},
"nodeType": "YulSwitch",
"src": "3864:277:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4273:123:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4287:28:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4300:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4306:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4296:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4296:19:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4287:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4346:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4348:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4348:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4348:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4334:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4341:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4331:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4331:14:7"
},
"nodeType": "YulIf",
"src": "4328:2:7"
},
{
"nodeType": "YulLeave",
"src": "4381:5:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4176:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4182:2:7",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4173:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4173:12:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4190:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4200:2:7",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4187:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4187:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4169:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4169:35:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4225:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4231:3:7",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4222:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4222:13:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4240:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4250:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4237:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4237:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4218:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4218:36:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4153:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4153:111:7"
},
"nodeType": "YulIf",
"src": "4150:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4406:57:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4440:1:7",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4443:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4449:8:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4459:3:7"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "4421:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4421:42:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4406:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4413:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4502:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4504:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4504:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4504:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4479:5:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4490:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4495:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4486:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4486:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4476:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4476:25:7"
},
"nodeType": "YulIf",
"src": "4473:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4533:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4546:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4553:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4542:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4542:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4533:5:7"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3521:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3527:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "3537:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3545:5:7",
"type": ""
}
],
"src": "3491:1073:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4618:300:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4628:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4651:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4633:17:7"
},
"nodeType": "YulFunctionCall",
"src": "4633:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4628:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4662:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4685:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4667:17:7"
},
"nodeType": "YulFunctionCall",
"src": "4667:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4662:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4860:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4862:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4862:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4862:18:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4772:1:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4765:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4765:9:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4758:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4758:17:7"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4780:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4787:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4855:1:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4783:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4783:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4777:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4777:81:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4754:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4754:105:7"
},
"nodeType": "YulIf",
"src": "4751:2:7"
},
{
"nodeType": "YulAssignment",
"src": "4892:20:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4907:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4910:1:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4903:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4903:9:7"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4892:7:7"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4601:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4604:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4610:7:7",
"type": ""
}
],
"src": "4570:348:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4969:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4979:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4990:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4979:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4951:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4961:7:7",
"type": ""
}
],
"src": "4924:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5050:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5060:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5075:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5082:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5071:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5071:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5060:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5032:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5042:7:7",
"type": ""
}
],
"src": "5007:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5150:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5160:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5174:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5180:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5170:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5170:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5160:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5191:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5221:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5227:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5217:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5217:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5195:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5268:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5282:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5296:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5304:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5292:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5292:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5282:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5248:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5241:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5241:26:7"
},
"nodeType": "YulIf",
"src": "5238:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5371:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5385:16:7"
},
"nodeType": "YulFunctionCall",
"src": "5385:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "5385:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5335:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5358:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5366:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5355:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5355:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5332:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5332:38:7"
},
"nodeType": "YulIf",
"src": "5329:2:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5134:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5143:6:7",
"type": ""
}
],
"src": "5099:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5453:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5470:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5473:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5463:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5463:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "5463:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5567:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5570:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5560:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5560:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5560:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5591:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5594:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5584:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5584:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5584:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5425:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5639:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5659:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5649:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5649:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "5649:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5753:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5756:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5746:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5746:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5746:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5777:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5780:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5770:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5770:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5770:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5611:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5848:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5858:34:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5883:1:7",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5886:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5879:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5879:13:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5858:8:7"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5829:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5839:8:7",
"type": ""
}
],
"src": "5797:102:7"
}
]
},
"contents": "{\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\n mstore(add(pos, 0), \"Pausable: paused\")\n\n end := add(pos, 32)\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\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\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_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_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 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 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 shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f426961667261436f696e000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4249414652410000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003c7565b508060049080519060200190620000af929190620003c7565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df620001c560201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001bf3362000193620001cd60201b60201c565b600a620001a1919062000636565b64e8d4a51000620001b3919062000773565b620001d660201b60201c565b6200088c565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000240906200052e565b60405180910390fd5b6200025d600083836200033b60201b60201c565b80600260008282546200027191906200057e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c891906200057e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f919062000550565b60405180910390a35050565b6200034b620003ab60201b60201c565b156200038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000385906200050c565b60405180910390fd5b620003a6838383620003c260201b62000d181760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620003d590620007eb565b90600052602060002090601f016020900481019282620003f9576000855562000445565b82601f106200041457805160ff191683800117855562000445565b8280016001018555821562000445579182015b828111156200044457825182559160200191906001019062000427565b5b50905062000454919062000458565b5090565b5b808211156200047357600081600090555060010162000459565b5090565b6000620004866010836200056d565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000620004c8601f836200056d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200050681620007d4565b82525050565b60006020820190508181036000830152620005278162000477565b9050919050565b600060208201905081810360008301526200054981620004b9565b9050919050565b6000602082019050620005676000830184620004fb565b92915050565b600082825260208201905092915050565b60006200058b82620007d4565b91506200059883620007d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005d057620005cf62000821565b5b828201905092915050565b6000808291508390505b60018511156200062d5780860481111562000605576200060462000821565b5b6001851615620006155780820291505b808102905062000625856200087f565b9450620005e5565b94509492505050565b60006200064382620007d4565b91506200065083620007de565b92506200067f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000687565b905092915050565b6000826200069957600190506200076c565b81620006a957600090506200076c565b8160018114620006c25760028114620006cd5762000703565b60019150506200076c565b60ff841115620006e257620006e162000821565b5b8360020a915084821115620006fc57620006fb62000821565b5b506200076c565b5060208310610133831016604e8410600b84101617156200073d5782820a90508381111562000737576200073662000821565b5b6200076c565b6200074c8484846001620005db565b9250905081840481111562000766576200076562000821565b5b81810290505b9392505050565b60006200078082620007d4565b91506200078d83620007d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007c957620007c862000821565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200080457607f821691505b602082108114156200081b576200081a62000850565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611e60806200089c6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806340c10f191461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611a55565b60405180910390f35b610153600480360381019061014e919061153e565b610407565b6040516101609190611a3a565b60405180910390f35b610171610425565b60405161017e9190611bf7565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61042f565b6040516101ae9190611a3a565b60405180910390f35b6101bf610530565b6040516101cc9190611c12565b60405180910390f35b6101ef60048036038101906101ea919061153e565b610539565b6040516101fc9190611a3a565b60405180910390f35b61020d6105e5565b005b6102296004803603810190610224919061153e565b61066b565b005b6102336106f5565b6040516102409190611a3a565b60405180910390f35b610263600480360381019061025e919061148a565b61070c565b6040516102709190611bf7565b60405180910390f35b610281610754565b005b61028b610891565b005b610295610917565b6040516102a29190611a1f565b60405180910390f35b6102b3610941565b6040516102c09190611a55565b60405180910390f35b6102e360048036038101906102de919061153e565b6109d3565b6040516102f09190611a3a565b60405180910390f35b610313600480360381019061030e919061153e565b610ac7565b6040516103209190611a3a565b60405180910390f35b610343600480360381019061033e91906114b3565b610ae5565b6040516103509190611bf7565b60405180910390f35b610373600480360381019061036e919061148a565b610b6c565b005b60606003805461038490611d5b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611d5b565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610d1d565b8484610d25565b6001905092915050565b6000600254905090565b600061043c848484610ef0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611b37565b60405180910390fd5b61052485610513610d1d565b858461051f9190611c9f565b610d25565b60019150509392505050565b60006012905090565b60006105db610546610d1d565b848460016000610554610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611c49565b610d25565b6001905092915050565b6105ed610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661060b610917565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611b57565b60405180910390fd5b61066961116f565b565b610673610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610691610917565b73ffffffffffffffffffffffffffffffffffffffff16146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de90611b57565b60405180910390fd5b6106f18282611211565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075c610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661077a610917565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c790611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610899610d1d565b73ffffffffffffffffffffffffffffffffffffffff166108b7610917565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611b57565b60405180910390fd5b610915611365565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095090611d5b565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90611d5b565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b600080600160006109e2610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611bb7565b60405180910390fd5b610abc610aaa610d1d565b858584610ab79190611c9f565b610d25565b600191505092915050565b6000610adb610ad4610d1d565b8484610ef0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b74610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b92610917565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90611ab7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611b97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90611ad7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee39190611bf7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790611b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790611a77565b60405180910390fd5b610fdb838383611408565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890611af7565b60405180910390fd5b818161106d9190611c9f565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd9190611c49565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111619190611bf7565b60405180910390a350505050565b6111776106f5565b6111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90611a97565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111fa610d1d565b6040516112079190611a1f565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890611bd7565b60405180910390fd5b61128d60008383611408565b806002600082825461129f9190611c49565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f49190611c49565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113599190611bf7565b60405180910390a35050565b61136d6106f5565b156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490611b17565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113f1610d1d565b6040516113fe9190611a1f565b60405180910390a1565b6114106106f5565b15611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790611b17565b60405180910390fd5b61145b838383610d18565b505050565b60008135905061146f81611dfc565b92915050565b60008135905061148481611e13565b92915050565b60006020828403121561149c57600080fd5b60006114aa84828501611460565b91505092915050565b600080604083850312156114c657600080fd5b60006114d485828601611460565b92505060206114e585828601611460565b9150509250929050565b60008060006060848603121561150457600080fd5b600061151286828701611460565b935050602061152386828701611460565b925050604061153486828701611475565b9150509250925092565b6000806040838503121561155157600080fd5b600061155f85828601611460565b925050602061157085828601611475565b9150509250929050565b61158381611cd3565b82525050565b61159281611ce5565b82525050565b60006115a382611c2d565b6115ad8185611c38565b93506115bd818560208601611d28565b6115c681611deb565b840191505092915050565b60006115de602383611c38565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611644601483611c38565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000611684602683611c38565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116ea602283611c38565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611750602683611c38565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117b6601083611c38565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006117f6602883611c38565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185c602083611c38565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061189c602583611c38565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611902602483611c38565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611968602583611c38565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ce601f83611c38565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611a0a81611d11565b82525050565b611a1981611d1b565b82525050565b6000602082019050611a34600083018461157a565b92915050565b6000602082019050611a4f6000830184611589565b92915050565b60006020820190508181036000830152611a6f8184611598565b905092915050565b60006020820190508181036000830152611a90816115d1565b9050919050565b60006020820190508181036000830152611ab081611637565b9050919050565b60006020820190508181036000830152611ad081611677565b9050919050565b60006020820190508181036000830152611af0816116dd565b9050919050565b60006020820190508181036000830152611b1081611743565b9050919050565b60006020820190508181036000830152611b30816117a9565b9050919050565b60006020820190508181036000830152611b50816117e9565b9050919050565b60006020820190508181036000830152611b708161184f565b9050919050565b60006020820190508181036000830152611b908161188f565b9050919050565b60006020820190508181036000830152611bb0816118f5565b9050919050565b60006020820190508181036000830152611bd08161195b565b9050919050565b60006020820190508181036000830152611bf0816119c1565b9050919050565b6000602082019050611c0c6000830184611a01565b92915050565b6000602082019050611c276000830184611a10565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5482611d11565b9150611c5f83611d11565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9457611c93611d8d565b5b828201905092915050565b6000611caa82611d11565b9150611cb583611d11565b925082821015611cc857611cc7611d8d565b5b828203905092915050565b6000611cde82611cf1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d46578082015181840152602081019050611d2b565b83811115611d55576000848401525b50505050565b60006002820490506001821680611d7357607f821691505b60208210811415611d8757611d86611dbc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611e0581611cd3565b8114611e1057600080fd5b50565b611e1c81611d11565b8114611e2757600080fd5b5056fea26469706673582212205bb56d5e33bda6a531d725ea269bec98623300cf9ef012070ed944615488a26a64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xA DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x426961667261436F696E00000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4249414652410000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP POP POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH3 0xDF PUSH3 0x1C5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH3 0x1BF CALLER PUSH3 0x193 PUSH3 0x1CD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x1A1 SWAP2 SWAP1 PUSH3 0x636 JUMP JUMPDEST PUSH5 0xE8D4A51000 PUSH3 0x1B3 SWAP2 SWAP1 PUSH3 0x773 JUMP JUMPDEST PUSH3 0x1D6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x88C JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x249 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x240 SWAP1 PUSH3 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x25D PUSH1 0x0 DUP4 DUP4 PUSH3 0x33B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x271 SWAP2 SWAP1 PUSH3 0x57E 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 0x2C8 SWAP2 SWAP1 PUSH3 0x57E 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 0x32F SWAP2 SWAP1 PUSH3 0x550 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x34B PUSH3 0x3AB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x38E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x385 SWAP1 PUSH3 0x50C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x3A6 DUP4 DUP4 DUP4 PUSH3 0x3C2 PUSH1 0x20 SHL PUSH3 0xD18 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x3D5 SWAP1 PUSH3 0x7EB JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3F9 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x414 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x445 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x444 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x427 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x454 SWAP2 SWAP1 PUSH3 0x458 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x473 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x459 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x486 PUSH1 0x10 DUP4 PUSH3 0x56D JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4C8 PUSH1 0x1F DUP4 PUSH3 0x56D JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x506 DUP2 PUSH3 0x7D4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x527 DUP2 PUSH3 0x477 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 0x549 DUP2 PUSH3 0x4B9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x567 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4FB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x58B DUP3 PUSH3 0x7D4 JUMP JUMPDEST SWAP2 POP PUSH3 0x598 DUP4 PUSH3 0x7D4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x5D0 JUMPI PUSH3 0x5CF PUSH3 0x821 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 0x62D JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x605 JUMPI PUSH3 0x604 PUSH3 0x821 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x615 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x625 DUP6 PUSH3 0x87F JUMP JUMPDEST SWAP5 POP PUSH3 0x5E5 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x643 DUP3 PUSH3 0x7D4 JUMP JUMPDEST SWAP2 POP PUSH3 0x650 DUP4 PUSH3 0x7DE JUMP JUMPDEST SWAP3 POP PUSH3 0x67F PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x687 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x699 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x76C JUMP JUMPDEST DUP2 PUSH3 0x6A9 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x76C JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x6C2 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x6CD JUMPI PUSH3 0x703 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x76C JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6E2 JUMPI PUSH3 0x6E1 PUSH3 0x821 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6FC JUMPI PUSH3 0x6FB PUSH3 0x821 JUMP JUMPDEST JUMPDEST POP PUSH3 0x76C JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x73D JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x737 JUMPI PUSH3 0x736 PUSH3 0x821 JUMP JUMPDEST JUMPDEST PUSH3 0x76C JUMP JUMPDEST PUSH3 0x74C DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5DB JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x766 JUMPI PUSH3 0x765 PUSH3 0x821 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x780 DUP3 PUSH3 0x7D4 JUMP JUMPDEST SWAP2 POP PUSH3 0x78D DUP4 PUSH3 0x7D4 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x7C9 JUMPI PUSH3 0x7C8 PUSH3 0x821 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP 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 0x804 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x81B JUMPI PUSH3 0x81A PUSH3 0x850 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 PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E60 DUP1 PUSH3 0x89C PUSH1 0x0 CODECOPY 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 0x116 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2F9 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x359 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x28D JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1B7 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1D5 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x22B JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x169 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x187 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x123 PUSH2 0x375 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0x1A55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x153 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x14E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x407 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x160 SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH2 0x425 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17E SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AE SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BF PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CC SWAP2 SWAP1 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1EF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EA SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FC SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20D PUSH2 0x5E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x66B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x233 PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x263 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0x70C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x281 PUSH2 0x754 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28B PUSH2 0x891 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x295 PUSH2 0x917 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0x1A1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B3 PUSH2 0x941 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C0 SWAP2 SWAP1 PUSH2 0x1A55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0x9D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F0 SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x313 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x30E SWAP2 SWAP1 PUSH2 0x153E JUMP JUMPDEST PUSH2 0xAC7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x320 SWAP2 SWAP1 PUSH2 0x1A3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x343 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33E SWAP2 SWAP1 PUSH2 0x14B3 JUMP JUMPDEST PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x350 SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x373 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36E SWAP2 SWAP1 PUSH2 0x148A JUMP JUMPDEST PUSH2 0xB6C JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x384 SWAP1 PUSH2 0x1D5B 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 0x3B0 SWAP1 PUSH2 0x1D5B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3FD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3D2 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3FD 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 0x3E0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41B PUSH2 0x414 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43C DUP5 DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x487 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x507 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4FE SWAP1 PUSH2 0x1B37 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x524 DUP6 PUSH2 0x513 PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP5 PUSH2 0x51F SWAP2 SWAP1 PUSH2 0x1C9F JUMP JUMPDEST PUSH2 0xD25 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 0x5DB PUSH2 0x546 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x554 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x1C49 JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5ED PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x60B PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x661 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x658 SWAP1 PUSH2 0x1B57 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x669 PUSH2 0x116F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x673 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x691 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6DE SWAP1 PUSH2 0x1B57 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6F1 DUP3 DUP3 PUSH2 0x1211 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 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 0x75C PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x77A PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7D0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C7 SWAP1 PUSH2 0x1B57 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x899 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8B7 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x90D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x904 SWAP1 PUSH2 0x1B57 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x915 PUSH2 0x1365 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x950 SWAP1 PUSH2 0x1D5B 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 0x97C SWAP1 PUSH2 0x1D5B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9C9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x99E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9C9 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 0x9AC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x9E2 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 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 DUP3 DUP2 LT ISZERO PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP1 PUSH2 0x1BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xABC PUSH2 0xAAA PUSH2 0xD1D JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAB7 SWAP2 SWAP1 PUSH2 0x1C9F JUMP JUMPDEST PUSH2 0xD25 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADB PUSH2 0xAD4 PUSH2 0xD1D JUMP JUMPDEST DUP5 DUP5 PUSH2 0xEF0 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 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 0xB74 PUSH2 0xD1D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB92 PUSH2 0x917 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBE8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDF SWAP1 PUSH2 0x1B57 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC58 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4F SWAP1 PUSH2 0x1AB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8C SWAP1 PUSH2 0x1B97 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDFC SWAP1 PUSH2 0x1AD7 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 0xEE3 SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF57 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x1A77 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFDB DUP4 DUP4 DUP4 PUSH2 0x1408 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 0x1061 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1058 SWAP1 PUSH2 0x1AF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x106D SWAP2 SWAP1 PUSH2 0x1C9F JUMP JUMPDEST 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 0x10FD SWAP2 SWAP1 PUSH2 0x1C49 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1161 SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x1177 PUSH2 0x6F5 JUMP JUMPDEST PUSH2 0x11B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AD SWAP1 PUSH2 0x1A97 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x11FA PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1207 SWAP2 SWAP1 PUSH2 0x1A1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1281 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1278 SWAP1 PUSH2 0x1BD7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x128D PUSH1 0x0 DUP4 DUP4 PUSH2 0x1408 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x1C49 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 0x12F4 SWAP2 SWAP1 PUSH2 0x1C49 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 0x1359 SWAP2 SWAP1 PUSH2 0x1BF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x136D PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x13AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13A4 SWAP1 PUSH2 0x1B17 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x13F1 PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13FE SWAP2 SWAP1 PUSH2 0x1A1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x1410 PUSH2 0x6F5 JUMP JUMPDEST ISZERO PUSH2 0x1450 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1447 SWAP1 PUSH2 0x1B17 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x145B DUP4 DUP4 DUP4 PUSH2 0xD18 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x146F DUP2 PUSH2 0x1DFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1484 DUP2 PUSH2 0x1E13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x149C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14AA DUP5 DUP3 DUP6 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x14D4 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x14E5 DUP6 DUP3 DUP7 ADD PUSH2 0x1460 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 0x1504 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1512 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1523 DUP7 DUP3 DUP8 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1534 DUP7 DUP3 DUP8 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP6 DUP3 DUP7 ADD PUSH2 0x1460 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1570 DUP6 DUP3 DUP7 ADD PUSH2 0x1475 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1583 DUP2 PUSH2 0x1CD3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1592 DUP2 PUSH2 0x1CE5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15A3 DUP3 PUSH2 0x1C2D JUMP JUMPDEST PUSH2 0x15AD DUP2 DUP6 PUSH2 0x1C38 JUMP JUMPDEST SWAP4 POP PUSH2 0x15BD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1D28 JUMP JUMPDEST PUSH2 0x15C6 DUP2 PUSH2 0x1DEB JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DE PUSH1 0x23 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1644 PUSH1 0x14 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1684 PUSH1 0x26 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16EA PUSH1 0x22 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1750 PUSH1 0x26 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B6 PUSH1 0x10 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F6 PUSH1 0x28 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x185C PUSH1 0x20 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x189C PUSH1 0x25 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1902 PUSH1 0x24 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1968 PUSH1 0x25 DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19CE PUSH1 0x1F DUP4 PUSH2 0x1C38 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A0A DUP2 PUSH2 0x1D11 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1A19 DUP2 PUSH2 0x1D1B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A34 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x157A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A4F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1589 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A6F DUP2 DUP5 PUSH2 0x1598 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 0x1A90 DUP2 PUSH2 0x15D1 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 0x1AB0 DUP2 PUSH2 0x1637 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 0x1AD0 DUP2 PUSH2 0x1677 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 0x1AF0 DUP2 PUSH2 0x16DD 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 0x1B10 DUP2 PUSH2 0x1743 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 0x1B30 DUP2 PUSH2 0x17A9 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 0x1B50 DUP2 PUSH2 0x17E9 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 0x1B70 DUP2 PUSH2 0x184F 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 0x1B90 DUP2 PUSH2 0x188F 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 0x1BB0 DUP2 PUSH2 0x18F5 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 0x1BD0 DUP2 PUSH2 0x195B 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 0x1BF0 DUP2 PUSH2 0x19C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C0C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1A01 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C27 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1A10 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 PUSH2 0x1C54 DUP3 PUSH2 0x1D11 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C5F DUP4 PUSH2 0x1D11 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1C94 JUMPI PUSH2 0x1C93 PUSH2 0x1D8D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CAA DUP3 PUSH2 0x1D11 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CB5 DUP4 PUSH2 0x1D11 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1CC8 JUMPI PUSH2 0x1CC7 PUSH2 0x1D8D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CDE DUP3 PUSH2 0x1CF1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D46 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1D2B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1D55 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 0x1D73 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1D87 JUMPI PUSH2 0x1D86 PUSH2 0x1DBC 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 PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E05 DUP2 PUSH2 0x1CD3 JUMP JUMPDEST DUP2 EQ PUSH2 0x1E10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1E1C DUP2 PUSH2 0x1D11 JUMP JUMPDEST DUP2 EQ PUSH2 0x1E27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0xB5 PUSH14 0x5E33BDA6A531D725EA269BEC9862 CALLER STOP 0xCF SWAP15 CREATE SLT SMOD 0xE 0xD9 DIFFICULTY PUSH2 0x5488 LOG2 PUSH11 0x64736F6C63430008000033 ",
"sourceMap": "223:600:6:-:0;;;277:112;;;;;;;;;;1898:114:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973:5;1965;:13;;;;;;;;;;;;:::i;:::-;;1998:7;1988;:17;;;;;;;;;;;;:::i;:::-;;1898:114;;935:5:1;925:7;;:15;;;;;;;;;;;;;;;;;;867:17:0;887:12;:10;;;:12;;:::i;:::-;867:32;;918:9;909:6;;:18;;;;;;;;;;;;;;;;;;975:9;942:43;;971:1;942:43;;;;;;;;;;;;842:150;331:51:6::1;337:10;371;:8;;;:10;;:::i;:::-;365:2;:16;;;;:::i;:::-;349:13;:32;;;;:::i;:::-;331:5;;;:51;;:::i;:::-;223:600:::0;;586:96:5;639:7;665:10;658:17;;586:96;:::o;3014:91:2:-;3072:5;3096:2;3089:9;;3014:91;:::o;8023:330::-;8125:1;8106:21;;:7;:21;;;;8098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8174:49;8203:1;8207:7;8216:6;8174:20;;;:49;;:::i;:::-;8250:6;8234:12;;:22;;;;;;;:::i;:::-;;;;;;;;8288:6;8266:9;:18;8276:7;8266:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8330:7;8309:37;;8326:1;8309:37;;;8339:6;8309:37;;;;;;:::i;:::-;;;;;;;;8023:330;;:::o;628:193:6:-;1356:8:1;:6;;;:8;;:::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;770:44:6::1;797:4;803:2;807:6;770:26;;;;;:44;;:::i;:::-;628:193:::0;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;10506:92:2:-;;;;:::o;223:600:6:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:314:7:-;;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;267:18;263:1;258:3;254:11;247:39;312:2;307:3;303:12;296:19;;153:168;;;:::o;327:329::-;;490:67;554:2;549:3;490:67;:::i;:::-;483:74;;587:33;583:1;578:3;574:11;567:54;647:2;642:3;638:12;631:19;;473:183;;;:::o;662:118::-;749:24;767:5;749:24;:::i;:::-;744:3;737:37;727:53;;:::o;786:419::-;;990:2;979:9;975:18;967:26;;1039:9;1033:4;1029:20;1025:1;1014:9;1010:17;1003:47;1067:131;1193:4;1067:131;:::i;:::-;1059:139;;957:248;;;:::o;1211:419::-;;1415:2;1404:9;1400:18;1392:26;;1464:9;1458:4;1454:20;1450:1;1439:9;1435:17;1428:47;1492:131;1618:4;1492:131;:::i;:::-;1484:139;;1382:248;;;:::o;1636:222::-;;1767:2;1756:9;1752:18;1744:26;;1780:71;1848:1;1837:9;1833:17;1824:6;1780:71;:::i;:::-;1734:124;;;;:::o;1864:169::-;;1982:6;1977:3;1970:19;2022:4;2017:3;2013:14;1998:29;;1960:73;;;;:::o;2039:305::-;;2098:20;2116:1;2098:20;:::i;:::-;2093:25;;2132:20;2150:1;2132:20;:::i;:::-;2127:25;;2286:1;2218:66;2214:74;2211:1;2208:81;2205:2;;;2292:18;;:::i;:::-;2205:2;2336:1;2333;2329:9;2322:16;;2083:261;;;;:::o;2350:848::-;;;2442:6;2433:15;;2466:5;2457:14;;2480:712;2501:1;2491:8;2488:15;2480:712;;;2596:4;2591:3;2587:14;2581:4;2578:24;2575:2;;;2605:18;;:::i;:::-;2575:2;2655:1;2645:8;2641:16;2638:2;;;3070:4;3063:5;3059:16;3050:25;;2638:2;3120:4;3114;3110:15;3102:23;;3150:32;3173:8;3150:32;:::i;:::-;3138:44;;2480:712;;;2423:775;;;;;;;:::o;3204:281::-;;3286:23;3304:4;3286:23;:::i;:::-;3278:31;;3330:25;3346:8;3330:25;:::i;:::-;3318:37;;3374:104;3411:66;3401:8;3395:4;3374:104;:::i;:::-;3365:113;;3268:217;;;;:::o;3491:1073::-;;3736:8;3726:2;;3757:1;3748:10;;3759:5;;3726:2;3785:4;3775:2;;3802:1;3793:10;;3804:5;;3775:2;3871:4;3919:1;3914:27;;;;3955:1;3950:191;;;;3864:277;;3914:27;3932:1;3923:10;;3934:5;;;3950:191;3995:3;3985:8;3982:17;3979:2;;;4002:18;;:::i;:::-;3979:2;4051:8;4048:1;4044:16;4035:25;;4086:3;4079:5;4076:14;4073:2;;;4093:18;;:::i;:::-;4073:2;4126:5;;;3864:277;;4250:2;4240:8;4237:16;4231:3;4225:4;4222:13;4218:36;4200:2;4190:8;4187:16;4182:2;4176:4;4173:12;4169:35;4153:111;4150:2;;;4306:8;4300:4;4296:19;4287:28;;4341:3;4334:5;4331:14;4328:2;;;4348:18;;:::i;:::-;4328:2;4381:5;;4150:2;4421:42;4459:3;4449:8;4443:4;4440:1;4421:42;:::i;:::-;4406:57;;;;4495:4;4490:3;4486:14;4479:5;4476:25;4473:2;;;4504:18;;:::i;:::-;4473:2;4553:4;4546:5;4542:16;4533:25;;3551:1013;;;;;;:::o;4570:348::-;;4633:20;4651:1;4633:20;:::i;:::-;4628:25;;4667:20;4685:1;4667:20;:::i;:::-;4662:25;;4855:1;4787:66;4783:74;4780:1;4777:81;4772:1;4765:9;4758:17;4754:105;4751:2;;;4862:18;;:::i;:::-;4751:2;4910:1;4907;4903:9;4892:20;;4618:300;;;;:::o;4924:77::-;;4990:5;4979:16;;4969:32;;;:::o;5007:86::-;;5082:4;5075:5;5071:16;5060:27;;5050:43;;;:::o;5099:320::-;;5180:1;5174:4;5170:12;5160:22;;5227:1;5221:4;5217:12;5248:18;5238:2;;5304:4;5296:6;5292:17;5282:27;;5238:2;5366;5358:6;5355:14;5335:18;5332:38;5329:2;;;5385:18;;:::i;:::-;5329:2;5150:269;;;;:::o;5425:180::-;5473:77;5470:1;5463:88;5570:4;5567:1;5560:15;5594:4;5591:1;5584:15;5611:180;5659:77;5656:1;5649:88;5756:4;5753:1;5746:15;5780:4;5777:1;5770:15;5797:102;;5886:5;5883:1;5879:13;5858:34;;5848:51;;;:::o;223:600:6:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:16090:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:7"
},
"nodeType": "YulFunctionCall",
"src": "78:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:7"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:7"
},
"nodeType": "YulFunctionCall",
"src": "107:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:7"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:7",
"type": ""
}
],
"src": "7:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:7"
},
"nodeType": "YulFunctionCall",
"src": "223:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:7"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:7"
},
"nodeType": "YulFunctionCall",
"src": "252:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:7"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:7",
"type": ""
}
],
"src": "152:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:7"
},
"nodeType": "YulFunctionCall",
"src": "411:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:7"
},
"nodeType": "YulFunctionCall",
"src": "380:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:7"
},
"nodeType": "YulFunctionCall",
"src": "376:32:7"
},
"nodeType": "YulIf",
"src": "373:2:7"
},
{
"nodeType": "YulBlock",
"src": "435:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:7"
},
"nodeType": "YulFunctionCall",
"src": "510:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:7"
},
"nodeType": "YulFunctionCall",
"src": "489:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:7",
"type": ""
}
],
"src": "297:262:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:7"
},
"nodeType": "YulFunctionCall",
"src": "696:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:7"
},
"nodeType": "YulFunctionCall",
"src": "665:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:7"
},
"nodeType": "YulFunctionCall",
"src": "661:32:7"
},
"nodeType": "YulIf",
"src": "658:2:7"
},
{
"nodeType": "YulBlock",
"src": "720:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:7"
},
"nodeType": "YulFunctionCall",
"src": "795:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:7"
},
"nodeType": "YulFunctionCall",
"src": "774:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:7"
},
"nodeType": "YulFunctionCall",
"src": "923:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:7"
},
"nodeType": "YulFunctionCall",
"src": "902:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:7",
"type": ""
}
],
"src": "565:407:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:7",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:7"
},
"nodeType": "YulIf",
"src": "1088:2:7"
},
{
"nodeType": "YulBlock",
"src": "1150:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:7",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:7"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:7",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:7",
"type": ""
}
],
"src": "978:552:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:7"
},
"nodeType": "YulIf",
"src": "1629:2:7"
},
{
"nodeType": "YulBlock",
"src": "1691:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:7"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:7",
"type": ""
}
],
"src": "1536:407:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2014:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2031:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2054:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2036:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2036:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2024:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2024:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "2024:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2002:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2009:3:7",
"type": ""
}
],
"src": "1949:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2132:50:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2149:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2169:5:7"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2154:14:7"
},
"nodeType": "YulFunctionCall",
"src": "2154:21:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2142:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2142:34:7"
},
"nodeType": "YulExpressionStatement",
"src": "2142:34:7"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2120:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2127:3:7",
"type": ""
}
],
"src": "2073:109:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2280:272:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2290:53:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2337:5:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2304:32:7"
},
"nodeType": "YulFunctionCall",
"src": "2304:39:7"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2294:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2352:78:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2418:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2423:6:7"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2359:58:7"
},
"nodeType": "YulFunctionCall",
"src": "2359:71:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2352:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2465:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2472:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2461:16:7"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2479:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2484:6:7"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2439:21:7"
},
"nodeType": "YulFunctionCall",
"src": "2439:52:7"
},
"nodeType": "YulExpressionStatement",
"src": "2439:52:7"
},
{
"nodeType": "YulAssignment",
"src": "2500:46:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2511:3:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2538:6:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2516:21:7"
},
"nodeType": "YulFunctionCall",
"src": "2516:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2507:39:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2500:3:7"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2261:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2268:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2276:3:7",
"type": ""
}
],
"src": "2188:364:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:221:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2714:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2780:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2785:2:7",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2721:58:7"
},
"nodeType": "YulFunctionCall",
"src": "2721:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2714:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2809:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2814:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2805:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2805:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2818:34:7",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2798:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2798:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "2798:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2874:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2879:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2870:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2870:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2884:5:7",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2863:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2863:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "2863:27:7"
},
{
"nodeType": "YulAssignment",
"src": "2900:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2911:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2916:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2907:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2907:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2900:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2692:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2700:3:7",
"type": ""
}
],
"src": "2558:367:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3077:172:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3087:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3153:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3158:2:7",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3094:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3094:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3087:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3182:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3187:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3178:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3178:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3191:22:7",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3171:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3171:43:7"
},
"nodeType": "YulExpressionStatement",
"src": "3171:43:7"
},
{
"nodeType": "YulAssignment",
"src": "3224:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3235:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3240:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3231:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3231:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3224:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3065:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3073:3:7",
"type": ""
}
],
"src": "2931:318:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3401:224:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3411:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3477:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3482:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3418:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3418:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3411:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3506:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3511:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3502:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3502:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3515:34:7",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3495:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3495:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "3495:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3571:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3576:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3567:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3567:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3581:8:7",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3560:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3560:30:7"
},
"nodeType": "YulExpressionStatement",
"src": "3560:30:7"
},
{
"nodeType": "YulAssignment",
"src": "3600:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3611:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3616:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3607:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3607:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3600:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3389:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3397:3:7",
"type": ""
}
],
"src": "3255:370:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3777:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3787:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3853:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3858:2:7",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3794:58:7"
},
"nodeType": "YulFunctionCall",
"src": "3794:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3787:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3882:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3887:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3878:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3878:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3891:34:7",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3871:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3871:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "3871:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3947:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3952:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3943:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3943:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3957:4:7",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3936:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3936:26:7"
},
"nodeType": "YulExpressionStatement",
"src": "3936:26:7"
},
{
"nodeType": "YulAssignment",
"src": "3972:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3983:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3979:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3979:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3972:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3765:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3773:3:7",
"type": ""
}
],
"src": "3631:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4149:224:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4159:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4225:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4230:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4166:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4166:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4159:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4254:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4259:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4250:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4250:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4263:34:7",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4243:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4243:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "4243:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4319:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4324:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4315:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4315:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4329:8:7",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4308:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4308:30:7"
},
"nodeType": "YulExpressionStatement",
"src": "4308:30:7"
},
{
"nodeType": "YulAssignment",
"src": "4348:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4359:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4364:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4355:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4355:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4348:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4137:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4145:3:7",
"type": ""
}
],
"src": "4003:370:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4525:168:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4535:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4601:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4606:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4542:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4542:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4535:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4630:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4635:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4626:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4626:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4639:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4619:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4619:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "4619:39:7"
},
{
"nodeType": "YulAssignment",
"src": "4668:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4679:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4684:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4675:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4675:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4668:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4513:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4521:3:7",
"type": ""
}
],
"src": "4379:314:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4845:226:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4855:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4921:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4926:2:7",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4862:58:7"
},
"nodeType": "YulFunctionCall",
"src": "4862:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4855:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4950:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4955:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4946:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4946:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4959:34:7",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4939:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4939:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "4939:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5015:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5020:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5011:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5011:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5025:10:7",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5004:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5004:32:7"
},
"nodeType": "YulExpressionStatement",
"src": "5004:32:7"
},
{
"nodeType": "YulAssignment",
"src": "5046:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5057:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5062:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5053:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5053:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5046:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4833:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4841:3:7",
"type": ""
}
],
"src": "4699:372:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5223:184:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5233:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5299:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5304:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5240:58:7"
},
"nodeType": "YulFunctionCall",
"src": "5240:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5233:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5328:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5324:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5324:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5337:34:7",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5317:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5317:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "5317:55:7"
},
{
"nodeType": "YulAssignment",
"src": "5382:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5393:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5398:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5389:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5389:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5382:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5211:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5219:3:7",
"type": ""
}
],
"src": "5077:330:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5559:223:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5569:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5635:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5640:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5576:58:7"
},
"nodeType": "YulFunctionCall",
"src": "5576:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5569:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5664:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5669:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5660:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5660:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5673:34:7",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5653:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5653:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "5653:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5729:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5734:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5725:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5725:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5739:7:7",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5718:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5718:29:7"
},
"nodeType": "YulExpressionStatement",
"src": "5718:29:7"
},
{
"nodeType": "YulAssignment",
"src": "5757:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5768:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5773:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5764:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5764:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5757:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5547:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5555:3:7",
"type": ""
}
],
"src": "5413:369:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5934:222:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5944:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6010:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6015:2:7",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5951:58:7"
},
"nodeType": "YulFunctionCall",
"src": "5951:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5944:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6039:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6044:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6035:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6035:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6048:34:7",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6028:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6028:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "6028:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6104:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6109:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6100:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6100:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6114:6:7",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6093:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6093:28:7"
},
"nodeType": "YulExpressionStatement",
"src": "6093:28:7"
},
{
"nodeType": "YulAssignment",
"src": "6131:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6142:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6147:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6138:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6138:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6131:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5922:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5930:3:7",
"type": ""
}
],
"src": "5788:368:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6308:223:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6318:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6384:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6389:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6325:58:7"
},
"nodeType": "YulFunctionCall",
"src": "6325:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6318:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6413:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6418:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6409:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6409:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6422:34:7",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6402:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6402:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "6402:55:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6478:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6483:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6474:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6474:12:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6488:7:7",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6467:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6467:29:7"
},
"nodeType": "YulExpressionStatement",
"src": "6467:29:7"
},
{
"nodeType": "YulAssignment",
"src": "6506:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6517:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6522:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6513:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6513:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6506:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6296:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6304:3:7",
"type": ""
}
],
"src": "6162:369:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6683:183:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6693:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6759:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6764:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6700:58:7"
},
"nodeType": "YulFunctionCall",
"src": "6700:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6693:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6788:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6793:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6784:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6784:11:7"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6797:33:7",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6777:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6777:54:7"
},
"nodeType": "YulExpressionStatement",
"src": "6777:54:7"
},
{
"nodeType": "YulAssignment",
"src": "6841:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6852:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6857:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6848:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6848:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6841:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6671:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6679:3:7",
"type": ""
}
],
"src": "6537:329:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6937:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6954:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6977:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6959:17:7"
},
"nodeType": "YulFunctionCall",
"src": "6959:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6947:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6947:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "6947:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6925:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6932:3:7",
"type": ""
}
],
"src": "6872:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7057:51:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7074:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7095:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7079:15:7"
},
"nodeType": "YulFunctionCall",
"src": "7079:22:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7067:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7067:35:7"
},
"nodeType": "YulExpressionStatement",
"src": "7067:35:7"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7045:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7052:3:7",
"type": ""
}
],
"src": "6996:112:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7212:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7222:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7234:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7245:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7230:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7230:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7222:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7302:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7315:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7326:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7311:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7311:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "7258:43:7"
},
"nodeType": "YulFunctionCall",
"src": "7258:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "7258:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7184:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7196:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7207:4:7",
"type": ""
}
],
"src": "7114:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7434:118:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7444:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7456:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7467:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7452:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7452:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7444:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7518:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7531:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7542:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7527:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7527:17:7"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "7480:37:7"
},
"nodeType": "YulFunctionCall",
"src": "7480:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "7480:65:7"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7406:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7418:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7429:4:7",
"type": ""
}
],
"src": "7342:210:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7676:195:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7686:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7698:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7709:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7694:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7694:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7686:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7733:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7744:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7729:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7729:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7752:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7758:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7748:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7748:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7722:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7722:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "7722:47:7"
},
{
"nodeType": "YulAssignment",
"src": "7778:86:7",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7850:6:7"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7859:4:7"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7786:63:7"
},
"nodeType": "YulFunctionCall",
"src": "7786:78:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7778:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7648:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7660:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7671:4:7",
"type": ""
}
],
"src": "7558:313:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8048:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8058:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8070:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8081:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8066:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8066:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8058:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8105:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8116:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8101:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8101:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8124:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8130:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8120:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8120:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8094:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8094:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8094:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8150:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8284:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8158:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8158:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8150:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8028:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8043:4:7",
"type": ""
}
],
"src": "7877:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8473:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8483:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8495:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8506:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8491:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8491:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8483:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8530:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8541:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8526:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8526:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8549:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8555:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8545:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8545:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8519:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8519:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8519:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8575:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8709:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8583:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8583:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8575:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8453:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8468:4:7",
"type": ""
}
],
"src": "8302:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8898:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8908:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8920:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8931:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8916:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8916:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8908:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8955:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8966:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8951:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8951:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8974:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8980:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8970:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8970:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8944:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8944:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8944:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9000:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9134:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9008:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9008:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9000:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8878:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8893:4:7",
"type": ""
}
],
"src": "8727:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9323:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9333:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9345:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9356:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9341:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9341:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9333:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9380:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9391:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9376:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9376:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9399:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9405:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9395:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9395:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9369:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9369:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9369:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9425:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9559:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9433:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9433:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9425:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9303:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9318:4:7",
"type": ""
}
],
"src": "9152:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9748:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9758:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9770:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9781:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9766:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9758:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9805:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9816:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9801:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9801:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9824:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9830:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9820:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9820:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9794:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9794:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9794:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9850:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9984:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9858:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9858:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9850:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9728:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9743:4:7",
"type": ""
}
],
"src": "9577:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10173:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10183:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10195:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10206:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10191:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10191:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10183:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10230:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10241:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10226:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10226:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10249:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10255:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10245:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10245:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10219:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10219:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10219:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10275:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10409:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10283:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10283:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10275:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10153:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10168:4:7",
"type": ""
}
],
"src": "10002:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10598:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10608:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10620:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10631:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10616:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10616:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10608:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10655:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10666:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10651:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10651:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10674:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10680:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10670:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10670:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10644:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10644:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10644:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10700:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10834:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10708:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10708:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10700:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10578:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10593:4:7",
"type": ""
}
],
"src": "10427:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11023:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11033:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11045:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11056:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11041:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11041:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11033:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11080:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11091:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11076:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11076:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11099:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11105:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11095:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11095:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11069:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11069:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11069:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11125:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11259:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11133:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11133:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11125:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11003:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11018:4:7",
"type": ""
}
],
"src": "10852:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11448:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11458:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11470:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11481:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11466:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11466:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11458:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11505:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11516:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11501:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11501:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11524:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11530:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11520:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11520:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11494:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11494:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11494:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11550:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11684:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11558:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11558:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11550:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11428:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11443:4:7",
"type": ""
}
],
"src": "11277:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11873:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11883:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11895:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11906:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11891:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11891:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11883:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11930:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11941:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11926:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11926:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11949:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11955:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11945:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11945:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11919:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11919:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11919:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11975:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12109:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11983:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11983:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11975:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11853:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11868:4:7",
"type": ""
}
],
"src": "11702:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12298:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12308:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12320:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12331:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12316:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12316:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12308:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12355:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12366:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12351:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12351:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12374:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12380:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12370:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12370:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12344:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12344:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12344:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12400:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12534:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12408:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12408:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12400:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12278:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12293:4:7",
"type": ""
}
],
"src": "12127:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12723:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12733:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12745:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12756:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12741:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12741:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12733:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12780:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12791:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12776:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12776:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12799:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12805:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12795:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12795:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12769:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12769:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12769:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12825:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12959:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12833:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12833:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12825:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12703:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12718:4:7",
"type": ""
}
],
"src": "12552:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13075:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13085:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13097:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13108:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13093:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13093:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13085:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13165:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13178:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13189:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13174:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13174:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13121:43:7"
},
"nodeType": "YulFunctionCall",
"src": "13121:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "13121:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13047:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13059:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13070:4:7",
"type": ""
}
],
"src": "12977:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13299:120:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13309:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13321:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13332:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13317:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13317:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13309:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13385:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13398:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13409:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13394:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13394:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "13345:39:7"
},
"nodeType": "YulFunctionCall",
"src": "13345:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "13345:67:7"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13271:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13283:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13294:4:7",
"type": ""
}
],
"src": "13205:214:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13484:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13495:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13511:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13505:5:7"
},
"nodeType": "YulFunctionCall",
"src": "13505:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13495:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13467:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13477:6:7",
"type": ""
}
],
"src": "13425:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13626:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13643:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13648:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13636:6:7"
},
"nodeType": "YulFunctionCall",
"src": "13636:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "13636:19:7"
},
{
"nodeType": "YulAssignment",
"src": "13664:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13683:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13688:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13679:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13679:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "13664:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13598:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13603:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "13614:11:7",
"type": ""
}
],
"src": "13530:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13749:261:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13759:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13782:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13764:17:7"
},
"nodeType": "YulFunctionCall",
"src": "13764:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13759:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13793:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13816:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13798:17:7"
},
"nodeType": "YulFunctionCall",
"src": "13798:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13793:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13956:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "13958:16:7"
},
"nodeType": "YulFunctionCall",
"src": "13958:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "13958:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13877:1:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13884:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13952:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13880:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13880:74:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13874:2:7"
},
"nodeType": "YulFunctionCall",
"src": "13874:81:7"
},
"nodeType": "YulIf",
"src": "13871:2:7"
},
{
"nodeType": "YulAssignment",
"src": "13988:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13999:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14002:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13995:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13995:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "13988:3:7"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "13736:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "13739:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "13745:3:7",
"type": ""
}
],
"src": "13705:305:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14061:146:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14071:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14094:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14076:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14076:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14071:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14105:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14128:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14110:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14110:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14105:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14152:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14154:16:7"
},
"nodeType": "YulFunctionCall",
"src": "14154:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "14154:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14146:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14149:1:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14143:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14143:8:7"
},
"nodeType": "YulIf",
"src": "14140:2:7"
},
{
"nodeType": "YulAssignment",
"src": "14184:17:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14196:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14199:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14192:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14192:9:7"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "14184:4:7"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14047:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14050:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "14056:4:7",
"type": ""
}
],
"src": "14016:191:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14258:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14268:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14297:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "14279:17:7"
},
"nodeType": "YulFunctionCall",
"src": "14279:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14268:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14240:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14250:7:7",
"type": ""
}
],
"src": "14213:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14357:48:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14367:32:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14392:5:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14385:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14385:13:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14378:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14378:21:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14367:7:7"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14339:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14349:7:7",
"type": ""
}
],
"src": "14315:90:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14456:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14466:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14481:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14488:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14477:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14477:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14466:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14438:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14448:7:7",
"type": ""
}
],
"src": "14411:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14588:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14598:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "14609:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14598:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14570:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14580:7:7",
"type": ""
}
],
"src": "14543:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14669:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14679:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14694:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14701:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14690:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14690:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "14679:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14651:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "14661:7:7",
"type": ""
}
],
"src": "14626:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14767:258:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14777:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14786:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "14781:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14846:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "14871:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14876:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14867:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14867:11:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "14890:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14895:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14886:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14886:11:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "14880:5:7"
},
"nodeType": "YulFunctionCall",
"src": "14880:18:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14860:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14860:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "14860:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14807:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14810:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14804:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14804:13:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "14818:19:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14820:15:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14829:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14832:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14825:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14825:10:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14820:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "14800:3:7",
"statements": []
},
"src": "14796:113:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14943:76:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "14993:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14998:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14989:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14989:16:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15007:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14982:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14982:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "14982:27:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "14924:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14927:6:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "14921:2:7"
},
"nodeType": "YulFunctionCall",
"src": "14921:13:7"
},
"nodeType": "YulIf",
"src": "14918:2:7"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "14749:3:7",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "14754:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "14759:6:7",
"type": ""
}
],
"src": "14718:307:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15082:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15092:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "15106:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15112:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "15102:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15102:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15092:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "15123:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "15153:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15159:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15149:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15149:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "15127:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15200:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15214:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15228:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15236:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15224:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15224:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15214:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "15180:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15173:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15173:26:7"
},
"nodeType": "YulIf",
"src": "15170:2:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15303:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "15317:16:7"
},
"nodeType": "YulFunctionCall",
"src": "15317:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "15317:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "15267:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15290:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15298:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "15287:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15287:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "15264:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15264:38:7"
},
"nodeType": "YulIf",
"src": "15261:2:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "15066:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15075:6:7",
"type": ""
}
],
"src": "15031:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15385:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15402:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15405:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15395:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15395:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "15395:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15499:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15502:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15492:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15492:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15492:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15523:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15526:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15516:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15516:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15516:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "15357:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15571:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15588:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15591:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15581:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15581:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "15581:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15685:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15688:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15678:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15678:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15678:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15709:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15712:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15702:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15702:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "15702:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "15543:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15777:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15787:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15805:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15812:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15801:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15801:14:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15821:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "15817:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15817:7:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15797:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15797:28:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "15787:6:7"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15760:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "15770:6:7",
"type": ""
}
],
"src": "15729:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15880:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15937:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15946:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15949:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15939:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15939:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "15939:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15903:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15928:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "15910:17:7"
},
"nodeType": "YulFunctionCall",
"src": "15910:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "15900:2:7"
},
"nodeType": "YulFunctionCall",
"src": "15900:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15893:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15893:43:7"
},
"nodeType": "YulIf",
"src": "15890:2:7"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15873:5:7",
"type": ""
}
],
"src": "15837:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16008:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16065:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16074:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16077:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16067:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16067:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "16067:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16031:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16056:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16038:17:7"
},
"nodeType": "YulFunctionCall",
"src": "16038:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16028:2:7"
},
"nodeType": "YulFunctionCall",
"src": "16028:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16021:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16021:43:7"
},
"nodeType": "YulIf",
"src": "16018:2:7"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16001:5:7",
"type": ""
}
],
"src": "15965:122:7"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n\n mstore(add(pos, 0), \"Pausable: not paused\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(pos, 32), \"ddress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(pos, 32), \"ss\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(pos, 32), \"alance\")\n\n end := add(pos, 64)\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\n mstore(add(pos, 0), \"Pausable: paused\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(pos, 32), \"llowance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n\n mstore(add(pos, 0), \"Ownable: caller is not the owner\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\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\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\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_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_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_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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_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_bool(value) -> cleaned {\n cleaned := iszero(iszero(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 copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806340c10f191461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611a55565b60405180910390f35b610153600480360381019061014e919061153e565b610407565b6040516101609190611a3a565b60405180910390f35b610171610425565b60405161017e9190611bf7565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61042f565b6040516101ae9190611a3a565b60405180910390f35b6101bf610530565b6040516101cc9190611c12565b60405180910390f35b6101ef60048036038101906101ea919061153e565b610539565b6040516101fc9190611a3a565b60405180910390f35b61020d6105e5565b005b6102296004803603810190610224919061153e565b61066b565b005b6102336106f5565b6040516102409190611a3a565b60405180910390f35b610263600480360381019061025e919061148a565b61070c565b6040516102709190611bf7565b60405180910390f35b610281610754565b005b61028b610891565b005b610295610917565b6040516102a29190611a1f565b60405180910390f35b6102b3610941565b6040516102c09190611a55565b60405180910390f35b6102e360048036038101906102de919061153e565b6109d3565b6040516102f09190611a3a565b60405180910390f35b610313600480360381019061030e919061153e565b610ac7565b6040516103209190611a3a565b60405180910390f35b610343600480360381019061033e91906114b3565b610ae5565b6040516103509190611bf7565b60405180910390f35b610373600480360381019061036e919061148a565b610b6c565b005b60606003805461038490611d5b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611d5b565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610d1d565b8484610d25565b6001905092915050565b6000600254905090565b600061043c848484610ef0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611b37565b60405180910390fd5b61052485610513610d1d565b858461051f9190611c9f565b610d25565b60019150509392505050565b60006012905090565b60006105db610546610d1d565b848460016000610554610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611c49565b610d25565b6001905092915050565b6105ed610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661060b610917565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611b57565b60405180910390fd5b61066961116f565b565b610673610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610691610917565b73ffffffffffffffffffffffffffffffffffffffff16146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de90611b57565b60405180910390fd5b6106f18282611211565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075c610d1d565b73ffffffffffffffffffffffffffffffffffffffff1661077a610917565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c790611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610899610d1d565b73ffffffffffffffffffffffffffffffffffffffff166108b7610917565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611b57565b60405180910390fd5b610915611365565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095090611d5b565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90611d5b565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b600080600160006109e2610d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611bb7565b60405180910390fd5b610abc610aaa610d1d565b858584610ab79190611c9f565b610d25565b600191505092915050565b6000610adb610ad4610d1d565b8484610ef0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b74610d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b92610917565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a00000000000000000000000000000000000
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