Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omeci/14deeb46fdb0e7a6d69b163219e830fb to your computer and use it in GitHub Desktop.
Save omeci/14deeb46fdb0e7a6d69b163219e830fb 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.18+commit.87f61d96.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
return address(0);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_139": {
"entryPoint": null,
"id": 139,
"parameterSlots": 0,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_265": {
"entryPoint": null,
"id": 265,
"parameterSlots": 2,
"returnSlots": 0
},
"@_963": {
"entryPoint": null,
"id": 963,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_806": {
"entryPoint": 918,
"id": 806,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1002": {
"entryPoint": 873,
"id": 1002,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_795": {
"entryPoint": 1008,
"id": 795,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_624": {
"entryPoint": 508,
"id": 624,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_922": {
"entryPoint": 293,
"id": 922,
"parameterSlots": 0,
"returnSlots": 1
},
"@_requireNotPaused_176": {
"entryPoint": 923,
"id": 176,
"parameterSlots": 0,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 301,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@decimals_295": {
"entryPoint": 499,
"id": 295,
"parameterSlots": 0,
"returnSlots": 1
},
"@paused_164": {
"entryPoint": 1013,
"id": 164,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2734,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2647,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2773,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2664,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1194,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2457,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2588,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 1961,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 2301,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 2052,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 2382,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1515,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2288,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1476,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1350,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1670,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1215,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1141,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1640,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1340,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1608,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1901,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1094,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1047,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1390,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_1_unsigned": {
"entryPoint": 1948,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1595,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1448,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 2693,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 2474,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1244,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1400,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1443,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10930:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:7"
},
"nodeType": "YulFunctionCall",
"src": "87:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:7",
"type": ""
}
],
"src": "7:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:7"
},
"nodeType": "YulFunctionCall",
"src": "150:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:7",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:7"
},
"nodeType": "YulFunctionCall",
"src": "247:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:7"
},
"nodeType": "YulFunctionCall",
"src": "271:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:7"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:7"
},
"nodeType": "YulFunctionCall",
"src": "336:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:7"
},
"nodeType": "YulFunctionCall",
"src": "433:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:7"
},
"nodeType": "YulFunctionCall",
"src": "457:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:7"
},
"nodeType": "YulFunctionCall",
"src": "555:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:7"
},
"nodeType": "YulFunctionCall",
"src": "602:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:7"
},
"nodeType": "YulFunctionCall",
"src": "677:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:7"
},
"nodeType": "YulFunctionCall",
"src": "626:26:7"
},
"nodeType": "YulIf",
"src": "623:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:7"
},
"nodeType": "YulFunctionCall",
"src": "770:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:7"
},
"nodeType": "YulFunctionCall",
"src": "740:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:7"
},
"nodeType": "YulFunctionCall",
"src": "717:38:7"
},
"nodeType": "YulIf",
"src": "714:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:7",
"type": ""
}
],
"src": "484:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:7",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:7",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:7"
},
"nodeType": "YulFunctionCall",
"src": "895:14:7"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:7"
},
{
"nodeType": "YulAssignment",
"src": "918:26:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:7"
},
"nodeType": "YulFunctionCall",
"src": "926:18:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:7"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:7",
"type": ""
}
],
"src": "810:141:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:7"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:7",
"type": ""
}
],
"src": "957:93:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:7"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:7"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:7",
"type": ""
}
],
"src": "1056:107:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:7",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:7",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:7"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:7"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:7"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:7"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:7"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:7"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:7"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:7",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:7",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:7",
"type": ""
}
],
"src": "1169:393:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:7",
"type": ""
}
],
"src": "1568:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:7"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:7",
"type": ""
}
],
"src": "1651:60:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:7"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:7"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:7"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:7"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:7",
"type": ""
}
],
"src": "1717:142:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:7"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:7",
"type": ""
}
],
"src": "1865:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:7",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:7"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:7"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:7"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:7"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:7"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:7"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:7"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:7"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:7"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:7"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:7",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:7",
"type": ""
}
],
"src": "1946:269:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:7"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:7",
"type": ""
}
],
"src": "2221:73:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:7",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:7"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:7"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:7"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:7"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:7"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:7",
"type": ""
}
],
"src": "2300:189:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:7"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:7",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:7"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:7",
"statements": []
},
"src": "2555:120:7"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:7",
"type": ""
}
],
"src": "2495:186:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:7",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:7"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:7"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:7",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:7"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:7"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:7",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:7"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:7"
},
"nodeType": "YulIf",
"src": "3071:49:7"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:7"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:7"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:7"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:7"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:7"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:7"
},
"nodeType": "YulIf",
"src": "2777:446:7"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:7",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:7",
"type": ""
}
],
"src": "2687:543:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:7"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:7",
"type": ""
}
],
"src": "3236:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:7",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:7"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:7"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:7",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:7",
"type": ""
}
],
"src": "3359:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:7"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:7"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:7",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:7"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:7"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:7",
"type": ""
}
],
"src": "3533:295:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:7",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:7"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:7"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:7"
},
"nodeType": "YulIf",
"src": "4038:56:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:7"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:7"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:7"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:7"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:7"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:7"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:7",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:7"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:7",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:7"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:7",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:7"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:7"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:7"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:7",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:7"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:7",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:7"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:7"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:7",
"statements": []
},
"src": "4524:208:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:7"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:7"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:7"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:7"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:7"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:7"
},
"nodeType": "YulIf",
"src": "4745:179:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:7"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:7"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:7"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:7"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:7"
},
"nodeType": "YulIf",
"src": "5041:77:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:7"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:7"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:7"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:7"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:7",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:7"
},
"nodeType": "YulSwitch",
"src": "4335:887:7"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:7",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:7",
"type": ""
}
],
"src": "3833:1395:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5262:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5279:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5282:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5272:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5272:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "5272:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5376:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5379:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5369:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5369:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5369:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5400:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5403:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5393:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5393:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "5393:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5234:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5471:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5481:34:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5506:1:7",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5509:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5502:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5502:13:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5481:8:7"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5452:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5462:8:7",
"type": ""
}
],
"src": "5420:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5601:775:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5611:15:7",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "5620:6:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5611:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5635:14:7",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "5644:5:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5635:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5693:677:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5781:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5783:16:7"
},
"nodeType": "YulFunctionCall",
"src": "5783:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "5783:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5759:4:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "5769:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5774:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5765:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5765:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5756:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5756:24:7"
},
"nodeType": "YulIf",
"src": "5753:50:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5848:419:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6228:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6241:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6248:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6237:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6237:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6228:5:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5823:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5833:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5819:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5819:16:7"
},
"nodeType": "YulIf",
"src": "5816:451:7"
},
{
"nodeType": "YulAssignment",
"src": "6280:23:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6292:4:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6298:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6288:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6288:15:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6280:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6316:44:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6351:8:7"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "6328:22:7"
},
"nodeType": "YulFunctionCall",
"src": "6328:32:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6316:8:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5669:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5679:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5666:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5666:15:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5682:2:7",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "5662:3:7",
"statements": []
},
"src": "5658:712:7"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "5556:6:7",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "5564:5:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "5571:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "5581:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "5589:5:7",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "5596:4:7",
"type": ""
}
],
"src": "5528:848:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6442:1013:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6637:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6639:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6648:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6639:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "6650:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6627:8:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6620:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6620:16:7"
},
"nodeType": "YulIf",
"src": "6617:40:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6682:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6684:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6693:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6684:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "6695:5:7"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "6676:4:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6669:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6669:12:7"
},
"nodeType": "YulIf",
"src": "6666:36:7"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "6812:20:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6814:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6823:1:7",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6814:5:7"
}
]
},
{
"nodeType": "YulLeave",
"src": "6825:5:7"
}
]
},
"nodeType": "YulCase",
"src": "6805:27:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6810:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "6856:176:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6891:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6893:16:7"
},
"nodeType": "YulFunctionCall",
"src": "6893:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "6893:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6876:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6886:3:7",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6873:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6873:17:7"
},
"nodeType": "YulIf",
"src": "6870:43:7"
},
{
"nodeType": "YulAssignment",
"src": "6926:25:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6939:1:7",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "6942:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "6935:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6935:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6926:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6982:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6984:16:7"
},
"nodeType": "YulFunctionCall",
"src": "6984:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "6984:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "6970:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "6977:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6967:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6967:14:7"
},
"nodeType": "YulIf",
"src": "6964:40:7"
},
{
"nodeType": "YulLeave",
"src": "7017:5:7"
}
]
},
"nodeType": "YulCase",
"src": "6841:191:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6846:1:7",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "6762:4:7"
},
"nodeType": "YulSwitch",
"src": "6755:277:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7164:123:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7178:28:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7191:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7197:8:7"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "7187:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7187:19:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7178:5:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7237:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7239:16:7"
},
"nodeType": "YulFunctionCall",
"src": "7239:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "7239:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7225:5:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "7232:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7222:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7222:14:7"
},
"nodeType": "YulIf",
"src": "7219:40:7"
},
{
"nodeType": "YulLeave",
"src": "7272:5:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7067:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7073:2:7",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7064:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7064:12:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7081:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:2:7",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7078:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7078:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7060:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7060:35:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7116:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7122:3:7",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7113:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7113:13:7"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7131:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7141:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7128:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7128:16:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7109:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7109:36:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7044:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7044:111:7"
},
"nodeType": "YulIf",
"src": "7041:246:7"
},
{
"nodeType": "YulAssignment",
"src": "7297:57:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7331:1:7",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7334:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7340:8:7"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "7350:3:7"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "7312:18:7"
},
"nodeType": "YulFunctionCall",
"src": "7312:42:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7297:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7304:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7393:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7395:16:7"
},
"nodeType": "YulFunctionCall",
"src": "7395:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "7395:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7370:5:7"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "7381:3:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7386:4:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7377:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7377:14:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7367:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7367:25:7"
},
"nodeType": "YulIf",
"src": "7364:51:7"
},
{
"nodeType": "YulAssignment",
"src": "7424:25:7",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7437:5:7"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7444:4:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7433:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7433:16:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7424:5:7"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "6412:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "6418:8:7",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "6428:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "6436:5:7",
"type": ""
}
],
"src": "6382:1073:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7504:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7514:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7529:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7536:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7525:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7525:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7514:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7486:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7496:7:7",
"type": ""
}
],
"src": "7461:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7617:217:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7627:31:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7653:4:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7635:17:7"
},
"nodeType": "YulFunctionCall",
"src": "7635:23:7"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7627:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7667:37:7",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7695:8:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7679:15:7"
},
"nodeType": "YulFunctionCall",
"src": "7679:25:7"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7667:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7714:113:7",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "7744:4:7"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "7750:8:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7760:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "7723:20:7"
},
"nodeType": "YulFunctionCall",
"src": "7723:104:7"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "7714:5:7"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "7592:4:7",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "7598:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "7611:5:7",
"type": ""
}
],
"src": "7553:281:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7888:362:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7898:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7921:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7903:17:7"
},
"nodeType": "YulFunctionCall",
"src": "7903:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7898:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7932:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7955:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7937:17:7"
},
"nodeType": "YulFunctionCall",
"src": "7937:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7932:1:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7966:28:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7989:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7992:1:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7985:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7985:9:7"
},
"variables": [
{
"name": "product_raw",
"nodeType": "YulTypedName",
"src": "7970:11:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8003:41:7",
"value": {
"arguments": [
{
"name": "product_raw",
"nodeType": "YulIdentifier",
"src": "8032:11:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8014:17:7"
},
"nodeType": "YulFunctionCall",
"src": "8014:30:7"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8003:7:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8221:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8223:16:7"
},
"nodeType": "YulFunctionCall",
"src": "8223:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "8223:18:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8154:1:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8147:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8147:9:7"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8177:1:7"
},
{
"arguments": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8184:7:7"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8193:1:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8180:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8180:15:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8174:2:7"
},
"nodeType": "YulFunctionCall",
"src": "8174:22:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "8127:2:7"
},
"nodeType": "YulFunctionCall",
"src": "8127:83:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8107:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8107:113:7"
},
"nodeType": "YulIf",
"src": "8104:139:7"
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "7871:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "7874:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "7880:7:7",
"type": ""
}
],
"src": "7840:410:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8352:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8369:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8374:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8362:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8362:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "8362:19:7"
},
{
"nodeType": "YulAssignment",
"src": "8390:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8409:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8414:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8405:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8405:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "8390:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8324:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8329:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "8340:11:7",
"type": ""
}
],
"src": "8256:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8537:75:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8559:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8567:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8555:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8555:14:7"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8571:33:7",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8548:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8548:57:7"
},
"nodeType": "YulExpressionStatement",
"src": "8548:57:7"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8529:6:7",
"type": ""
}
],
"src": "8431:181:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8764:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8774:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8840:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8845:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8781:58:7"
},
"nodeType": "YulFunctionCall",
"src": "8781:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8774:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8946:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "8857:88:7"
},
"nodeType": "YulFunctionCall",
"src": "8857:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "8857:93:7"
},
{
"nodeType": "YulAssignment",
"src": "8959:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8970:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8975:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8966:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8966:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8959:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8752:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8760:3:7",
"type": ""
}
],
"src": "8618:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9161:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9171:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9183:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9194:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9179:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9179:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9171:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9218:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9229:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9214:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9214:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9237:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9243:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9233:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9233:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9207:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9207:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9207:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9263:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9397:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9271:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9271:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9263:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9141:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9156:4:7",
"type": ""
}
],
"src": "8990:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9459:147:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9469:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9492:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9474:17:7"
},
"nodeType": "YulFunctionCall",
"src": "9474:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9469:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9503:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9526:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9508:17:7"
},
"nodeType": "YulFunctionCall",
"src": "9508:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9503:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9537:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9548:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9551:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9544:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9544:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9537:3:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9577:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9579:16:7"
},
"nodeType": "YulFunctionCall",
"src": "9579:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "9579:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9569:1:7"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9572:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9566:2:7"
},
"nodeType": "YulFunctionCall",
"src": "9566:10:7"
},
"nodeType": "YulIf",
"src": "9563:36:7"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9446:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9449:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9455:3:7",
"type": ""
}
],
"src": "9415:191:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9677:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9694:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9717:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9699:17:7"
},
"nodeType": "YulFunctionCall",
"src": "9699:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9687:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9687:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "9687:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9665:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9672:3:7",
"type": ""
}
],
"src": "9612:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9834:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9844:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9856:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9867:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9852:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9852:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9844:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9924:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9937:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9948:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9933:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9933:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "9880:43:7"
},
"nodeType": "YulFunctionCall",
"src": "9880:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "9880:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9806:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9818:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9829:4:7",
"type": ""
}
],
"src": "9736:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10070:60:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10092:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10100:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10088:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10088:14:7"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10104:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10081:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10081:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "10081:42:7"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10062:6:7",
"type": ""
}
],
"src": "9964:166:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10282:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10292:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10358:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10363:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10299:58:7"
},
"nodeType": "YulFunctionCall",
"src": "10299:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10292:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10464:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "10375:88:7"
},
"nodeType": "YulFunctionCall",
"src": "10375:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "10375:93:7"
},
{
"nodeType": "YulAssignment",
"src": "10477:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10488:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10493:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10484:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10484:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10477:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10270:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10278:3:7",
"type": ""
}
],
"src": "10136:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10679:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10689:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10701:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10712:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10697:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10697:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10689:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10736:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10747:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10732:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10732:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10755:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10761:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10751:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10751:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10725:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10725:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10725:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10781:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10915:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10789:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10789:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10781:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10659:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10674:4:7",
"type": ""
}
],
"src": "10508:419:7"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\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 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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 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_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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\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_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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\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_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 store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\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_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}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f4f70656e204d65746120436974790000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4d5a000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000686565b508060049081620000a1919062000686565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d36200012560201b60201c565b6200012d60201b60201c565b6200011f33620000f4620001f360201b60201c565b600a620001029190620008fd565b630bebc2006200011391906200094e565b620001fc60201b60201c565b62000af7565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026590620009fa565b60405180910390fd5b62000282600083836200036960201b60201c565b806002600082825462000296919062000a1c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000a68565b60405180910390a362000365600083836200039660201b60201c565b5050565b620003796200039b60201b60201c565b62000391838383620003f060201b620007731760201c565b505050565b505050565b620003ab620003f560201b60201c565b15620003ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e59062000ad5565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048e57607f821691505b602082108103620004a457620004a362000446565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004cf565b6200051a8683620004cf565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000567620005616200055b8462000532565b6200053c565b62000532565b9050919050565b6000819050919050565b620005838362000546565b6200059b62000592826200056e565b848454620004dc565b825550505050565b600090565b620005b2620005a3565b620005bf81848462000578565b505050565b5b81811015620005e757620005db600082620005a8565b600181019050620005c5565b5050565b601f82111562000636576200060081620004aa565b6200060b84620004bf565b810160208510156200061b578190505b620006336200062a85620004bf565b830182620005c4565b50505b505050565b600082821c905092915050565b60006200065b600019846008026200063b565b1980831691505092915050565b600062000676838362000648565b9150826002028217905092915050565b62000691826200040c565b67ffffffffffffffff811115620006ad57620006ac62000417565b5b620006b9825462000475565b620006c6828285620005eb565b600060209050601f831160018114620006fe5760008415620006e9578287015190505b620006f5858262000668565b86555062000765565b601f1984166200070e86620004aa565b60005b82811015620007385784890151825560018201915060208501945060208101905062000711565b8683101562000758578489015162000754601f89168262000648565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007fb57808604811115620007d357620007d26200076d565b5b6001851615620007e35780820291505b8081029050620007f3856200079c565b9450620007b3565b94509492505050565b600082620008165760019050620008e9565b81620008265760009050620008e9565b81600181146200083f57600281146200084a5762000880565b6001915050620008e9565b60ff8411156200085f576200085e6200076d565b5b8360020a9150848211156200087957620008786200076d565b5b50620008e9565b5060208310610133831016604e8410600b8410161715620008ba5782820a905083811115620008b457620008b36200076d565b5b620008e9565b620008c98484846001620007a9565b92509050818404811115620008e357620008e26200076d565b5b81810290505b9392505050565b600060ff82169050919050565b60006200090a8262000532565b91506200091783620008f0565b9250620009467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000804565b905092915050565b60006200095b8262000532565b9150620009688362000532565b9250828202620009788162000532565b915082820484148315176200099257620009916200076d565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009e2601f8362000999565b9150620009ef82620009aa565b602082019050919050565b6000602082019050818103600083015262000a1581620009d3565b9050919050565b600062000a298262000532565b915062000a368362000532565b925082820190508082111562000a515762000a506200076d565b5b92915050565b62000a628162000532565b82525050565b600060208201905062000a7f600083018462000a57565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000abd60108362000999565b915062000aca8262000a85565b602082019050919050565b6000602082019050818103600083015262000af08162000aae565b9050919050565b6118b88062000b076000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b6040516101259190610f95565b60405180910390f35b61014860048036038101906101439190611050565b6103e0565b60405161015591906110ab565b60405180910390f35b610166610403565b60405161017391906110d5565b60405180910390f35b610196600480360381019061019191906110f0565b61040d565b6040516101a391906110ab565b60405180910390f35b6101b461043c565b6040516101c1919061115f565b60405180910390f35b6101e460048036038101906101df9190611050565b610445565b6040516101f191906110ab565b60405180910390f35b61020261047c565b005b61020c61048e565b60405161021991906110ab565b60405180910390f35b61023c6004803603810190610237919061117a565b6104a5565b60405161024991906110d5565b60405180910390f35b61025a6104ed565b005b610264610501565b005b61026e610513565b60405161027b91906111b6565b60405180910390f35b61028c61053d565b6040516102999190610f95565b60405180910390f35b6102bc60048036038101906102b79190611050565b6105cf565b6040516102c991906110ab565b60405180910390f35b6102ec60048036038101906102e79190611050565b610646565b6040516102f991906110ab565b60405180910390f35b61031c600480360381019061031791906111d1565b610669565b60405161032991906110d5565b60405180910390f35b61034c6004803603810190610347919061117a565b6106f0565b005b60606003805461035d90611240565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611240565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b6000806103eb610778565b90506103f8818585610780565b600191505092915050565b6000600254905090565b600080610418610778565b9050610425858285610949565b6104308585856109d5565b60019150509392505050565b60006012905090565b600080610450610778565b90506104718185856104628589610669565b61046c91906112a0565b610780565b600191505092915050565b610484610c4b565b61048c610cc9565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f5610c4b565b6104ff6000610d2c565b565b610509610c4b565b610511610df2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461054c90611240565b80601f016020809104026020016040519081016040528092919081815260200182805461057890611240565b80156105c55780601f1061059a576101008083540402835291602001916105c5565b820191906000526020600020905b8154815290600101906020018083116105a857829003601f168201915b5050505050905090565b6000806105da610778565b905060006105e88286610669565b90508381101561062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611346565b60405180910390fd5b61063a8286868403610780565b60019250505092915050565b600080610651610778565b905061065e8185856109d5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106f8610c4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e906113d8565b60405180910390fd5b61077081610d2c565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e69061146a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906114fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161093c91906110d5565b60405180910390a3505050565b60006109558484610669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cf57818110156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611568565b60405180910390fd5b6109ce8484848403610780565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906115fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa9061168c565b60405180910390fd5b610abe838383610e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b9061171e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c3291906110d5565b60405180910390a3610c45848484610e6d565b50505050565b610c53610778565b73ffffffffffffffffffffffffffffffffffffffff16610c71610513565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe9061178a565b60405180910390fd5b565b610cd1610e72565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d15610778565b604051610d2291906111b6565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610dfa610ebb565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e3e610778565b604051610e4b91906111b6565b60405180910390a1565b610e5d610ebb565b610e68838383610773565b505050565b505050565b610e7a61048e565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906117f6565b60405180910390fd5b565b610ec361048e565b15610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611862565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f3f578082015181840152602081019050610f24565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f6782610f05565b610f718185610f10565b9350610f81818560208601610f21565b610f8a81610f4b565b840191505092915050565b60006020820190508181036000830152610faf8184610f5c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe782610fbc565b9050919050565b610ff781610fdc565b811461100257600080fd5b50565b60008135905061101481610fee565b92915050565b6000819050919050565b61102d8161101a565b811461103857600080fd5b50565b60008135905061104a81611024565b92915050565b6000806040838503121561106757611066610fb7565b5b600061107585828601611005565b92505060206110868582860161103b565b9150509250929050565b60008115159050919050565b6110a581611090565b82525050565b60006020820190506110c0600083018461109c565b92915050565b6110cf8161101a565b82525050565b60006020820190506110ea60008301846110c6565b92915050565b60008060006060848603121561110957611108610fb7565b5b600061111786828701611005565b935050602061112886828701611005565b92505060406111398682870161103b565b9150509250925092565b600060ff82169050919050565b61115981611143565b82525050565b60006020820190506111746000830184611150565b92915050565b6000602082840312156111905761118f610fb7565b5b600061119e84828501611005565b91505092915050565b6111b081610fdc565b82525050565b60006020820190506111cb60008301846111a7565b92915050565b600080604083850312156111e8576111e7610fb7565b5b60006111f685828601611005565b925050602061120785828601611005565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061125857607f821691505b60208210810361126b5761126a611211565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112ab8261101a565b91506112b68361101a565b92508282019050808211156112ce576112cd611271565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611330602583610f10565b915061133b826112d4565b604082019050919050565b6000602082019050818103600083015261135f81611323565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113c2602683610f10565b91506113cd82611366565b604082019050919050565b600060208201905081810360008301526113f1816113b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611454602483610f10565b915061145f826113f8565b604082019050919050565b6000602082019050818103600083015261148381611447565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e6602283610f10565b91506114f18261148a565b604082019050919050565b60006020820190508181036000830152611515816114d9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611552601d83610f10565b915061155d8261151c565b602082019050919050565b6000602082019050818103600083015261158181611545565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115e4602583610f10565b91506115ef82611588565b604082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611676602383610f10565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611708602683610f10565b9150611713826116ac565b604082019050919050565b60006020820190508181036000830152611737816116fb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611774602083610f10565b915061177f8261173e565b602082019050919050565b600060208201905081810360008301526117a381611767565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006117e0601483610f10565b91506117eb826117aa565b602082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061184c601083610f10565b915061185782611816565b602082019050919050565b6000602082019050818103600083015261187b8161183f565b905091905056fea26469706673582212203060e13984865970df8db579436783ff9ff12085c56bd1e2e4993a04d5697fbb64736f6c63430008120033",
"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 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F70656E204D6574612043697479000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F4D5A0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x686 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x686 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 PUSH3 0xDF PUSH3 0xD3 PUSH3 0x125 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x12D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x11F CALLER PUSH3 0xF4 PUSH3 0x1F3 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x102 SWAP2 SWAP1 PUSH3 0x8FD JUMP JUMPDEST PUSH4 0xBEBC200 PUSH3 0x113 SWAP2 SWAP1 PUSH3 0x94E JUMP JUMPDEST PUSH3 0x1FC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xAF7 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x26E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x265 SWAP1 PUSH3 0x9FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x282 PUSH1 0x0 DUP4 DUP4 PUSH3 0x369 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x296 SWAP2 SWAP1 PUSH3 0xA1C 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x349 SWAP2 SWAP1 PUSH3 0xA68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x365 PUSH1 0x0 DUP4 DUP4 PUSH3 0x396 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x379 PUSH3 0x39B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x391 DUP4 DUP4 DUP4 PUSH3 0x3F0 PUSH1 0x20 SHL PUSH3 0x773 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x3AB PUSH3 0x3F5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x3EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x3E5 SWAP1 PUSH3 0xAD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 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 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x48E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x4A4 JUMPI PUSH3 0x4A3 PUSH3 0x446 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x50E PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x4CF JUMP JUMPDEST PUSH3 0x51A DUP7 DUP4 PUSH3 0x4CF JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x567 PUSH3 0x561 PUSH3 0x55B DUP5 PUSH3 0x532 JUMP JUMPDEST PUSH3 0x53C JUMP JUMPDEST PUSH3 0x532 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x583 DUP4 PUSH3 0x546 JUMP JUMPDEST PUSH3 0x59B PUSH3 0x592 DUP3 PUSH3 0x56E JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x4DC JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x5B2 PUSH3 0x5A3 JUMP JUMPDEST PUSH3 0x5BF DUP2 DUP5 DUP5 PUSH3 0x578 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x5E7 JUMPI PUSH3 0x5DB PUSH1 0x0 DUP3 PUSH3 0x5A8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x5C5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x636 JUMPI PUSH3 0x600 DUP2 PUSH3 0x4AA JUMP JUMPDEST PUSH3 0x60B DUP5 PUSH3 0x4BF JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x61B JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x633 PUSH3 0x62A DUP6 PUSH3 0x4BF JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x5C4 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x65B PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x63B JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x676 DUP4 DUP4 PUSH3 0x648 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x691 DUP3 PUSH3 0x40C JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x6AD JUMPI PUSH3 0x6AC PUSH3 0x417 JUMP JUMPDEST JUMPDEST PUSH3 0x6B9 DUP3 SLOAD PUSH3 0x475 JUMP JUMPDEST PUSH3 0x6C6 DUP3 DUP3 DUP6 PUSH3 0x5EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x6FE JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x6E9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x6F5 DUP6 DUP3 PUSH3 0x668 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x765 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x70E DUP7 PUSH3 0x4AA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x738 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x711 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x758 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x754 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x648 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x7FB JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x7D3 JUMPI PUSH3 0x7D2 PUSH3 0x76D JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x7E3 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x7F3 DUP6 PUSH3 0x79C JUMP JUMPDEST SWAP5 POP PUSH3 0x7B3 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x816 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x8E9 JUMP JUMPDEST DUP2 PUSH3 0x826 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x8E9 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x83F JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x84A JUMPI PUSH3 0x880 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x8E9 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x85F JUMPI PUSH3 0x85E PUSH3 0x76D JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x879 JUMPI PUSH3 0x878 PUSH3 0x76D JUMP JUMPDEST JUMPDEST POP PUSH3 0x8E9 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x8BA JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x8B4 JUMPI PUSH3 0x8B3 PUSH3 0x76D JUMP JUMPDEST JUMPDEST PUSH3 0x8E9 JUMP JUMPDEST PUSH3 0x8C9 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x7A9 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x8E3 JUMPI PUSH3 0x8E2 PUSH3 0x76D JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x90A DUP3 PUSH3 0x532 JUMP JUMPDEST SWAP2 POP PUSH3 0x917 DUP4 PUSH3 0x8F0 JUMP JUMPDEST SWAP3 POP PUSH3 0x946 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x804 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x95B DUP3 PUSH3 0x532 JUMP JUMPDEST SWAP2 POP PUSH3 0x968 DUP4 PUSH3 0x532 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH3 0x978 DUP2 PUSH3 0x532 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH3 0x992 JUMPI PUSH3 0x991 PUSH3 0x76D JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x9E2 PUSH1 0x1F DUP4 PUSH3 0x999 JUMP JUMPDEST SWAP2 POP PUSH3 0x9EF DUP3 PUSH3 0x9AA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0xA15 DUP2 PUSH3 0x9D3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xA29 DUP3 PUSH3 0x532 JUMP JUMPDEST SWAP2 POP PUSH3 0xA36 DUP4 PUSH3 0x532 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH3 0xA51 JUMPI PUSH3 0xA50 PUSH3 0x76D JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0xA62 DUP2 PUSH3 0x532 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0xA7F PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0xA57 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xABD PUSH1 0x10 DUP4 PUSH3 0x999 JUMP JUMPDEST SWAP2 POP PUSH3 0xACA DUP3 PUSH3 0xA85 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0xAF0 DUP2 PUSH3 0xAAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18B8 DUP1 PUSH3 0xB07 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 0x10B 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 0x284 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x302 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x332 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x266 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x204 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x34E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0xF95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x3E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH2 0x403 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x196 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x10F0 JUMP JUMPDEST PUSH2 0x40D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH2 0x43C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x115F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x445 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x202 PUSH2 0x47C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH2 0x48E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x117A JUMP JUMPDEST PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25A PUSH2 0x4ED JUMP JUMPDEST STOP JUMPDEST PUSH2 0x264 PUSH2 0x501 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26E PUSH2 0x513 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x53D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x299 SWAP2 SWAP1 PUSH2 0xF95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2BC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B7 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x11D1 JUMP JUMPDEST PUSH2 0x669 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x117A JUMP JUMPDEST PUSH2 0x6F0 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x35D SWAP1 PUSH2 0x1240 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 0x389 SWAP1 PUSH2 0x1240 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3D6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3AB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3D6 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 0x3B9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3EB PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x3F8 DUP2 DUP6 DUP6 PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x418 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x425 DUP6 DUP3 DUP6 PUSH2 0x949 JUMP JUMPDEST PUSH2 0x430 DUP6 DUP6 DUP6 PUSH2 0x9D5 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 DUP1 PUSH2 0x450 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x471 DUP2 DUP6 DUP6 PUSH2 0x462 DUP6 DUP10 PUSH2 0x669 JUMP JUMPDEST PUSH2 0x46C SWAP2 SWAP1 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x484 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x48C PUSH2 0xCC9 JUMP JUMPDEST 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 0x4F5 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x4FF PUSH1 0x0 PUSH2 0xD2C JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x509 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x511 PUSH2 0xDF2 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 0x54C SWAP1 PUSH2 0x1240 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 0x578 SWAP1 PUSH2 0x1240 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x59A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5C5 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 0x5A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5DA PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5E8 DUP3 DUP7 PUSH2 0x669 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x62D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x624 SWAP1 PUSH2 0x1346 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x63A DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x651 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x65E DUP2 DUP6 DUP6 PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x6F8 PUSH2 0xC4B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP1 PUSH2 0x13D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0xD2C JUMP JUMPDEST 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 SUB PUSH2 0x7EF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E6 SWAP1 PUSH2 0x146A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x85E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x855 SWAP1 PUSH2 0x14FC 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 0x93C SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x955 DUP5 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x9CF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B8 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9CE DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x780 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA3B SWAP1 PUSH2 0x15FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xAB3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAAA SWAP1 PUSH2 0x168C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xABE DUP4 DUP4 DUP4 PUSH2 0xE55 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 0xB44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB3B SWAP1 PUSH2 0x171E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC32 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xC45 DUP5 DUP5 DUP5 PUSH2 0xE6D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xC53 PUSH2 0x778 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC71 PUSH2 0x513 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCBE SWAP1 PUSH2 0x178A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xCD1 PUSH2 0xE72 JUMP 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 0xD15 PUSH2 0x778 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD22 SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xDFA PUSH2 0xEBB JUMP 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 0xE3E PUSH2 0x778 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4B SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0xE5D PUSH2 0xEBB JUMP JUMPDEST PUSH2 0xE68 DUP4 DUP4 DUP4 PUSH2 0x773 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xE7A PUSH2 0x48E JUMP JUMPDEST PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB0 SWAP1 PUSH2 0x17F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xEC3 PUSH2 0x48E JUMP JUMPDEST ISZERO PUSH2 0xF03 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFA SWAP1 PUSH2 0x1862 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF3F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF24 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF67 DUP3 PUSH2 0xF05 JUMP JUMPDEST PUSH2 0xF71 DUP2 DUP6 PUSH2 0xF10 JUMP JUMPDEST SWAP4 POP PUSH2 0xF81 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF21 JUMP JUMPDEST PUSH2 0xF8A DUP2 PUSH2 0xF4B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAF DUP2 DUP5 PUSH2 0xF5C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFE7 DUP3 PUSH2 0xFBC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFF7 DUP2 PUSH2 0xFDC JUMP JUMPDEST DUP2 EQ PUSH2 0x1002 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1014 DUP2 PUSH2 0xFEE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x102D DUP2 PUSH2 0x101A JUMP JUMPDEST DUP2 EQ PUSH2 0x1038 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x104A DUP2 PUSH2 0x1024 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1067 JUMPI PUSH2 0x1066 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1075 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1086 DUP6 DUP3 DUP7 ADD PUSH2 0x103B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A5 DUP2 PUSH2 0x1090 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10C0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x109C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10CF DUP2 PUSH2 0x101A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10EA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10C6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1109 JUMPI PUSH2 0x1108 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1117 DUP7 DUP3 DUP8 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1128 DUP7 DUP3 DUP8 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1139 DUP7 DUP3 DUP8 ADD PUSH2 0x103B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1159 DUP2 PUSH2 0x1143 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1174 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1150 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1190 JUMPI PUSH2 0x118F PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x119E DUP5 DUP3 DUP6 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x11B0 DUP2 PUSH2 0xFDC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11F6 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1207 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1258 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x126B JUMPI PUSH2 0x126A PUSH2 0x1211 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 PUSH1 0x0 PUSH2 0x12AB DUP3 PUSH2 0x101A JUMP JUMPDEST SWAP2 POP PUSH2 0x12B6 DUP4 PUSH2 0x101A JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CD PUSH2 0x1271 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1330 PUSH1 0x25 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x133B DUP3 PUSH2 0x12D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x135F DUP2 PUSH2 0x1323 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13C2 PUSH1 0x26 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x13CD DUP3 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F1 DUP2 PUSH2 0x13B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1454 PUSH1 0x24 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x145F DUP3 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1483 DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14E6 PUSH1 0x22 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x14F1 DUP3 PUSH2 0x148A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1515 DUP2 PUSH2 0x14D9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1552 PUSH1 0x1D DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x155D DUP3 PUSH2 0x151C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1581 DUP2 PUSH2 0x1545 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E4 PUSH1 0x25 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x15EF DUP3 PUSH2 0x1588 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1613 DUP2 PUSH2 0x15D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1676 PUSH1 0x23 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1681 DUP3 PUSH2 0x161A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x16A5 DUP2 PUSH2 0x1669 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1708 PUSH1 0x26 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1713 DUP3 PUSH2 0x16AC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1737 DUP2 PUSH2 0x16FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1774 PUSH1 0x20 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x177F DUP3 PUSH2 0x173E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17A3 DUP2 PUSH2 0x1767 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E0 PUSH1 0x14 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17EB DUP3 PUSH2 0x17AA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x180F DUP2 PUSH2 0x17D3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x184C PUSH1 0x10 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1857 DUP3 PUSH2 0x1816 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x187B DUP2 PUSH2 0x183F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS PUSH1 0xE1 CODECOPY DUP5 DUP7 MSIZE PUSH17 0xDF8DB579436783FF9FF12085C56BD1E2E4 SWAP10 GASPRICE DIV 0xD5 PUSH10 0x7FBB64736F6C63430008 SLT STOP CALLER ",
"sourceMap": "293:500:6:-:0;;;349:109;;;;;;;;;;1980:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;1006:5:1;996:7;;:15;;;;;;;;;;;;;;;;;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;404:47:6::1;410:10;440;:8;;;:10;;:::i;:::-;434:2;:16;;;;:::i;:::-;422:9;:28;;;;:::i;:::-;404:5;;;:47;;:::i;:::-;293:500:::0;;640:96:5;693:7;719:10;712:17;;640:96;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;3104:91:2:-;3162:5;3186:2;3179:9;;3104:91;:::o;8520:535::-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;598:193:6:-;1239:19:1;:17;;;:19;;:::i;:::-;740:44:6::1;767:4;773:2;777:6;740:26;;;;;:44;;:::i;:::-;598:193:::0;;;:::o;12752:90:2:-;;;;:::o;1767:106:1:-;1837:8;:6;;;:8;;:::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;12073:91:2:-;;;;:::o;1615:84:1:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:180::-;5282:77;5279:1;5272:88;5379:4;5376:1;5369:15;5403:4;5400:1;5393:15;5420:102;5462:8;5509:5;5506:1;5502:13;5481:34;;5420:102;;;:::o;5528:848::-;5589:5;5596:4;5620:6;5611:15;;5644:5;5635:14;;5658:712;5679:1;5669:8;5666:15;5658:712;;;5774:4;5769:3;5765:14;5759:4;5756:24;5753:50;;;5783:18;;:::i;:::-;5753:50;5833:1;5823:8;5819:16;5816:451;;;6248:4;6241:5;6237:16;6228:25;;5816:451;6298:4;6292;6288:15;6280:23;;6328:32;6351:8;6328:32;:::i;:::-;6316:44;;5658:712;;;5528:848;;;;;;;:::o;6382:1073::-;6436:5;6627:8;6617:40;;6648:1;6639:10;;6650:5;;6617:40;6676:4;6666:36;;6693:1;6684:10;;6695:5;;6666:36;6762:4;6810:1;6805:27;;;;6846:1;6841:191;;;;6755:277;;6805:27;6823:1;6814:10;;6825:5;;;6841:191;6886:3;6876:8;6873:17;6870:43;;;6893:18;;:::i;:::-;6870:43;6942:8;6939:1;6935:16;6926:25;;6977:3;6970:5;6967:14;6964:40;;;6984:18;;:::i;:::-;6964:40;7017:5;;;6755:277;;7141:2;7131:8;7128:16;7122:3;7116:4;7113:13;7109:36;7091:2;7081:8;7078:16;7073:2;7067:4;7064:12;7060:35;7044:111;7041:246;;;7197:8;7191:4;7187:19;7178:28;;7232:3;7225:5;7222:14;7219:40;;;7239:18;;:::i;:::-;7219:40;7272:5;;7041:246;7312:42;7350:3;7340:8;7334:4;7331:1;7312:42;:::i;:::-;7297:57;;;;7386:4;7381:3;7377:14;7370:5;7367:25;7364:51;;;7395:18;;:::i;:::-;7364:51;7444:4;7437:5;7433:16;7424:25;;6382:1073;;;;;;:::o;7461:86::-;7496:7;7536:4;7529:5;7525:16;7514:27;;7461:86;;;:::o;7553:281::-;7611:5;7635:23;7653:4;7635:23;:::i;:::-;7627:31;;7679:25;7695:8;7679:25;:::i;:::-;7667:37;;7723:104;7760:66;7750:8;7744:4;7723:104;:::i;:::-;7714:113;;7553:281;;;;:::o;7840:410::-;7880:7;7903:20;7921:1;7903:20;:::i;:::-;7898:25;;7937:20;7955:1;7937:20;:::i;:::-;7932:25;;7992:1;7989;7985:9;8014:30;8032:11;8014:30;:::i;:::-;8003:41;;8193:1;8184:7;8180:15;8177:1;8174:22;8154:1;8147:9;8127:83;8104:139;;8223:18;;:::i;:::-;8104:139;7888:362;7840:410;;;;:::o;8256:169::-;8340:11;8374:6;8369:3;8362:19;8414:4;8409:3;8405:14;8390:29;;8256:169;;;;:::o;8431:181::-;8571:33;8567:1;8559:6;8555:14;8548:57;8431:181;:::o;8618:366::-;8760:3;8781:67;8845:2;8840:3;8781:67;:::i;:::-;8774:74;;8857:93;8946:3;8857:93;:::i;:::-;8975:2;8970:3;8966:12;8959:19;;8618:366;;;:::o;8990:419::-;9156:4;9194:2;9183:9;9179:18;9171:26;;9243:9;9237:4;9233:20;9229:1;9218:9;9214:17;9207:47;9271:131;9397:4;9271:131;:::i;:::-;9263:139;;8990:419;;;:::o;9415:191::-;9455:3;9474:20;9492:1;9474:20;:::i;:::-;9469:25;;9508:20;9526:1;9508:20;:::i;:::-;9503:25;;9551:1;9548;9544:9;9537:16;;9572:3;9569:1;9566:10;9563:36;;;9579:18;;:::i;:::-;9563:36;9415:191;;;;:::o;9612:118::-;9699:24;9717:5;9699:24;:::i;:::-;9694:3;9687:37;9612:118;;:::o;9736:222::-;9829:4;9867:2;9856:9;9852:18;9844:26;;9880:71;9948:1;9937:9;9933:17;9924:6;9880:71;:::i;:::-;9736:222;;;;:::o;9964:166::-;10104:18;10100:1;10092:6;10088:14;10081:42;9964:166;:::o;10136:366::-;10278:3;10299:67;10363:2;10358:3;10299:67;:::i;:::-;10292:74;;10375:93;10464:3;10375:93;:::i;:::-;10493:2;10488:3;10484:12;10477:19;;10136:366;;;:::o;10508:419::-;10674:4;10712:2;10701:9;10697:18;10689:26;;10761:9;10755:4;10751:20;10747:1;10736:9;10732:17;10725:47;10789:131;10915:4;10789:131;:::i;:::-;10781:139;;10508:419;;;:::o;293:500:6:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_806": {
"entryPoint": 3693,
"id": 806,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_741": {
"entryPoint": 1920,
"id": 741,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1002": {
"entryPoint": 3669,
"id": 1002,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_795": {
"entryPoint": 1907,
"id": 795,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOwner_54": {
"entryPoint": 3147,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_922": {
"entryPoint": 1912,
"id": 922,
"parameterSlots": 0,
"returnSlots": 1
},
"@_pause_203": {
"entryPoint": 3570,
"id": 203,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requireNotPaused_176": {
"entryPoint": 3771,
"id": 176,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requirePaused_187": {
"entryPoint": 3698,
"id": 187,
"parameterSlots": 0,
"returnSlots": 0
},
"@_spendAllowance_784": {
"entryPoint": 2377,
"id": 784,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 3372,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_567": {
"entryPoint": 2517,
"id": 567,
"parameterSlots": 3,
"returnSlots": 0
},
"@_unpause_219": {
"entryPoint": 3273,
"id": 219,
"parameterSlots": 0,
"returnSlots": 0
},
"@allowance_362": {
"entryPoint": 1641,
"id": 362,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_387": {
"entryPoint": 992,
"id": 387,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_319": {
"entryPoint": 1189,
"id": 319,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_295": {
"entryPoint": 1084,
"id": 295,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_490": {
"entryPoint": 1487,
"id": 490,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_449": {
"entryPoint": 1093,
"id": 449,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_275": {
"entryPoint": 846,
"id": 275,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 1299,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_972": {
"entryPoint": 1281,
"id": 972,
"parameterSlots": 0,
"returnSlots": 0
},
"@paused_164": {
"entryPoint": 1166,
"id": 164,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 1261,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_285": {
"entryPoint": 1341,
"id": 285,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_305": {
"entryPoint": 1027,
"id": 305,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_420": {
"entryPoint": 1037,
"id": 420,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_91": {
"entryPoint": 1776,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_344": {
"entryPoint": 1606,
"id": 344,
"parameterSlots": 2,
"returnSlots": 1
},
"@unpause_981": {
"entryPoint": 1148,
"id": 981,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 4101,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 4155,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4474,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 4561,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 4336,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 4176,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4519,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 4252,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3932,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5737,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5045,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5337,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5883,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6207,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5991,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5591,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5191,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4899,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 4294,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 4432,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 4534,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 4267,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3989,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5772,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6134,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5080,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5480,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5918,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6242,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6026,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5626,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5226,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4934,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4309,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 4447,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 3845,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3856,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4768,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4060,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4240,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4028,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4122,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 4419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3873,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 4672,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4721,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4625,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 3915,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 5658,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a": {
"entryPoint": 6058,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 4966,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 5258,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 5404,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 5804,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 6166,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 5950,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 5512,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 5112,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 4820,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 4078,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 4132,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:18006:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:7"
},
"nodeType": "YulFunctionCall",
"src": "87:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:7",
"type": ""
}
],
"src": "7:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:7"
},
"nodeType": "YulFunctionCall",
"src": "218:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:7"
},
{
"nodeType": "YulAssignment",
"src": "246:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:7"
},
"nodeType": "YulFunctionCall",
"src": "261:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:7",
"type": ""
}
],
"src": "112:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:7"
},
"nodeType": "YulFunctionCall",
"src": "449:11:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:7"
},
"nodeType": "YulFunctionCall",
"src": "468:11:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:7"
},
"nodeType": "YulFunctionCall",
"src": "462:18:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:7"
},
"nodeType": "YulFunctionCall",
"src": "442:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:7"
},
"nodeType": "YulFunctionCall",
"src": "386:13:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:7"
},
"nodeType": "YulFunctionCall",
"src": "407:10:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:7",
"statements": []
},
"src": "378:113:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "507:16:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:7"
},
"nodeType": "YulFunctionCall",
"src": "500:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:7"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:7",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:7",
"type": ""
}
],
"src": "287:246:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:7"
},
"nodeType": "YulFunctionCall",
"src": "611:14:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:7"
},
"nodeType": "YulFunctionCall",
"src": "627:7:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:7"
},
"nodeType": "YulFunctionCall",
"src": "607:28:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:7"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:7",
"type": ""
}
],
"src": "539:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:7"
},
"nodeType": "YulFunctionCall",
"src": "763:39:7"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:7"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:7"
},
"nodeType": "YulFunctionCall",
"src": "818:71:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:7"
},
"nodeType": "YulFunctionCall",
"src": "933:16:7"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:7"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:7"
},
"nodeType": "YulFunctionCall",
"src": "898:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:7"
},
{
"nodeType": "YulAssignment",
"src": "972:46:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:7"
},
"nodeType": "YulFunctionCall",
"src": "988:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:7"
},
"nodeType": "YulFunctionCall",
"src": "979:39:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:7"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:7",
"type": ""
}
],
"src": "647:377:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:7",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:7"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:7"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:7"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250: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": "1120:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:7",
"type": ""
}
],
"src": "1030:313:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:7"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:7"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:7"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:7",
"type": ""
}
],
"src": "1349:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:7"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:7"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:7",
"type": ""
}
],
"src": "1676:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:7",
"type": ""
}
],
"src": "1808:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:7"
},
"nodeType": "YulIf",
"src": "1963:63:7"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:7",
"type": ""
}
],
"src": "1910:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:7"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:7"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:7"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:7"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:7",
"type": ""
}
],
"src": "2038:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:7",
"type": ""
}
],
"src": "2183:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:7"
},
"nodeType": "YulIf",
"src": "2319:63:7"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:7",
"type": ""
}
],
"src": "2266:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:7"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:7"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:7"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:7"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:7",
"type": ""
}
],
"src": "2394:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:7"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:7"
},
"nodeType": "YulIf",
"src": "2632:119:7"
},
{
"nodeType": "YulBlock",
"src": "2761:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:7"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:7"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:7",
"type": ""
}
],
"src": "2539:474:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:7"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:7",
"type": ""
}
],
"src": "3019:90:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:7"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:7"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:7"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:7"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:7",
"type": ""
}
],
"src": "3115:109:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:7"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:7"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:7"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:7",
"type": ""
}
],
"src": "3230:210:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:7",
"type": ""
}
],
"src": "3446:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:7"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:7",
"type": ""
}
],
"src": "3570:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:519:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3944:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3946:77:7"
},
"nodeType": "YulFunctionCall",
"src": "3946:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "3946:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3919:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3915:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3915:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3940:2:7",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3911:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3911:32:7"
},
"nodeType": "YulIf",
"src": "3908:119:7"
},
{
"nodeType": "YulBlock",
"src": "4037:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4052:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4066:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4056:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4081:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4116:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4127:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4112:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4112:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4136:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4091:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4091:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4081:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4164:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4179:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4193:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4183:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4209:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4244:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4255:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4240:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4240:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4264:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4219:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4219:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4209:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4292:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4307:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:2:7",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4311:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4337:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4372:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4383:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4368:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4392:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4347:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4347:53:7"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4337:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3852:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3863:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3875:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3883:6:7",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3891:6:7",
"type": ""
}
],
"src": "3798:619:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4466:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4476:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4491:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4498:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4487:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4487:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4476:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4448:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4458:7:7",
"type": ""
}
],
"src": "4423:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4576:51:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4593:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4614:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4598:15:7"
},
"nodeType": "YulFunctionCall",
"src": "4598:22:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4586:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4586:35:7"
},
"nodeType": "YulExpressionStatement",
"src": "4586:35:7"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4564:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4571:3:7",
"type": ""
}
],
"src": "4515:112:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4727:120:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4737:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4749:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4760:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4745:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4745:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4737:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4813:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4826:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4837:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4822:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4822:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4773:39:7"
},
"nodeType": "YulFunctionCall",
"src": "4773:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "4773:67:7"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4699:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4711:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4722:4:7",
"type": ""
}
],
"src": "4633:214:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4919:263:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4965:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4967:77:7"
},
"nodeType": "YulFunctionCall",
"src": "4967:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "4967:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4940:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4949:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4936:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4936:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4961:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4932:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4932:32:7"
},
"nodeType": "YulIf",
"src": "4929:119:7"
},
{
"nodeType": "YulBlock",
"src": "5058:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5073:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5087:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5077:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5102:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5137:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5148:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5133:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5133:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5157:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5112:20:7"
},
"nodeType": "YulFunctionCall",
"src": "5112:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5102:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4889:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4900:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4912:6:7",
"type": ""
}
],
"src": "4853:329:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5253:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5270:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5293:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5275:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5275:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5263:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5263:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "5263:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5241:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5248:3:7",
"type": ""
}
],
"src": "5188:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5410:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5420:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5432:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5443:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5428:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5428:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5420:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5500:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5513:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5524:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5509:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5509:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5456:43:7"
},
"nodeType": "YulFunctionCall",
"src": "5456:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "5456:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5382:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5394:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5405:4:7",
"type": ""
}
],
"src": "5312:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5623:391:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5669:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5671:77:7"
},
"nodeType": "YulFunctionCall",
"src": "5671:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "5671:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5644:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5653:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5640:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5640:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5665:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5636:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5636:32:7"
},
"nodeType": "YulIf",
"src": "5633:119:7"
},
{
"nodeType": "YulBlock",
"src": "5762:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5777:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5791:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5781:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5806:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5841:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5852:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5837:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5837:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5861:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5816:20:7"
},
"nodeType": "YulFunctionCall",
"src": "5816:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5806:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5889:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5904:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5918:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5908:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5934:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5969:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5980:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5965:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5965:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5989:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5944:20:7"
},
"nodeType": "YulFunctionCall",
"src": "5944:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5934:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5585:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5596:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5608:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5616:6:7",
"type": ""
}
],
"src": "5540:474:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6048:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6065:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6068:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6058:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6058:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "6058:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6162:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6165:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6155:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6155:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6155:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6186:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6189:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6179:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6179:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6179:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6020:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6257:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6267:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6281:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6287:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6277:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6277:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6267:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6298:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6328:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6334:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6324:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6324:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6302:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6375:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6389:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6403:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6411:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6399:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6399:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6389:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6355:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6348:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6348:26:7"
},
"nodeType": "YulIf",
"src": "6345:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6478:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6492:16:7"
},
"nodeType": "YulFunctionCall",
"src": "6492:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "6492:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6442:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6465:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6473:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6462:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6462:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6439:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6439:38:7"
},
"nodeType": "YulIf",
"src": "6436:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6241:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6250:6:7",
"type": ""
}
],
"src": "6206:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6560:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6577:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6580:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6570:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6570:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "6570:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6674:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6677:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6667:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6667:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6667:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6698:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6701:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6691:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6691:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6691:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6532:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6762:147:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6772:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6795:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6777:17:7"
},
"nodeType": "YulFunctionCall",
"src": "6777:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6772:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6806:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6829:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6811:17:7"
},
"nodeType": "YulFunctionCall",
"src": "6811:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6806:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6840:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6851:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6854:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6847:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6847:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6840:3:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6880:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6882:16:7"
},
"nodeType": "YulFunctionCall",
"src": "6882:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "6882:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6872:1:7"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6875:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6869:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6869:10:7"
},
"nodeType": "YulIf",
"src": "6866:36:7"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6749:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6752:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6758:3:7",
"type": ""
}
],
"src": "6718:191:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7021:118:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7043:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7051:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7039:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7039:14:7"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7055:34:7",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7032:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7032:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "7032:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7111:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7119:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7107:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7107:15:7"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7124:7:7",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7100:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7100:32:7"
},
"nodeType": "YulExpressionStatement",
"src": "7100:32:7"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7013:6:7",
"type": ""
}
],
"src": "6915:224:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7291:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7301:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7367:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7372:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7308:58:7"
},
"nodeType": "YulFunctionCall",
"src": "7308:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7301:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7473:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7384:88:7"
},
"nodeType": "YulFunctionCall",
"src": "7384:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "7384:93:7"
},
{
"nodeType": "YulAssignment",
"src": "7486:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7497:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7502:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7493:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7493:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7486:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7279:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7287:3:7",
"type": ""
}
],
"src": "7145:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7688:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7698:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7710:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7721:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7706:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7706:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7698:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7745:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7756:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7741:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7741:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7764:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7770:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7760:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7760:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7734:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7734:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "7734:47:7"
},
{
"nodeType": "YulAssignment",
"src": "7790:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7924:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7798:124:7"
},
"nodeType": "YulFunctionCall",
"src": "7798:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7790:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7668:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7683:4:7",
"type": ""
}
],
"src": "7517:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8048:119:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8070:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8078:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8066:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8066:14:7"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8082:34:7",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8059:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8059:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "8059:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8138:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8146:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8134:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8134:15:7"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8151:8:7",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8127:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8127:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "8127:33:7"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8040:6:7",
"type": ""
}
],
"src": "7942:225:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8319:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8329:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8395:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8400:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8336:58:7"
},
"nodeType": "YulFunctionCall",
"src": "8336:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8329:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8501:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "8412:88:7"
},
"nodeType": "YulFunctionCall",
"src": "8412:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "8412:93:7"
},
{
"nodeType": "YulAssignment",
"src": "8514:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8525:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8530:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8521:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8521:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8514:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8307:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8315:3:7",
"type": ""
}
],
"src": "8173:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8716:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8726:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8738:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8749:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8734:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8734:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8726:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8773:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8784:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8769:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8769:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8792:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8798:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8788:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8788:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8762:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8762:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8762:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8818:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8952:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8826:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8826:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8818:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8696:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8711:4:7",
"type": ""
}
],
"src": "8545:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9076:117:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9098:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9106:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9094:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9094:14:7"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9110:34:7",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9087:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9087:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "9087:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9166:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9174:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9162:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9162:15:7"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9179:6:7",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9155:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9155:31:7"
},
"nodeType": "YulExpressionStatement",
"src": "9155:31:7"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9068:6:7",
"type": ""
}
],
"src": "8970:223:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9345:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9355:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9421:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9426:2:7",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9362:58:7"
},
"nodeType": "YulFunctionCall",
"src": "9362:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9355:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9527:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "9438:88:7"
},
"nodeType": "YulFunctionCall",
"src": "9438:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "9438:93:7"
},
{
"nodeType": "YulAssignment",
"src": "9540:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9551:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9556:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9547:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9547:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9540:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9333:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9341:3:7",
"type": ""
}
],
"src": "9199:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9742:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9752:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9764:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9775:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9760:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9760:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9752:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9799:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9810:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9795:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9795:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9818:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9824:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9814:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9814:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9788:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9788:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "9788:47:7"
},
{
"nodeType": "YulAssignment",
"src": "9844:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9978:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9852:124:7"
},
"nodeType": "YulFunctionCall",
"src": "9852:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9844:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9722:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9737:4:7",
"type": ""
}
],
"src": "9571:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10102:115:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10124:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10132:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10120:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10120:14:7"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10136:34:7",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10113:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10113:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "10113:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10192:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10200:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10188:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10188:15:7"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10205:4:7",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10181:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10181:29:7"
},
"nodeType": "YulExpressionStatement",
"src": "10181:29:7"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10094:6:7",
"type": ""
}
],
"src": "9996:221:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10369:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10379:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10445:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10450:2:7",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10386:58:7"
},
"nodeType": "YulFunctionCall",
"src": "10386:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10379:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10551:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "10462:88:7"
},
"nodeType": "YulFunctionCall",
"src": "10462:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "10462:93:7"
},
{
"nodeType": "YulAssignment",
"src": "10564:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10575:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10580:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10571:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10571:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10564:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10357:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10365:3:7",
"type": ""
}
],
"src": "10223:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10766:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10776:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10788:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10799:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10784:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10784:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10776:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10823:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10834:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10819:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10819:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10842:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10848:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10838:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10838:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10812:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10812:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10812:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10868:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11002:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10876:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10876:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10868:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10746:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10761:4:7",
"type": ""
}
],
"src": "10595:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11126:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11148:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11156:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11144:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11144:14:7"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11160:31:7",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11137:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11137:55:7"
},
"nodeType": "YulExpressionStatement",
"src": "11137:55:7"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11118:6:7",
"type": ""
}
],
"src": "11020:179:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11351:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11361:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11427:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11432:2:7",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11368:58:7"
},
"nodeType": "YulFunctionCall",
"src": "11368:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11361:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11533:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "11444:88:7"
},
"nodeType": "YulFunctionCall",
"src": "11444:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "11444:93:7"
},
{
"nodeType": "YulAssignment",
"src": "11546:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11557:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11562:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11553:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11553:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11546:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11339:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11347:3:7",
"type": ""
}
],
"src": "11205:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11748:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11758:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11770:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11781:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11766:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11766:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11758:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11805:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11816:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11801:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11801:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11824:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11830:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11820:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11820:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11794:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11794:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "11794:47:7"
},
{
"nodeType": "YulAssignment",
"src": "11850:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11984:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11858:124:7"
},
"nodeType": "YulFunctionCall",
"src": "11858:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11850:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11728:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11743:4:7",
"type": ""
}
],
"src": "11577:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12108:118:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12130:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12138:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12126:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12126:14:7"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12142:34:7",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12119:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12119:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "12119:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12198:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12206:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12194:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12194:15:7"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12211:7:7",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12187:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12187:32:7"
},
"nodeType": "YulExpressionStatement",
"src": "12187:32:7"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12100:6:7",
"type": ""
}
],
"src": "12002:224:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12378:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12388:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12454:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12459:2:7",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12395:58:7"
},
"nodeType": "YulFunctionCall",
"src": "12395:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12388:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12560:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "12471:88:7"
},
"nodeType": "YulFunctionCall",
"src": "12471:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "12471:93:7"
},
{
"nodeType": "YulAssignment",
"src": "12573:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12584:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12589:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12580:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12580:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12573:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12366:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12374:3:7",
"type": ""
}
],
"src": "12232:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12775:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12785:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12797:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12808:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12793:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12793:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12785:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12832:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12843:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12828:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12828:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12851:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12857:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12847:3:7"
},
"nodeType": "YulFunctionCall",
"src": "12847:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12821:6:7"
},
"nodeType": "YulFunctionCall",
"src": "12821:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "12821:47:7"
},
{
"nodeType": "YulAssignment",
"src": "12877:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13011:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12885:124:7"
},
"nodeType": "YulFunctionCall",
"src": "12885:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12877:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12755:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12770:4:7",
"type": ""
}
],
"src": "12604:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13135:116:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13157:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13165:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13153:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13153:14:7"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13169:34:7",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13146:6:7"
},
"nodeType": "YulFunctionCall",
"src": "13146:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "13146:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13225:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13233:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13221:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13221:15:7"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13238:5:7",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13214:6:7"
},
"nodeType": "YulFunctionCall",
"src": "13214:30:7"
},
"nodeType": "YulExpressionStatement",
"src": "13214:30:7"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13127:6:7",
"type": ""
}
],
"src": "13029:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13403:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13413:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13479:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13484:2:7",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13420:58:7"
},
"nodeType": "YulFunctionCall",
"src": "13420:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13413:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13585:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "13496:88:7"
},
"nodeType": "YulFunctionCall",
"src": "13496:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "13496:93:7"
},
{
"nodeType": "YulAssignment",
"src": "13598:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13609:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13614:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13605:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13605:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13598:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13391:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13399:3:7",
"type": ""
}
],
"src": "13257:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13800:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13810:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13822:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13833:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13818:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13818:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13810:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13857:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13868:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13853:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13853:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13876:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13882:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13872:3:7"
},
"nodeType": "YulFunctionCall",
"src": "13872:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13846:6:7"
},
"nodeType": "YulFunctionCall",
"src": "13846:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "13846:47:7"
},
{
"nodeType": "YulAssignment",
"src": "13902:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14036:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13910:124:7"
},
"nodeType": "YulFunctionCall",
"src": "13910:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13902:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13780:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13795:4:7",
"type": ""
}
],
"src": "13629:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14160:119:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14182:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14190:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14178:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14178:14:7"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14194:34:7",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14171:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14171:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "14171:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14250:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14258:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14246:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14246:15:7"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14263:8:7",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14239:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14239:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "14239:33:7"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14152:6:7",
"type": ""
}
],
"src": "14054:225:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14431:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14441:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14507:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14512:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14448:58:7"
},
"nodeType": "YulFunctionCall",
"src": "14448:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14441:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14613:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "14524:88:7"
},
"nodeType": "YulFunctionCall",
"src": "14524:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "14524:93:7"
},
{
"nodeType": "YulAssignment",
"src": "14626:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14637:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14642:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14633:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14633:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14626:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14419:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14427:3:7",
"type": ""
}
],
"src": "14285:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14828:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14838:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14850:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14861:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14846:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14846:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14838:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14885:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14896:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14881:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14881:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14904:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14910:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14900:3:7"
},
"nodeType": "YulFunctionCall",
"src": "14900:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14874:6:7"
},
"nodeType": "YulFunctionCall",
"src": "14874:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "14874:47:7"
},
{
"nodeType": "YulAssignment",
"src": "14930:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15064:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14938:124:7"
},
"nodeType": "YulFunctionCall",
"src": "14938:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14930:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14808:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14823:4:7",
"type": ""
}
],
"src": "14657:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15188:76:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15210:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15218:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15206:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15206:14:7"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15222:34:7",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15199:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15199:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "15199:58:7"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15180:6:7",
"type": ""
}
],
"src": "15082:182:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15416:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15426:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15492:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15497:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15433:58:7"
},
"nodeType": "YulFunctionCall",
"src": "15433:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15426:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15598:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "15509:88:7"
},
"nodeType": "YulFunctionCall",
"src": "15509:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "15509:93:7"
},
{
"nodeType": "YulAssignment",
"src": "15611:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15622:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15627:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15618:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15618:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15611:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15404:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15412:3:7",
"type": ""
}
],
"src": "15270:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15813:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15823:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15835:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15846:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15831:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15831:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15823:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15870:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15881:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15866:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15866:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15889:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15895:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15885:3:7"
},
"nodeType": "YulFunctionCall",
"src": "15885:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15859:6:7"
},
"nodeType": "YulFunctionCall",
"src": "15859:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "15859:47:7"
},
{
"nodeType": "YulAssignment",
"src": "15915:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16049:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15923:124:7"
},
"nodeType": "YulFunctionCall",
"src": "15923:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15915:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15793:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15808:4:7",
"type": ""
}
],
"src": "15642:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16173:64:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16195:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16203:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16191:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16191:14:7"
},
{
"hexValue": "5061757361626c653a206e6f7420706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16207:22:7",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16184:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16184:46:7"
},
"nodeType": "YulExpressionStatement",
"src": "16184:46:7"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16165:6:7",
"type": ""
}
],
"src": "16067:170:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16389:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16399:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16465:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16470:2:7",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16406:58:7"
},
"nodeType": "YulFunctionCall",
"src": "16406:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16399:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16571:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "16482:88:7"
},
"nodeType": "YulFunctionCall",
"src": "16482:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "16482:93:7"
},
{
"nodeType": "YulAssignment",
"src": "16584:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16595:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16600:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16591:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16591:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16584:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16377:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16385:3:7",
"type": ""
}
],
"src": "16243:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16786:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16796:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16808:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16819:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16804:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16804:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16796:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16843:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16854:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16839:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16839:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16862:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16868:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16858:3:7"
},
"nodeType": "YulFunctionCall",
"src": "16858:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16832:6:7"
},
"nodeType": "YulFunctionCall",
"src": "16832:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "16832:47:7"
},
{
"nodeType": "YulAssignment",
"src": "16888:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17022:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16896:124:7"
},
"nodeType": "YulFunctionCall",
"src": "16896:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16888:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16766:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16781:4:7",
"type": ""
}
],
"src": "16615:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17146:60:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17168:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17176:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17164:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17164:14:7"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17180:18:7",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17157:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17157:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "17157:42:7"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17138:6:7",
"type": ""
}
],
"src": "17040:166:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17358:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17368:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17434:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17439:2:7",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17375:58:7"
},
"nodeType": "YulFunctionCall",
"src": "17375:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17368:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17540:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "17451:88:7"
},
"nodeType": "YulFunctionCall",
"src": "17451:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "17451:93:7"
},
{
"nodeType": "YulAssignment",
"src": "17553:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17564:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17569:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17560:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17560:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17553:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17346:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17354:3:7",
"type": ""
}
],
"src": "17212:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17755:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17765:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17777:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17788:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17773:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17773:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17765:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17812:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17823:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17808:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17808:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17831:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17837:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17827:3:7"
},
"nodeType": "YulFunctionCall",
"src": "17827:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17801:6:7"
},
"nodeType": "YulFunctionCall",
"src": "17801:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "17801:47:7"
},
{
"nodeType": "YulAssignment",
"src": "17857:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17991:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17865:124:7"
},
"nodeType": "YulFunctionCall",
"src": "17865:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17857:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17735:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17750:4:7",
"type": ""
}
],
"src": "17584:419:7"
}
]
},
"contents": "{\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 copy_memory_to_memory_with_cleanup(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 mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\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 abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(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_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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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_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 abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\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 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_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 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 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_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 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 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_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 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 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_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 store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\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 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_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 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 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_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 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 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_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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\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_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 store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\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_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 store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\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_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}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b6040516101259190610f95565b60405180910390f35b61014860048036038101906101439190611050565b6103e0565b60405161015591906110ab565b60405180910390f35b610166610403565b60405161017391906110d5565b60405180910390f35b610196600480360381019061019191906110f0565b61040d565b6040516101a391906110ab565b60405180910390f35b6101b461043c565b6040516101c1919061115f565b60405180910390f35b6101e460048036038101906101df9190611050565b610445565b6040516101f191906110ab565b60405180910390f35b61020261047c565b005b61020c61048e565b60405161021991906110ab565b60405180910390f35b61023c6004803603810190610237919061117a565b6104a5565b60405161024991906110d5565b60405180910390f35b61025a6104ed565b005b610264610501565b005b61026e610513565b60405161027b91906111b6565b60405180910390f35b61028c61053d565b6040516102999190610f95565b60405180910390f35b6102bc60048036038101906102b79190611050565b6105cf565b6040516102c991906110ab565b60405180910390f35b6102ec60048036038101906102e79190611050565b610646565b6040516102f991906110ab565b60405180910390f35b61031c600480360381019061031791906111d1565b610669565b60405161032991906110d5565b60405180910390f35b61034c6004803603810190610347919061117a565b6106f0565b005b60606003805461035d90611240565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611240565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b6000806103eb610778565b90506103f8818585610780565b600191505092915050565b6000600254905090565b600080610418610778565b9050610425858285610949565b6104308585856109d5565b60019150509392505050565b60006012905090565b600080610450610778565b90506104718185856104628589610669565b61046c91906112a0565b610780565b600191505092915050565b610484610c4b565b61048c610cc9565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f5610c4b565b6104ff6000610d2c565b565b610509610c4b565b610511610df2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461054c90611240565b80601f016020809104026020016040519081016040528092919081815260200182805461057890611240565b80156105c55780601f1061059a576101008083540402835291602001916105c5565b820191906000526020600020905b8154815290600101906020018083116105a857829003601f168201915b5050505050905090565b6000806105da610778565b905060006105e88286610669565b90508381101561062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611346565b60405180910390fd5b61063a8286868403610780565b60019250505092915050565b600080610651610778565b905061065e8185856109d5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106f8610c4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e906113d8565b60405180910390fd5b61077081610d2c565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e69061146a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906114fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161093c91906110d5565b60405180910390a3505050565b60006109558484610669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cf57818110156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890611568565b60405180910390fd5b6109ce8484848403610780565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906115fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa9061168c565b60405180910390fd5b610abe838383610e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b9061171e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c3291906110d5565b60405180910390a3610c45848484610e6d565b50505050565b610c53610778565b73ffffffffffffffffffffffffffffffffffffffff16610c71610513565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe9061178a565b60405180910390fd5b565b610cd1610e72565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d15610778565b604051610d2291906111b6565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610dfa610ebb565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e3e610778565b604051610e4b91906111b6565b60405180910390a1565b610e5d610ebb565b610e68838383610773565b505050565b505050565b610e7a61048e565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906117f6565b60405180910390fd5b565b610ec361048e565b15610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611862565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f3f578082015181840152602081019050610f24565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f6782610f05565b610f718185610f10565b9350610f81818560208601610f21565b610f8a81610f4b565b840191505092915050565b60006020820190508181036000830152610faf8184610f5c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe782610fbc565b9050919050565b610ff781610fdc565b811461100257600080fd5b50565b60008135905061101481610fee565b92915050565b6000819050919050565b61102d8161101a565b811461103857600080fd5b50565b60008135905061104a81611024565b92915050565b6000806040838503121561106757611066610fb7565b5b600061107585828601611005565b92505060206110868582860161103b565b9150509250929050565b60008115159050919050565b6110a581611090565b82525050565b60006020820190506110c0600083018461109c565b92915050565b6110cf8161101a565b82525050565b60006020820190506110ea60008301846110c6565b92915050565b60008060006060848603121561110957611108610fb7565b5b600061111786828701611005565b935050602061112886828701611005565b92505060406111398682870161103b565b9150509250925092565b600060ff82169050919050565b61115981611143565b82525050565b60006020820190506111746000830184611150565b92915050565b6000602082840312156111905761118f610fb7565b5b600061119e84828501611005565b91505092915050565b6111b081610fdc565b82525050565b60006020820190506111cb60008301846111a7565b92915050565b600080604083850312156111e8576111e7610fb7565b5b60006111f685828601611005565b925050602061120785828601611005565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061125857607f821691505b60208210810361126b5761126a611211565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112ab8261101a565b91506112b68361101a565b92508282019050808211156112ce576112cd611271565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611330602583610f10565b915061133b826112d4565b604082019050919050565b6000602082019050818103600083015261135f81611323565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113c2602683610f10565b91506113cd82611366565b604082019050919050565b600060208201905081810360008301526113f1816113b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611454602483610f10565b915061145f826113f8565b604082019050919050565b6000602082019050818103600083015261148381611447565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e6602283610f10565b91506114f18261148a565b604082019050919050565b60006020820190508181036000830152611515816114d9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611552601d83610f10565b915061155d8261151c565b602082019050919050565b6000602082019050818103600083015261158181611545565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115e4602583610f10565b91506115ef82611588565b604082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611676602383610f10565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611708602683610f10565b9150611713826116ac565b604082019050919050565b60006020820190508181036000830152611737816116fb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611774602083610f10565b915061177f8261173e565b602082019050919050565b600060208201905081810360008301526117a381611767565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006117e0601483610f10565b91506117eb826117aa565b602082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061184c601083610f10565b915061185782611816565b602082019050919050565b6000602082019050818103600083015261187b8161183f565b905091905056fea26469706673582212203060e13984865970df8db579436783ff9ff12085c56bd1e2e4993a04d5697fbb64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10B 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 0x284 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x302 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x332 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x266 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x204 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x34E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0xF95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x3E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH2 0x403 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x196 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x10F0 JUMP JUMPDEST PUSH2 0x40D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH2 0x43C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x115F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x445 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x202 PUSH2 0x47C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH2 0x48E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x117A JUMP JUMPDEST PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25A PUSH2 0x4ED JUMP JUMPDEST STOP JUMPDEST PUSH2 0x264 PUSH2 0x501 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26E PUSH2 0x513 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x53D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x299 SWAP2 SWAP1 PUSH2 0xF95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2BC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B7 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1050 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x11D1 JUMP JUMPDEST PUSH2 0x669 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x117A JUMP JUMPDEST PUSH2 0x6F0 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x35D SWAP1 PUSH2 0x1240 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 0x389 SWAP1 PUSH2 0x1240 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3D6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3AB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3D6 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 0x3B9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3EB PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x3F8 DUP2 DUP6 DUP6 PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x418 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x425 DUP6 DUP3 DUP6 PUSH2 0x949 JUMP JUMPDEST PUSH2 0x430 DUP6 DUP6 DUP6 PUSH2 0x9D5 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 DUP1 PUSH2 0x450 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x471 DUP2 DUP6 DUP6 PUSH2 0x462 DUP6 DUP10 PUSH2 0x669 JUMP JUMPDEST PUSH2 0x46C SWAP2 SWAP1 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x484 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x48C PUSH2 0xCC9 JUMP JUMPDEST 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 0x4F5 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x4FF PUSH1 0x0 PUSH2 0xD2C JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x509 PUSH2 0xC4B JUMP JUMPDEST PUSH2 0x511 PUSH2 0xDF2 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 0x54C SWAP1 PUSH2 0x1240 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 0x578 SWAP1 PUSH2 0x1240 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x59A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5C5 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 0x5A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5DA PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5E8 DUP3 DUP7 PUSH2 0x669 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x62D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x624 SWAP1 PUSH2 0x1346 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x63A DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x780 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x651 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP PUSH2 0x65E DUP2 DUP6 DUP6 PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x6F8 PUSH2 0xC4B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x767 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP1 PUSH2 0x13D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x770 DUP2 PUSH2 0xD2C JUMP JUMPDEST 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 SUB PUSH2 0x7EF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E6 SWAP1 PUSH2 0x146A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x85E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x855 SWAP1 PUSH2 0x14FC 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 0x93C SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x955 DUP5 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x9CF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B8 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9CE DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x780 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA3B SWAP1 PUSH2 0x15FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xAB3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAAA SWAP1 PUSH2 0x168C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xABE DUP4 DUP4 DUP4 PUSH2 0xE55 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 0xB44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB3B SWAP1 PUSH2 0x171E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC32 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xC45 DUP5 DUP5 DUP5 PUSH2 0xE6D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xC53 PUSH2 0x778 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC71 PUSH2 0x513 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCBE SWAP1 PUSH2 0x178A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xCD1 PUSH2 0xE72 JUMP 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 0xD15 PUSH2 0x778 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD22 SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xDFA PUSH2 0xEBB JUMP 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 0xE3E PUSH2 0x778 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4B SWAP2 SWAP1 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0xE5D PUSH2 0xEBB JUMP JUMPDEST PUSH2 0xE68 DUP4 DUP4 DUP4 PUSH2 0x773 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xE7A PUSH2 0x48E JUMP JUMPDEST PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB0 SWAP1 PUSH2 0x17F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xEC3 PUSH2 0x48E JUMP JUMPDEST ISZERO PUSH2 0xF03 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFA SWAP1 PUSH2 0x1862 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF3F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF24 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF67 DUP3 PUSH2 0xF05 JUMP JUMPDEST PUSH2 0xF71 DUP2 DUP6 PUSH2 0xF10 JUMP JUMPDEST SWAP4 POP PUSH2 0xF81 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF21 JUMP JUMPDEST PUSH2 0xF8A DUP2 PUSH2 0xF4B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAF DUP2 DUP5 PUSH2 0xF5C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFE7 DUP3 PUSH2 0xFBC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFF7 DUP2 PUSH2 0xFDC JUMP JUMPDEST DUP2 EQ PUSH2 0x1002 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1014 DUP2 PUSH2 0xFEE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x102D DUP2 PUSH2 0x101A JUMP JUMPDEST DUP2 EQ PUSH2 0x1038 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x104A DUP2 PUSH2 0x1024 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1067 JUMPI PUSH2 0x1066 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1075 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1086 DUP6 DUP3 DUP7 ADD PUSH2 0x103B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A5 DUP2 PUSH2 0x1090 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10C0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x109C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10CF DUP2 PUSH2 0x101A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x10EA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10C6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1109 JUMPI PUSH2 0x1108 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1117 DUP7 DUP3 DUP8 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1128 DUP7 DUP3 DUP8 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1139 DUP7 DUP3 DUP8 ADD PUSH2 0x103B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1159 DUP2 PUSH2 0x1143 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1174 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1150 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1190 JUMPI PUSH2 0x118F PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x119E DUP5 DUP3 DUP6 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x11B0 DUP2 PUSH2 0xFDC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0xFB7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11F6 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1207 DUP6 DUP3 DUP7 ADD PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1258 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x126B JUMPI PUSH2 0x126A PUSH2 0x1211 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 PUSH1 0x0 PUSH2 0x12AB DUP3 PUSH2 0x101A JUMP JUMPDEST SWAP2 POP PUSH2 0x12B6 DUP4 PUSH2 0x101A JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CD PUSH2 0x1271 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1330 PUSH1 0x25 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x133B DUP3 PUSH2 0x12D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x135F DUP2 PUSH2 0x1323 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13C2 PUSH1 0x26 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x13CD DUP3 PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F1 DUP2 PUSH2 0x13B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1454 PUSH1 0x24 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x145F DUP3 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1483 DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14E6 PUSH1 0x22 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x14F1 DUP3 PUSH2 0x148A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1515 DUP2 PUSH2 0x14D9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1552 PUSH1 0x1D DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x155D DUP3 PUSH2 0x151C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1581 DUP2 PUSH2 0x1545 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E4 PUSH1 0x25 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x15EF DUP3 PUSH2 0x1588 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1613 DUP2 PUSH2 0x15D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1676 PUSH1 0x23 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1681 DUP3 PUSH2 0x161A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x16A5 DUP2 PUSH2 0x1669 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1708 PUSH1 0x26 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1713 DUP3 PUSH2 0x16AC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1737 DUP2 PUSH2 0x16FB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1774 PUSH1 0x20 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x177F DUP3 PUSH2 0x173E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17A3 DUP2 PUSH2 0x1767 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E0 PUSH1 0x14 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17EB DUP3 PUSH2 0x17AA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x180F DUP2 PUSH2 0x17D3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x184C PUSH1 0x10 DUP4 PUSH2 0xF10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1857 DUP3 PUSH2 0x1816 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x187B DUP2 PUSH2 0x183F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS PUSH1 0xE1 CODECOPY DUP5 DUP7 MSIZE PUSH17 0xDF8DB579436783FF9FF12085C56BD1E2E4 SWAP10 GASPRICE DIV 0xD5 PUSH10 0x7FBB64736F6C63430008 SLT STOP CALLER ",
"sourceMap": "293:500:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;529:63:6;;;:::i;:::-;;1615:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;:::i;:::-;;464:59:6;;;:::i;:::-;;1201:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2158:98:2;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;529:63:6:-;1094:13:0;:11;:13::i;:::-;575:10:6::1;:8;:10::i;:::-;529:63::o:0;1615:84:1:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;3419:125:2:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;464:59:6:-;1094:13:0;:11;:13::i;:::-;508:8:6::1;:6;:8::i;:::-;464:59::o:0;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2369:102:2:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;12073:91:2:-;;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;10457:340:2:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:117:1:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7;;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;2186:115:1:-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7;;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;598:193:6:-;1239:19:1;:17;:19::i;:::-;740:44:6::1;767:4;773:2;777:6;740:26;:44::i;:::-;598:193:::0;;;:::o;12752:90:2:-;;;;:::o;1945:106:1:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;1767:::-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:225::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:8;8146:2;8138:6;8134:15;8127:33;7942:225;:::o;8173:366::-;8315:3;8336:67;8400:2;8395:3;8336:67;:::i;:::-;8329:74;;8412:93;8501:3;8412:93;:::i;:::-;8530:2;8525:3;8521:12;8514:19;;8173:366;;;:::o;8545:419::-;8711:4;8749:2;8738:9;8734:18;8726:26;;8798:9;8792:4;8788:20;8784:1;8773:9;8769:17;8762:47;8826:131;8952:4;8826:131;:::i;:::-;8818:139;;8545:419;;;:::o;8970:223::-;9110:34;9106:1;9098:6;9094:14;9087:58;9179:6;9174:2;9166:6;9162:15;9155:31;8970:223;:::o;9199:366::-;9341:3;9362:67;9426:2;9421:3;9362:67;:::i;:::-;9355:74;;9438:93;9527:3;9438:93;:::i;:::-;9556:2;9551:3;9547:12;9540:19;;9199:366;;;:::o;9571:419::-;9737:4;9775:2;9764:9;9760:18;9752:26;;9824:9;9818:4;9814:20;9810:1;9799:9;9795:17;9788:47;9852:131;9978:4;9852:131;:::i;:::-;9844:139;;9571:419;;;:::o;9996:221::-;10136:34;10132:1;10124:6;10120:14;10113:58;10205:4;10200:2;10192:6;10188:15;10181:29;9996:221;:::o;10223:366::-;10365:3;10386:67;10450:2;10445:3;10386:67;:::i;:::-;10379:74;;10462:93;10551:3;10462:93;:::i;:::-;10580:2;10575:3;10571:12;10564:19;;10223:366;;;:::o;10595:419::-;10761:4;10799:2;10788:9;10784:18;10776:26;;10848:9;10842:4;10838:20;10834:1;10823:9;10819:17;10812:47;10876:131;11002:4;10876:131;:::i;:::-;10868:139;;10595:419;;;:::o;11020:179::-;11160:31;11156:1;11148:6;11144:14;11137:55;11020:179;:::o;11205:366::-;11347:3;11368:67;11432:2;11427:3;11368:67;:::i;:::-;11361:74;;11444:93;11533:3;11444:93;:::i;:::-;11562:2;11557:3;11553:12;11546:19;;11205:366;;;:::o;11577:419::-;11743:4;11781:2;11770:9;11766:18;11758:26;;11830:9;11824:4;11820:20;11816:1;11805:9;11801:17;11794:47;11858:131;11984:4;11858:131;:::i;:::-;11850:139;;11577:419;;;:::o;12002:224::-;12142:34;12138:1;12130:6;12126:14;12119:58;12211:7;12206:2;12198:6;12194:15;12187:32;12002:224;:::o;12232:366::-;12374:3;12395:67;12459:2;12454:3;12395:67;:::i;:::-;12388:74;;12471:93;12560:3;12471:93;:::i;:::-;12589:2;12584:3;12580:12;12573:19;;12232:366;;;:::o;12604:419::-;12770:4;12808:2;12797:9;12793:18;12785:26;;12857:9;12851:4;12847:20;12843:1;12832:9;12828:17;12821:47;12885:131;13011:4;12885:131;:::i;:::-;12877:139;;12604:419;;;:::o;13029:222::-;13169:34;13165:1;13157:6;13153:14;13146:58;13238:5;13233:2;13225:6;13221:15;13214:30;13029:222;:::o;13257:366::-;13399:3;13420:67;13484:2;13479:3;13420:67;:::i;:::-;13413:74;;13496:93;13585:3;13496:93;:::i;:::-;13614:2;13609:3;13605:12;13598:19;;13257:366;;;:::o;13629:419::-;13795:4;13833:2;13822:9;13818:18;13810:26;;13882:9;13876:4;13872:20;13868:1;13857:9;13853:17;13846:47;13910:131;14036:4;13910:131;:::i;:::-;13902:139;;13629:419;;;:::o;14054:225::-;14194:34;14190:1;14182:6;14178:14;14171:58;14263:8;14258:2;14250:6;14246:15;14239:33;14054:225;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:182::-;15222:34;15218:1;15210:6;15206:14;15199:58;15082:182;:::o;15270:366::-;15412:3;15433:67;15497:2;15492:3;15433:67;:::i;:::-;15426:74;;15509:93;15598:3;15509:93;:::i;:::-;15627:2;15622:3;15618:12;15611:19;;15270:366;;;:::o;15642:419::-;15808:4;15846:2;15835:9;15831:18;15823:26;;15895:9;15889:4;15885:20;15881:1;15870:9;15866:17;15859:47;15923:131;16049:4;15923:131;:::i;:::-;15915:139;;15642:419;;;:::o;16067:170::-;16207:22;16203:1;16195:6;16191:14;16184:46;16067:170;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:166::-;17180:18;17176:1;17168:6;17164:14;17157:42;17040:166;:::o;17212:366::-;17354:3;17375:67;17439:2;17434:3;17375:67;:::i;:::-;17368:74;;17451:93;17540:3;17451:93;:::i;:::-;17569:2;17564:3;17560:12;17553:19;;17212:366;;;:::o;17584:419::-;17750:4;17788:2;17777:9;17773:18;17765:26;;17837:9;17831:4;17827:20;17823:1;17812:9;17808:17;17801:47;17865:131;17991:4;17865:131;:::i;:::-;17857:139;;17584:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1265600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2864",
"decimals()": "366",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2661",
"pause()": "infinite",
"paused()": "2568",
"renounceOwnership()": "30593",
"symbol()": "infinite",
"totalSupply()": "2505",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "31004",
"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",
"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": [],
"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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"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"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"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": [],
"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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"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"
}
],
"devdoc": {
"custom:security-contact": "security@openmeta.city",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Paused(address)": {
"details": "Emitted when the pause is triggered by `account`."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
},
"Unpaused(address)": {
"details": "Emitted when the pause is lifted by `account`."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "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 default value returned by this function, unless it's 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}."
},
"decreaseAllowance(address,uint256)": {
"details": "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`."
},
"increaseAllowance(address,uint256)": {
"details": "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."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"OMZ.sol": "OpenMetaCity"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.9.3/access/Ownable.sol": {
"keccak256": "0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218",
"license": "MIT",
"urls": [
"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32",
"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz"
]
},
"@openzeppelin/contracts@4.9.3/security/Pausable.sol": {
"keccak256": "0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773",
"license": "MIT",
"urls": [
"bzz-raw://4ddabb16009cd17eaca3143feadf450ac13e72919ebe2ca50e00f61cb78bc004",
"dweb:/ipfs/QmSPwPxX7d6TTWakN5jy5wsaGkS1y9TW8fuhGSraMkLk2B"
]
},
"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol": {
"keccak256": "0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c",
"license": "MIT",
"urls": [
"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15",
"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih"
]
},
"@openzeppelin/contracts@4.9.3/token/ERC20/IERC20.sol": {
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305",
"license": "MIT",
"urls": [
"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5",
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53"
]
},
"@openzeppelin/contracts@4.9.3/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"@openzeppelin/contracts@4.9.3/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"OMZ.sol": {
"keccak256": "0x933a9f349ec08b92b6d3666e5e47bb8b77ad207d171b4669bfdd9c779eaa8302",
"license": "MIT",
"urls": [
"bzz-raw://ad700745c883f02fd456adc3d347460b72854cbdf5f17337d575bbf64c3b95d4",
"dweb:/ipfs/Qma8m5b7MCzuKGMPFZbQUEUEN72SWnGgiXzJkCao6qU6sr"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.9.3/security/Pausable.sol";
import "@openzeppelin/contracts@4.9.3/access/Ownable.sol";
/// @custom:security-contact security@openmeta.city
contract OpenMetaCity is ERC20, Pausable, Ownable {
constructor() ERC20("Open Meta City", "OMZ") {
_mint(msg.sender, 200000000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
}
This file has been truncated, but you can view the full file.
{
"id": "40f7e71e0f0db4fa507888409bbd872c",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.18",
"solcLongVersion": "0.8.18+commit.87f61d96",
"input": {
"language": "Solidity",
"sources": {
"OMZ.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.9;\n\nimport \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts@4.9.3/security/Pausable.sol\";\nimport \"@openzeppelin/contracts@4.9.3/access/Ownable.sol\";\n\n/// @custom:security-contact security@openmeta.city\ncontract OpenMetaCity is ERC20, Pausable, Ownable {\n constructor() ERC20(\"Open Meta City\", \"OMZ\") {\n _mint(msg.sender, 200000000 * 10 ** decimals());\n }\n\n function pause() public onlyOwner {\n _pause();\n }\n\n function unpause() public onlyOwner {\n _unpause();\n }\n\n function _beforeTokenTransfer(address from, address to, uint256 amount)\n internal\n whenNotPaused\n override\n {\n super._beforeTokenTransfer(from, to, amount);\n }\n}\n"
},
"@openzeppelin/contracts@4.9.3/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts@4.9.3/security/Pausable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract Pausable is Context {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n constructor() {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n}\n"
},
"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n"
},
"@openzeppelin/contracts@4.9.3/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts@4.9.3/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"@openzeppelin/contracts@4.9.3/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts@4.9.3/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts@4.9.3/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts@4.9.3/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts@4.9.3/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts@4.9.3/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts@4.9.3/security/Pausable.sol": {
"Pausable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "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.",
"events": {
"Paused(address)": {
"details": "Emitted when the pause is triggered by `account`."
},
"Unpaused(address)": {
"details": "Emitted when the pause is lifted by `account`."
}
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract in unpaused state."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"paused()": "5c975abb"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"events\":{\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract in unpaused state.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts@4.9.3/security/Pausable.sol\":\"Pausable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts@4.9.3/security/Pausable.sol\":{\"keccak256\":\"0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4ddabb16009cd17eaca3143feadf450ac13e72919ebe2ca50e00f61cb78bc004\",\"dweb:/ipfs/QmSPwPxX7d6TTWakN5jy5wsaGkS1y9TW8fuhGSraMkLk2B\"]},\"@openzeppelin/contracts@4.9.3/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 130,
"contract": "@openzeppelin/contracts@4.9.3/security/Pausable.sol:Pausable",
"label": "_paused",
"offset": 0,
"slot": "0",
"type": "t_bool"
}
],
"types": {
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"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": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"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": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "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 default value returned by this function, unless it's 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}."
},
"decreaseAllowance(address,uint256)": {
"details": "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`."
},
"increaseAllowance(address,uint256)": {
"details": "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."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2054:2059 name_ */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2046:2051 _name */\n 0x03\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2046:2059 _name = name_ */\n swap1\n dup2\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2079:2086 symbol_ */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2069:2076 _symbol */\n 0x04\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2069:2086 _symbol = symbol_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n jump(tag_9)\n /* \"#utility.yul\":7:82 */\ntag_10:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_11:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_12:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_13:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_14:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_15:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_16:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_17:\n /* \"#utility.yul\":957:984 */\n tag_51\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_15\n jump\t// in\ntag_51:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_52\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_53\n tag_16\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1030:1118 */\ntag_52:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_18:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_55\n tag_10\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_56\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_17\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_19:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_59\n tag_16\n jump\t// in\ntag_59:\n /* \"#utility.yul\":1434:1490 */\ntag_58:\n /* \"#utility.yul\":1508:1537 */\n tag_60\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_15\n jump\t// in\ntag_60:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1856 */\ntag_20:\n /* \"#utility.yul\":1691:1692 */\n 0x00\n /* \"#utility.yul\":1701:1814 */\ntag_62:\n /* \"#utility.yul\":1715:1721 */\n dup4\n /* \"#utility.yul\":1712:1713 */\n dup2\n /* \"#utility.yul\":1709:1722 */\n lt\n /* \"#utility.yul\":1701:1814 */\n iszero\n tag_64\n jumpi\n /* \"#utility.yul\":1800:1801 */\n dup1\n /* \"#utility.yul\":1795:1798 */\n dup3\n /* \"#utility.yul\":1791:1802 */\n add\n /* \"#utility.yul\":1785:1803 */\n mload\n /* \"#utility.yul\":1781:1782 */\n dup2\n /* \"#utility.yul\":1776:1779 */\n dup5\n /* \"#utility.yul\":1772:1783 */\n add\n /* \"#utility.yul\":1765:1804 */\n mstore\n /* \"#utility.yul\":1737:1739 */\n 0x20\n /* \"#utility.yul\":1734:1735 */\n dup2\n /* \"#utility.yul\":1730:1740 */\n add\n /* \"#utility.yul\":1725:1740 */\n swap1\n pop\n /* \"#utility.yul\":1701:1814 */\n jump(tag_62)\ntag_64:\n /* \"#utility.yul\":1848:1849 */\n 0x00\n /* \"#utility.yul\":1839:1845 */\n dup5\n /* \"#utility.yul\":1834:1837 */\n dup5\n /* \"#utility.yul\":1830:1846 */\n add\n /* \"#utility.yul\":1823:1850 */\n mstore\n /* \"#utility.yul\":1672:1856 */\n pop\n /* \"#utility.yul\":1610:1856 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1862:2296 */\ntag_21:\n /* \"#utility.yul\":1951:1956 */\n 0x00\n /* \"#utility.yul\":1976:2042 */\n tag_66\n /* \"#utility.yul\":1992:2041 */\n tag_67\n /* \"#utility.yul\":2034:2040 */\n dup5\n /* \"#utility.yul\":1992:2041 */\n tag_19\n jump\t// in\ntag_67:\n /* \"#utility.yul\":1976:2042 */\n tag_18\n jump\t// in\ntag_66:\n /* \"#utility.yul\":1967:2042 */\n swap1\n pop\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2058:2063 */\n dup2\n /* \"#utility.yul\":2051:2072 */\n mstore\n /* \"#utility.yul\":2103:2107 */\n 0x20\n /* \"#utility.yul\":2096:2101 */\n dup2\n /* \"#utility.yul\":2092:2108 */\n add\n /* \"#utility.yul\":2141:2144 */\n dup5\n /* \"#utility.yul\":2132:2138 */\n dup5\n /* \"#utility.yul\":2127:2130 */\n dup5\n /* \"#utility.yul\":2123:2139 */\n add\n /* \"#utility.yul\":2120:2145 */\n gt\n /* \"#utility.yul\":2117:2229 */\n iszero\n tag_68\n jumpi\n /* \"#utility.yul\":2148:2227 */\n tag_69\n tag_14\n jump\t// in\ntag_69:\n /* \"#utility.yul\":2117:2229 */\ntag_68:\n /* \"#utility.yul\":2238:2290 */\n tag_70\n /* \"#utility.yul\":2283:2289 */\n dup5\n /* \"#utility.yul\":2278:2281 */\n dup3\n /* \"#utility.yul\":2273:2276 */\n dup6\n /* \"#utility.yul\":2238:2290 */\n tag_20\n jump\t// in\ntag_70:\n /* \"#utility.yul\":1957:2296 */\n pop\n /* \"#utility.yul\":1862:2296 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2316:2671 */\ntag_22:\n /* \"#utility.yul\":2383:2388 */\n 0x00\n /* \"#utility.yul\":2432:2435 */\n dup3\n /* \"#utility.yul\":2425:2429 */\n 0x1f\n /* \"#utility.yul\":2417:2423 */\n dup4\n /* \"#utility.yul\":2413:2430 */\n add\n /* \"#utility.yul\":2409:2436 */\n slt\n /* \"#utility.yul\":2399:2521 */\n tag_72\n jumpi\n /* \"#utility.yul\":2440:2519 */\n tag_73\n tag_13\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2399:2521 */\ntag_72:\n /* \"#utility.yul\":2550:2556 */\n dup2\n /* \"#utility.yul\":2544:2557 */\n mload\n /* \"#utility.yul\":2575:2665 */\n tag_74\n /* \"#utility.yul\":2661:2664 */\n dup5\n /* \"#utility.yul\":2653:2659 */\n dup3\n /* \"#utility.yul\":2646:2650 */\n 0x20\n /* \"#utility.yul\":2638:2644 */\n dup7\n /* \"#utility.yul\":2634:2651 */\n add\n /* \"#utility.yul\":2575:2665 */\n tag_21\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2566:2665 */\n swap2\n pop\n /* \"#utility.yul\":2389:2671 */\n pop\n /* \"#utility.yul\":2316:2671 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2677:3530 */\ntag_3:\n /* \"#utility.yul\":2776:2782 */\n 0x00\n /* \"#utility.yul\":2784:2790 */\n dup1\n /* \"#utility.yul\":2833:2835 */\n 0x40\n /* \"#utility.yul\":2821:2830 */\n dup4\n /* \"#utility.yul\":2812:2819 */\n dup6\n /* \"#utility.yul\":2808:2831 */\n sub\n /* \"#utility.yul\":2804:2836 */\n slt\n /* \"#utility.yul\":2801:2920 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":2839:2918 */\n tag_77\n tag_11\n jump\t// in\ntag_77:\n /* \"#utility.yul\":2801:2920 */\ntag_76:\n /* \"#utility.yul\":2980:2981 */\n 0x00\n /* \"#utility.yul\":2969:2978 */\n dup4\n /* \"#utility.yul\":2965:2982 */\n add\n /* \"#utility.yul\":2959:2983 */\n mload\n /* \"#utility.yul\":3010:3028 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3008 */\n dup2\n /* \"#utility.yul\":2999:3029 */\n gt\n /* \"#utility.yul\":2996:3113 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":3032:3111 */\n tag_79\n tag_12\n jump\t// in\ntag_79:\n /* \"#utility.yul\":2996:3113 */\ntag_78:\n /* \"#utility.yul\":3137:3211 */\n tag_80\n /* \"#utility.yul\":3203:3210 */\n dup6\n /* \"#utility.yul\":3194:3200 */\n dup3\n /* \"#utility.yul\":3183:3192 */\n dup7\n /* \"#utility.yul\":3179:3201 */\n add\n /* \"#utility.yul\":3137:3211 */\n tag_22\n jump\t// in\ntag_80:\n /* \"#utility.yul\":3127:3211 */\n swap3\n pop\n /* \"#utility.yul\":2930:3221 */\n pop\n /* \"#utility.yul\":3281:3283 */\n 0x20\n /* \"#utility.yul\":3270:3279 */\n dup4\n /* \"#utility.yul\":3266:3284 */\n add\n /* \"#utility.yul\":3260:3285 */\n mload\n /* \"#utility.yul\":3312:3330 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3304:3310 */\n dup2\n /* \"#utility.yul\":3301:3331 */\n gt\n /* \"#utility.yul\":3298:3415 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":3334:3413 */\n tag_82\n tag_12\n jump\t// in\ntag_82:\n /* \"#utility.yul\":3298:3415 */\ntag_81:\n /* \"#utility.yul\":3439:3513 */\n tag_83\n /* \"#utility.yul\":3505:3512 */\n dup6\n /* \"#utility.yul\":3496:3502 */\n dup3\n /* \"#utility.yul\":3485:3494 */\n dup7\n /* \"#utility.yul\":3481:3503 */\n add\n /* \"#utility.yul\":3439:3513 */\n tag_22\n jump\t// in\ntag_83:\n /* \"#utility.yul\":3429:3513 */\n swap2\n pop\n /* \"#utility.yul\":3231:3523 */\n pop\n /* \"#utility.yul\":2677:3530 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3536:3635 */\ntag_23:\n /* \"#utility.yul\":3588:3594 */\n 0x00\n /* \"#utility.yul\":3622:3627 */\n dup2\n /* \"#utility.yul\":3616:3628 */\n mload\n /* \"#utility.yul\":3606:3628 */\n swap1\n pop\n /* \"#utility.yul\":3536:3635 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3641:3821 */\ntag_24:\n /* \"#utility.yul\":3689:3766 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3686:3687 */\n 0x00\n /* \"#utility.yul\":3679:3767 */\n mstore\n /* \"#utility.yul\":3786:3790 */\n 0x22\n /* \"#utility.yul\":3783:3784 */\n 0x04\n /* \"#utility.yul\":3776:3791 */\n mstore\n /* \"#utility.yul\":3810:3814 */\n 0x24\n /* \"#utility.yul\":3807:3808 */\n 0x00\n /* \"#utility.yul\":3800:3815 */\n revert\n /* \"#utility.yul\":3827:4147 */\ntag_25:\n /* \"#utility.yul\":3871:3877 */\n 0x00\n /* \"#utility.yul\":3908:3909 */\n 0x02\n /* \"#utility.yul\":3902:3906 */\n dup3\n /* \"#utility.yul\":3898:3910 */\n div\n /* \"#utility.yul\":3888:3910 */\n swap1\n pop\n /* \"#utility.yul\":3955:3956 */\n 0x01\n /* \"#utility.yul\":3949:3953 */\n dup3\n /* \"#utility.yul\":3945:3957 */\n and\n /* \"#utility.yul\":3976:3994 */\n dup1\n /* \"#utility.yul\":3966:4047 */\n tag_87\n jumpi\n /* \"#utility.yul\":4032:4036 */\n 0x7f\n /* \"#utility.yul\":4024:4030 */\n dup3\n /* \"#utility.yul\":4020:4037 */\n and\n /* \"#utility.yul\":4010:4037 */\n swap2\n pop\n /* \"#utility.yul\":3966:4047 */\ntag_87:\n /* \"#utility.yul\":4094:4096 */\n 0x20\n /* \"#utility.yul\":4086:4092 */\n dup3\n /* \"#utility.yul\":4083:4097 */\n lt\n /* \"#utility.yul\":4063:4081 */\n dup2\n /* \"#utility.yul\":4060:4098 */\n sub\n /* \"#utility.yul\":4057:4141 */\n tag_88\n jumpi\n /* \"#utility.yul\":4113:4131 */\n tag_89\n tag_24\n jump\t// in\ntag_89:\n /* \"#utility.yul\":4057:4141 */\ntag_88:\n /* \"#utility.yul\":3878:4147 */\n pop\n /* \"#utility.yul\":3827:4147 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4153:4294 */\ntag_26:\n /* \"#utility.yul\":4202:4206 */\n 0x00\n /* \"#utility.yul\":4225:4228 */\n dup2\n /* \"#utility.yul\":4217:4228 */\n swap1\n pop\n /* \"#utility.yul\":4248:4251 */\n dup2\n /* \"#utility.yul\":4245:4246 */\n 0x00\n /* \"#utility.yul\":4238:4252 */\n mstore\n /* \"#utility.yul\":4282:4286 */\n 0x20\n /* \"#utility.yul\":4279:4280 */\n 0x00\n /* \"#utility.yul\":4269:4287 */\n keccak256\n /* \"#utility.yul\":4261:4287 */\n swap1\n pop\n /* \"#utility.yul\":4153:4294 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4300:4393 */\ntag_27:\n /* \"#utility.yul\":4337:4343 */\n 0x00\n /* \"#utility.yul\":4384:4386 */\n 0x20\n /* \"#utility.yul\":4379:4381 */\n 0x1f\n /* \"#utility.yul\":4372:4377 */\n dup4\n /* \"#utility.yul\":4368:4382 */\n add\n /* \"#utility.yul\":4364:4387 */\n div\n /* \"#utility.yul\":4354:4387 */\n swap1\n pop\n /* \"#utility.yul\":4300:4393 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4399:4506 */\ntag_28:\n /* \"#utility.yul\":4443:4451 */\n 0x00\n /* \"#utility.yul\":4493:4498 */\n dup3\n /* \"#utility.yul\":4487:4491 */\n dup3\n /* \"#utility.yul\":4483:4499 */\n shl\n /* \"#utility.yul\":4462:4499 */\n swap1\n pop\n /* \"#utility.yul\":4399:4506 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4512:4905 */\ntag_29:\n /* \"#utility.yul\":4581:4587 */\n 0x00\n /* \"#utility.yul\":4631:4632 */\n 0x08\n /* \"#utility.yul\":4619:4629 */\n dup4\n /* \"#utility.yul\":4615:4633 */\n mul\n /* \"#utility.yul\":4654:4751 */\n tag_94\n /* \"#utility.yul\":4684:4750 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":4673:4682 */\n dup3\n /* \"#utility.yul\":4654:4751 */\n tag_28\n jump\t// in\ntag_94:\n /* \"#utility.yul\":4772:4811 */\n tag_95\n /* \"#utility.yul\":4802:4810 */\n dup7\n /* \"#utility.yul\":4791:4800 */\n dup4\n /* \"#utility.yul\":4772:4811 */\n tag_28\n jump\t// in\ntag_95:\n /* \"#utility.yul\":4760:4811 */\n swap6\n pop\n /* \"#utility.yul\":4844:4848 */\n dup1\n /* \"#utility.yul\":4840:4849 */\n not\n /* \"#utility.yul\":4833:4838 */\n dup5\n /* \"#utility.yul\":4829:4850 */\n and\n /* \"#utility.yul\":4820:4850 */\n swap4\n pop\n /* \"#utility.yul\":4893:4897 */\n dup1\n /* \"#utility.yul\":4883:4891 */\n dup7\n /* \"#utility.yul\":4879:4898 */\n and\n /* \"#utility.yul\":4872:4877 */\n dup5\n /* \"#utility.yul\":4869:4899 */\n or\n /* \"#utility.yul\":4859:4899 */\n swap3\n pop\n /* \"#utility.yul\":4588:4905 */\n pop\n pop\n /* \"#utility.yul\":4512:4905 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4911:4988 */\ntag_30:\n /* \"#utility.yul\":4948:4955 */\n 0x00\n /* \"#utility.yul\":4977:4982 */\n dup2\n /* \"#utility.yul\":4966:4982 */\n swap1\n pop\n /* \"#utility.yul\":4911:4988 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4994:5054 */\ntag_31:\n /* \"#utility.yul\":5022:5025 */\n 0x00\n /* \"#utility.yul\":5043:5048 */\n dup2\n /* \"#utility.yul\":5036:5048 */\n swap1\n pop\n /* \"#utility.yul\":4994:5054 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5060:5202 */\ntag_32:\n /* \"#utility.yul\":5110:5119 */\n 0x00\n /* \"#utility.yul\":5143:5196 */\n tag_99\n /* \"#utility.yul\":5161:5195 */\n tag_100\n /* \"#utility.yul\":5170:5194 */\n tag_101\n /* \"#utility.yul\":5188:5193 */\n dup5\n /* \"#utility.yul\":5170:5194 */\n tag_30\n jump\t// in\ntag_101:\n /* \"#utility.yul\":5161:5195 */\n tag_31\n jump\t// in\ntag_100:\n /* \"#utility.yul\":5143:5196 */\n tag_30\n jump\t// in\ntag_99:\n /* \"#utility.yul\":5130:5196 */\n swap1\n pop\n /* \"#utility.yul\":5060:5202 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5208:5283 */\ntag_33:\n /* \"#utility.yul\":5251:5254 */\n 0x00\n /* \"#utility.yul\":5272:5277 */\n dup2\n /* \"#utility.yul\":5265:5277 */\n swap1\n pop\n /* \"#utility.yul\":5208:5283 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5289:5558 */\ntag_34:\n /* \"#utility.yul\":5399:5438 */\n tag_104\n /* \"#utility.yul\":5430:5437 */\n dup4\n /* \"#utility.yul\":5399:5438 */\n tag_32\n jump\t// in\ntag_104:\n /* \"#utility.yul\":5460:5551 */\n tag_105\n /* \"#utility.yul\":5509:5550 */\n tag_106\n /* \"#utility.yul\":5533:5549 */\n dup3\n /* \"#utility.yul\":5509:5550 */\n tag_33\n jump\t// in\ntag_106:\n /* \"#utility.yul\":5501:5507 */\n dup5\n /* \"#utility.yul\":5494:5498 */\n dup5\n /* \"#utility.yul\":5488:5499 */\n sload\n /* \"#utility.yul\":5460:5551 */\n tag_29\n jump\t// in\ntag_105:\n /* \"#utility.yul\":5454:5458 */\n dup3\n /* \"#utility.yul\":5447:5552 */\n sstore\n /* \"#utility.yul\":5365:5558 */\n pop\n /* \"#utility.yul\":5289:5558 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5564:5637 */\ntag_35:\n /* \"#utility.yul\":5609:5612 */\n 0x00\n /* \"#utility.yul\":5564:5637 */\n swap1\n jump\t// out\n /* \"#utility.yul\":5643:5832 */\ntag_36:\n /* \"#utility.yul\":5720:5752 */\n tag_109\n tag_35\n jump\t// in\ntag_109:\n /* \"#utility.yul\":5761:5826 */\n tag_110\n /* \"#utility.yul\":5819:5825 */\n dup2\n /* \"#utility.yul\":5811:5817 */\n dup5\n /* \"#utility.yul\":5805:5809 */\n dup5\n /* \"#utility.yul\":5761:5826 */\n tag_34\n jump\t// in\ntag_110:\n /* \"#utility.yul\":5696:5832 */\n pop\n /* \"#utility.yul\":5643:5832 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5838:6024 */\ntag_37:\n /* \"#utility.yul\":5898:6018 */\ntag_112:\n /* \"#utility.yul\":5915:5918 */\n dup2\n /* \"#utility.yul\":5908:5913 */\n dup2\n /* \"#utility.yul\":5905:5919 */\n lt\n /* \"#utility.yul\":5898:6018 */\n iszero\n tag_114\n jumpi\n /* \"#utility.yul\":5969:6008 */\n tag_115\n /* \"#utility.yul\":6006:6007 */\n 0x00\n /* \"#utility.yul\":5999:6004 */\n dup3\n /* \"#utility.yul\":5969:6008 */\n tag_36\n jump\t// in\ntag_115:\n /* \"#utility.yul\":5942:5943 */\n 0x01\n /* \"#utility.yul\":5935:5940 */\n dup2\n /* \"#utility.yul\":5931:5944 */\n add\n /* \"#utility.yul\":5922:5944 */\n swap1\n pop\n /* \"#utility.yul\":5898:6018 */\n jump(tag_112)\ntag_114:\n /* \"#utility.yul\":5838:6024 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6030:6573 */\ntag_38:\n /* \"#utility.yul\":6131:6133 */\n 0x1f\n /* \"#utility.yul\":6126:6129 */\n dup3\n /* \"#utility.yul\":6123:6134 */\n gt\n /* \"#utility.yul\":6120:6566 */\n iszero\n tag_117\n jumpi\n /* \"#utility.yul\":6165:6203 */\n tag_118\n /* \"#utility.yul\":6197:6202 */\n dup2\n /* \"#utility.yul\":6165:6203 */\n tag_26\n jump\t// in\ntag_118:\n /* \"#utility.yul\":6249:6278 */\n tag_119\n /* \"#utility.yul\":6267:6277 */\n dup5\n /* \"#utility.yul\":6249:6278 */\n tag_27\n jump\t// in\ntag_119:\n /* \"#utility.yul\":6239:6247 */\n dup2\n /* \"#utility.yul\":6235:6279 */\n add\n /* \"#utility.yul\":6432:6434 */\n 0x20\n /* \"#utility.yul\":6420:6430 */\n dup6\n /* \"#utility.yul\":6417:6435 */\n lt\n /* \"#utility.yul\":6414:6463 */\n iszero\n tag_120\n jumpi\n /* \"#utility.yul\":6453:6461 */\n dup2\n /* \"#utility.yul\":6438:6461 */\n swap1\n pop\n /* \"#utility.yul\":6414:6463 */\ntag_120:\n /* \"#utility.yul\":6476:6556 */\n tag_121\n /* \"#utility.yul\":6532:6554 */\n tag_122\n /* \"#utility.yul\":6550:6553 */\n dup6\n /* \"#utility.yul\":6532:6554 */\n tag_27\n jump\t// in\ntag_122:\n /* \"#utility.yul\":6522:6530 */\n dup4\n /* \"#utility.yul\":6518:6555 */\n add\n /* \"#utility.yul\":6505:6516 */\n dup3\n /* \"#utility.yul\":6476:6556 */\n tag_37\n jump\t// in\ntag_121:\n /* \"#utility.yul\":6135:6566 */\n pop\n pop\n /* \"#utility.yul\":6120:6566 */\ntag_117:\n /* \"#utility.yul\":6030:6573 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6579:6696 */\ntag_39:\n /* \"#utility.yul\":6633:6641 */\n 0x00\n /* \"#utility.yul\":6683:6688 */\n dup3\n /* \"#utility.yul\":6677:6681 */\n dup3\n /* \"#utility.yul\":6673:6689 */\n shr\n /* \"#utility.yul\":6652:6689 */\n swap1\n pop\n /* \"#utility.yul\":6579:6696 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6702:6871 */\ntag_40:\n /* \"#utility.yul\":6746:6752 */\n 0x00\n /* \"#utility.yul\":6779:6830 */\n tag_125\n /* \"#utility.yul\":6827:6828 */\n 0x00\n /* \"#utility.yul\":6823:6829 */\n not\n /* \"#utility.yul\":6815:6820 */\n dup5\n /* \"#utility.yul\":6812:6813 */\n 0x08\n /* \"#utility.yul\":6808:6821 */\n mul\n /* \"#utility.yul\":6779:6830 */\n tag_39\n jump\t// in\ntag_125:\n /* \"#utility.yul\":6775:6831 */\n not\n /* \"#utility.yul\":6860:6864 */\n dup1\n /* \"#utility.yul\":6854:6858 */\n dup4\n /* \"#utility.yul\":6850:6865 */\n and\n /* \"#utility.yul\":6840:6865 */\n swap2\n pop\n /* \"#utility.yul\":6753:6871 */\n pop\n /* \"#utility.yul\":6702:6871 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6876:7171 */\ntag_41:\n /* \"#utility.yul\":6952:6956 */\n 0x00\n /* \"#utility.yul\":7098:7127 */\n tag_127\n /* \"#utility.yul\":7123:7126 */\n dup4\n /* \"#utility.yul\":7117:7121 */\n dup4\n /* \"#utility.yul\":7098:7127 */\n tag_40\n jump\t// in\ntag_127:\n /* \"#utility.yul\":7090:7127 */\n swap2\n pop\n /* \"#utility.yul\":7160:7163 */\n dup3\n /* \"#utility.yul\":7157:7158 */\n 0x02\n /* \"#utility.yul\":7153:7164 */\n mul\n /* \"#utility.yul\":7147:7151 */\n dup3\n /* \"#utility.yul\":7144:7165 */\n or\n /* \"#utility.yul\":7136:7165 */\n swap1\n pop\n /* \"#utility.yul\":6876:7171 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7176:8571 */\ntag_7:\n /* \"#utility.yul\":7293:7330 */\n tag_129\n /* \"#utility.yul\":7326:7329 */\n dup3\n /* \"#utility.yul\":7293:7330 */\n tag_23\n jump\t// in\ntag_129:\n /* \"#utility.yul\":7395:7413 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7387:7393 */\n dup2\n /* \"#utility.yul\":7384:7414 */\n gt\n /* \"#utility.yul\":7381:7437 */\n iszero\n tag_130\n jumpi\n /* \"#utility.yul\":7417:7435 */\n tag_131\n tag_16\n jump\t// in\ntag_131:\n /* \"#utility.yul\":7381:7437 */\ntag_130:\n /* \"#utility.yul\":7461:7499 */\n tag_132\n /* \"#utility.yul\":7493:7497 */\n dup3\n /* \"#utility.yul\":7487:7498 */\n sload\n /* \"#utility.yul\":7461:7499 */\n tag_25\n jump\t// in\ntag_132:\n /* \"#utility.yul\":7546:7613 */\n tag_133\n /* \"#utility.yul\":7606:7612 */\n dup3\n /* \"#utility.yul\":7598:7604 */\n dup3\n /* \"#utility.yul\":7592:7596 */\n dup6\n /* \"#utility.yul\":7546:7613 */\n tag_38\n jump\t// in\ntag_133:\n /* \"#utility.yul\":7640:7641 */\n 0x00\n /* \"#utility.yul\":7664:7668 */\n 0x20\n /* \"#utility.yul\":7651:7668 */\n swap1\n pop\n /* \"#utility.yul\":7696:7698 */\n 0x1f\n /* \"#utility.yul\":7688:7694 */\n dup4\n /* \"#utility.yul\":7685:7699 */\n gt\n /* \"#utility.yul\":7713:7714 */\n 0x01\n /* \"#utility.yul\":7708:8326 */\n dup2\n eq\n tag_135\n jumpi\n /* \"#utility.yul\":8370:8371 */\n 0x00\n /* \"#utility.yul\":8387:8393 */\n dup5\n /* \"#utility.yul\":8384:8461 */\n iszero\n tag_136\n jumpi\n /* \"#utility.yul\":8436:8445 */\n dup3\n /* \"#utility.yul\":8431:8434 */\n dup8\n /* \"#utility.yul\":8427:8446 */\n add\n /* \"#utility.yul\":8421:8447 */\n mload\n /* \"#utility.yul\":8412:8447 */\n swap1\n pop\n /* \"#utility.yul\":8384:8461 */\ntag_136:\n /* \"#utility.yul\":8487:8554 */\n tag_137\n /* \"#utility.yul\":8547:8553 */\n dup6\n /* \"#utility.yul\":8540:8545 */\n dup3\n /* \"#utility.yul\":8487:8554 */\n tag_41\n jump\t// in\ntag_137:\n /* \"#utility.yul\":8481:8485 */\n dup7\n /* \"#utility.yul\":8474:8555 */\n sstore\n /* \"#utility.yul\":8343:8565 */\n pop\n /* \"#utility.yul\":7678:8565 */\n jump(tag_134)\n /* \"#utility.yul\":7708:8326 */\ntag_135:\n /* \"#utility.yul\":7760:7764 */\n 0x1f\n /* \"#utility.yul\":7756:7765 */\n not\n /* \"#utility.yul\":7748:7754 */\n dup5\n /* \"#utility.yul\":7744:7766 */\n and\n /* \"#utility.yul\":7794:7831 */\n tag_138\n /* \"#utility.yul\":7826:7830 */\n dup7\n /* \"#utility.yul\":7794:7831 */\n tag_26\n jump\t// in\ntag_138:\n /* \"#utility.yul\":7853:7854 */\n 0x00\n /* \"#utility.yul\":7867:8075 */\ntag_139:\n /* \"#utility.yul\":7881:7888 */\n dup3\n /* \"#utility.yul\":7878:7879 */\n dup2\n /* \"#utility.yul\":7875:7889 */\n lt\n /* \"#utility.yul\":7867:8075 */\n iszero\n tag_141\n jumpi\n /* \"#utility.yul\":7960:7969 */\n dup5\n /* \"#utility.yul\":7955:7958 */\n dup10\n /* \"#utility.yul\":7951:7970 */\n add\n /* \"#utility.yul\":7945:7971 */\n mload\n /* \"#utility.yul\":7937:7943 */\n dup3\n /* \"#utility.yul\":7930:7972 */\n sstore\n /* \"#utility.yul\":8011:8012 */\n 0x01\n /* \"#utility.yul\":8003:8009 */\n dup3\n /* \"#utility.yul\":7999:8013 */\n add\n /* \"#utility.yul\":7989:8013 */\n swap2\n pop\n /* \"#utility.yul\":8058:8060 */\n 0x20\n /* \"#utility.yul\":8047:8056 */\n dup6\n /* \"#utility.yul\":8043:8061 */\n add\n /* \"#utility.yul\":8030:8061 */\n swap5\n pop\n /* \"#utility.yul\":7904:7908 */\n 0x20\n /* \"#utility.yul\":7901:7902 */\n dup2\n /* \"#utility.yul\":7897:7909 */\n add\n /* \"#utility.yul\":7892:7909 */\n swap1\n pop\n /* \"#utility.yul\":7867:8075 */\n jump(tag_139)\ntag_141:\n /* \"#utility.yul\":8103:8109 */\n dup7\n /* \"#utility.yul\":8094:8101 */\n dup4\n /* \"#utility.yul\":8091:8110 */\n lt\n /* \"#utility.yul\":8088:8267 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":8161:8170 */\n dup5\n /* \"#utility.yul\":8156:8159 */\n dup10\n /* \"#utility.yul\":8152:8171 */\n add\n /* \"#utility.yul\":8146:8172 */\n mload\n /* \"#utility.yul\":8204:8252 */\n tag_143\n /* \"#utility.yul\":8246:8250 */\n 0x1f\n /* \"#utility.yul\":8238:8244 */\n dup10\n /* \"#utility.yul\":8234:8251 */\n and\n /* \"#utility.yul\":8223:8232 */\n dup3\n /* \"#utility.yul\":8204:8252 */\n tag_40\n jump\t// in\ntag_143:\n /* \"#utility.yul\":8196:8202 */\n dup4\n /* \"#utility.yul\":8189:8253 */\n sstore\n /* \"#utility.yul\":8111:8267 */\n pop\n /* \"#utility.yul\":8088:8267 */\ntag_142:\n /* \"#utility.yul\":8313:8314 */\n 0x01\n /* \"#utility.yul\":8309:8310 */\n 0x02\n /* \"#utility.yul\":8301:8307 */\n dup9\n /* \"#utility.yul\":8297:8311 */\n mul\n /* \"#utility.yul\":8293:8315 */\n add\n /* \"#utility.yul\":8287:8291 */\n dup9\n /* \"#utility.yul\":8280:8316 */\n sstore\n /* \"#utility.yul\":7715:8326 */\n pop\n pop\n pop\n /* \"#utility.yul\":7678:8565 */\ntag_134:\n pop\n /* \"#utility.yul\":7268:8571 */\n pop\n pop\n pop\n /* \"#utility.yul\":7176:8571 */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n jump(tag_2)\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_6:\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n mload(0x40)\n tag_33\n swap2\n swap1\n tag_24\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_24\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n tag_45\n jump\t// in\n tag_42:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_10:\n tag_47\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n tag_49\n swap2\n swap1\n tag_18\n jump\t// in\n tag_49:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_50\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_51\n swap2\n swap1\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n tag_50:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_24\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_54\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_55\n swap2\n swap1\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n tag_54:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_24\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_28\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_16:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2212:2225 string memory */\n 0x60\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2244:2249 _name */\n 0x03\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2237:2249 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4527:4531 bool */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4543:4556 address owner */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n tag_71\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4559:4569 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n jump\t// in\n tag_71:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4543:4571 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n tag_73\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4590:4595 owner */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4597:4604 spender */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4606:4612 amount */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4581:4589 _approve */\n tag_74\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n jump\t// in\n tag_73:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4630:4634 true */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4623:4634 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_26:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3316:3323 uint256 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3342:3354 _totalSupply */\n sload(0x02)\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3335:3354 return _totalSupply */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_32:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5300:5304 bool */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5316:5331 address spender */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n tag_77\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5334:5344 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n jump\t// in\n tag_77:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5316:5346 address spender = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n tag_78\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5372:5376 from */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5378:5385 spender */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5387:5393 amount */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5356:5371 _spendAllowance */\n tag_79\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n tag_80\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5414:5418 from */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5420:5422 to */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5424:5430 amount */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5404:5413 _transfer */\n tag_81\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n jump\t// in\n tag_80:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5448:5452 true */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5441:5452 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_35:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3162:3167 uint8 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3186:3188 18 */\n 0x12\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3179:3188 return 18 */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5942:5946 bool */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5958:5971 address owner */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n tag_84\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5974:5984 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n jump\t// in\n tag_84:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5958:5986 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_85\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6005:6010 owner */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6012:6019 spender */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6049:6059 addedValue */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n tag_86\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6031:6036 owner */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6038:6045 spender */\n dup10\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6021:6030 allowance */\n tag_61\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n jump\t// in\n tag_86:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6021:6059 allowance(owner, spender) + addedValue */\n tag_87\n swap2\n swap1\n tag_88\n jump\t// in\n tag_87:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5996:6004 _approve */\n tag_74\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_85:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6077:6081 true */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6070:6081 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_45:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3493:3500 uint256 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3519:3528 _balances */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3529:3536 account */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3512:3537 return _balances[account] */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_48:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2425:2438 string memory */\n 0x60\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2457:2464 _symbol */\n 0x04\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2450:2464 return _symbol */\n dup1\n sload\n tag_91\n swap1\n tag_65\n jump\t// in\n tag_91:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_92\n swap1\n tag_65\n jump\t// in\n tag_92:\n dup1\n iszero\n tag_93\n jumpi\n dup1\n 0x1f\n lt\n tag_94\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_93)\n tag_94:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_95:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_95\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_93:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6668:6672 bool */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6684:6697 address owner */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n tag_97\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6700:6710 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n jump\t// in\n tag_97:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6684:6712 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6722:6746 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n tag_98\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6759:6764 owner */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6766:6773 spender */\n dup7\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6749:6758 allowance */\n tag_61\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6722:6774 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6812:6827 subtractedValue */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6792:6808 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6792:6827 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6784:6869 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_99\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_100\n swap1\n tag_101\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_102\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6912:6917 owner */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6919:6926 spender */\n dup7\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6947:6962 subtractedValue */\n dup7\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6928:6944 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6928:6962 currentAllowance - subtractedValue */\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6903:6911 _approve */\n tag_74\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6991:6995 true */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6984:6995 return true */\n swap3\n pop\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3819:3823 bool */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3835:3848 address owner */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n tag_104\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3851:3861 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n jump\t// in\n tag_104:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3835:3863 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n tag_105\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3883:3888 owner */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3890:3892 to */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3894:3900 amount */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3873:3882 _transfer */\n tag_81\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n jump\t// in\n tag_105:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3918:3922 true */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3911:3922 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4076:4083 uint256 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4102:4113 _allowances */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4114:4119 owner */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4121:4128 spender */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":4095:4129 return _allowances[owner][spender] */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_72:\n /* \"@openzeppelin/contracts@4.9.3/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts@4.9.3/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_74:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10575:10576 0 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10558:10563 owner */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10550:10618 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10655:10656 0 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10636:10643 spender */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10628:10696 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10737:10743 amount */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10718 _allowances */\n 0x01\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10719:10724 owner */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10726:10733 spender */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10707:10743 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10774:10781 spender */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10767:10772 owner */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10783:10789 amount */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n mload(0x40)\n tag_115\n swap2\n swap1\n tag_28\n jump\t// in\n tag_115:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n tag_79:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11178:11202 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n tag_117\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11215:11220 owner */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11222:11229 spender */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11205:11214 allowance */\n tag_61\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n jump\t// in\n tag_117:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11178:11230 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11264:11281 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11244:11260 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11244:11281 currentAllowance != type(uint256).max */\n eq\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_118\n jumpi\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11325:11331 amount */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11305:11321 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11305:11331 currentAllowance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11297:11365 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_120\n swap1\n tag_121\n jump\t// in\n tag_120:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_119:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n tag_122\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11416:11421 owner */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11423:11430 spender */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11451:11457 amount */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11432:11448 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11432:11457 currentAllowance - amount */\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11407:11415 _approve */\n tag_74\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_122:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_118:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11168:11489 {... */\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n tag_81:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7568:7569 0 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7552:7556 from */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7544:7612 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7644:7645 0 */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7630:7632 to */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7622:7686 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_128\n swap1\n tag_129\n jump\t// in\n tag_128:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_127:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n tag_130\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7718:7722 from */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7724:7726 to */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7728:7734 amount */\n dup4\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7697:7717 _beforeTokenTransfer */\n tag_131\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_130:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7746:7765 uint256 fromBalance */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7768:7777 _balances */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7778:7782 from */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7746:7783 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7816:7822 amount */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7801:7812 fromBalance */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7801:7822 fromBalance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7793:7865 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_133\n swap1\n tag_134\n jump\t// in\n tag_133:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_132:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7931:7937 amount */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7917:7928 fromBalance */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7917:7937 fromBalance - amount */\n sub\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7899:7908 _balances */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7909:7913 from */\n dup7\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7899:7937 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8131:8137 amount */\n dup2\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8114:8123 _balances */\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n dup1\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8124:8126 to */\n dup6\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8114:8137 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8178:8180 to */\n dup3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8172:8176 from */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8182:8188 amount */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n mload(0x40)\n tag_135\n swap2\n swap1\n tag_28\n jump\t// in\n tag_135:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n tag_136\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8220:8224 from */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8226:8228 to */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8230:8236 amount */\n dup5\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8200:8219 _afterTokenTransfer */\n tag_137\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_136:\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7534:8244 {... */\n pop\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":12073:12164 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_131:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts@4.9.3/token/ERC20/ERC20.sol\":12752:12842 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_137:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_140:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\n tag_141:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:533 */\n tag_142:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_180:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_182\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_180)\n tag_182:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_143:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_144:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_185\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_140\n jump\t// in\n tag_185:\n /* \"#utility.yul\":818:889 */\n tag_186\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_141\n jump\t// in\n tag_186:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_187\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_142\n jump\t// in\n tag_187:\n /* \"#utility.yul\":988:1017 */\n tag_188\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_143\n jump\t// in\n tag_188:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_18:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_190\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_144\n jump\t// in\n tag_190:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_146:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1676:1802 */\n tag_148:\n /* \"#utility.yul\":1713:1720 */\n 0x00\n /* \"#utility.yul\":1753:1795 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1746:1751 */\n dup3\n /* \"#utility.yul\":1742:1796 */\n and\n /* \"#utility.yul\":1731:1796 */\n swap1\n pop\n /* \"#utility.yul\":1676:1802 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1808:1904 */\n tag_149:\n /* \"#utility.yul\":1845:1852 */\n 0x00\n /* \"#utility.yul\":1874:1898 */\n tag_196\n /* \"#utility.yul\":1892:1897 */\n dup3\n /* \"#utility.yul\":1874:1898 */\n tag_148\n jump\t// in\n tag_196:\n /* \"#utility.yul\":1863:1898 */\n swap1\n pop\n /* \"#utility.yul\":1808:1904 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1910:2032 */\n tag_150:\n /* \"#utility.yul\":1983:2007 */\n tag_198\n /* \"#utility.yul\":2001:2006 */\n dup2\n /* \"#utility.yul\":1983:2007 */\n tag_149\n jump\t// in\n tag_198:\n /* \"#utility.yul\":1976:1981 */\n dup2\n /* \"#utility.yul\":1973:2008 */\n eq\n /* \"#utility.yul\":1963:2026 */\n tag_199\n jumpi\n /* \"#utility.yul\":2022:2023 */\n 0x00\n /* \"#utility.yul\":2019:2020 */\n dup1\n /* \"#utility.yul\":2012:2024 */\n revert\n /* \"#utility.yul\":1963:2026 */\n tag_199:\n /* \"#utility.yul\":1910:2032 */\n pop\n jump\t// out\n /* \"#utility.yul\":2038:2177 */\n tag_151:\n /* \"#utility.yul\":2084:2089 */\n 0x00\n /* \"#utility.yul\":2122:2128 */\n dup2\n /* \"#utility.yul\":2109:2129 */\n calldataload\n /* \"#utility.yul\":2100:2129 */\n swap1\n pop\n /* \"#utility.yul\":2138:2171 */\n tag_201\n /* \"#utility.yul\":2165:2170 */\n dup2\n /* \"#utility.yul\":2138:2171 */\n tag_150\n jump\t// in\n tag_201:\n /* \"#utility.yul\":2038:2177 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2183:2260 */\n tag_152:\n /* \"#utility.yul\":2220:2227 */\n 0x00\n /* \"#utility.yul\":2249:2254 */\n dup2\n /* \"#utility.yul\":2238:2254 */\n swap1\n pop\n /* \"#utility.yul\":2183:2260 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2266:2388 */\n tag_153:\n /* \"#utility.yul\":2339:2363 */\n tag_204\n /* \"#utility.yul\":2357:2362 */\n dup2\n /* \"#utility.yul\":2339:2363 */\n tag_152\n jump\t// in\n tag_204:\n /* \"#utility.yul\":2332:2337 */\n dup2\n /* \"#utility.yul\":2329:2364 */\n eq\n /* \"#utility.yul\":2319:2382 */\n tag_205\n jumpi\n /* \"#utility.yul\":2378:2379 */\n 0x00\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2368:2380 */\n revert\n /* \"#utility.yul\":2319:2382 */\n tag_205:\n /* \"#utility.yul\":2266:2388 */\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2533 */\n tag_154:\n /* \"#utility.yul\":2440:2445 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup2\n /* \"#utility.yul\":2465:2485 */\n calldataload\n /* \"#utility.yul\":2456:2485 */\n swap1\n pop\n /* \"#utility.yul\":2494:2527 */\n tag_207\n /* \"#utility.yul\":2521:2526 */\n dup2\n /* \"#utility.yul\":2494:2527 */\n tag_153\n jump\t// in\n tag_207:\n /* \"#utility.yul\":2394:2533 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2539:3013 */\n tag_21:\n /* \"#utility.yul\":2607:2613 */\n 0x00\n /* \"#utility.yul\":2615:2621 */\n dup1\n /* \"#utility.yul\":2664:2666 */\n 0x40\n /* \"#utility.yul\":2652:2661 */\n dup4\n /* \"#utility.yul\":2643:2650 */\n dup6\n /* \"#utility.yul\":2639:2662 */\n sub\n /* \"#utility.yul\":2635:2667 */\n slt\n /* \"#utility.yul\":2632:2751 */\n iszero\n tag_209\n jumpi\n /* \"#utility.yul\":2670:2749 */\n tag_210\n tag_146\n jump\t// in\n tag_210:\n /* \"#utility.yul\":2632:2751 */\n tag_209:\n /* \"#utility.yul\":2790:2791 */\n 0x00\n /* \"#utility.yul\":2815:2868 */\n tag_211\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2851:2857 */\n dup3\n /* \"#utility.yul\":2840:2849 */\n dup7\n /* \"#utility.yul\":2836:2858 */\n add\n /* \"#utility.yul\":2815:2868 */\n tag_151\n jump\t// in\n tag_211:\n /* \"#utility.yul\":2805:2868 */\n swap3\n pop\n /* \"#utility.yul\":2761:2878 */\n pop\n /* \"#utility.yul\":2917:2919 */\n 0x20\n /* \"#utility.yul\":2943:2996 */\n tag_212\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2943:2996 */\n tag_154\n jump\t// in\n tag_212:\n /* \"#utility.yul\":2933:2996 */\n swap2\n pop\n /* \"#utility.yul\":2888:3006 */\n pop\n /* \"#utility.yul\":2539:3013 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3019:3109 */\n tag_155:\n /* \"#utility.yul\":3053:3060 */\n 0x00\n /* \"#utility.yul\":3096:3101 */\n dup2\n /* \"#utility.yul\":3089:3102 */\n iszero\n /* \"#utility.yul\":3082:3103 */\n iszero\n /* \"#utility.yul\":3071:3103 */\n swap1\n pop\n /* \"#utility.yul\":3019:3109 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3115:3224 */\n tag_156:\n /* \"#utility.yul\":3196:3217 */\n tag_215\n /* \"#utility.yul\":3211:3216 */\n dup2\n /* \"#utility.yul\":3196:3217 */\n tag_155\n jump\t// in\n tag_215:\n /* \"#utility.yul\":3191:3194 */\n dup3\n /* \"#utility.yul\":3184:3218 */\n mstore\n /* \"#utility.yul\":3115:3224 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3230:3440 */\n tag_24:\n /* \"#utility.yul\":3317:3321 */\n 0x00\n /* \"#utility.yul\":3355:3357 */\n 0x20\n /* \"#utility.yul\":3344:3353 */\n dup3\n /* \"#utility.yul\":3340:3358 */\n add\n /* \"#utility.yul\":3332:3358 */\n swap1\n pop\n /* \"#utility.yul\":3368:3433 */\n tag_217\n /* \"#utility.yul\":3430:3431 */\n 0x00\n /* \"#utility.yul\":3419:3428 */\n dup4\n /* \"#utility.yul\":3415:3432 */\n add\n /* \"#utility.yul\":3406:3412 */\n dup5\n /* \"#utility.yul\":3368:3433 */\n tag_156\n jump\t// in\n tag_217:\n /* \"#utility.yul\":3230:3440 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3564 */\n tag_157:\n /* \"#utility.yul\":3533:3557 */\n tag_219\n /* \"#utility.yul\":3551:3556 */\n dup2\n /* \"#utility.yul\":3533:3557 */\n tag_152\n jump\t// in\n tag_219:\n /* \"#utility.yul\":3528:3531 */\n dup3\n /* \"#utility.yul\":3521:3558 */\n mstore\n /* \"#utility.yul\":3446:3564 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3570:3792 */\n tag_28:\n /* \"#utility.yul\":3663:3667 */\n 0x00\n /* \"#utility.yul\":3701:3703 */\n 0x20\n /* \"#utility.yul\":3690:3699 */\n dup3\n /* \"#utility.yul\":3686:3704 */\n add\n /* \"#utility.yul\":3678:3704 */\n swap1\n pop\n /* \"#utility.yul\":3714:3785 */\n tag_221\n /* \"#utility.yul\":3782:3783 */\n 0x00\n /* \"#utility.yul\":3771:3780 */\n dup4\n /* \"#utility.yul\":3767:3784 */\n add\n /* \"#utility.yul\":3758:3764 */\n dup5\n /* \"#utility.yul\":3714:3785 */\n tag_157\n jump\t// in\n tag_221:\n /* \"#utility.yul\":3570:3792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3798:4417 */\n tag_31:\n /* \"#utility.yul\":3875:3881 */\n 0x00\n /* \"#utility.yul\":3883:3889 */\n dup1\n /* \"#utility.yul\":3891:3897 */\n 0x00\n /* \"#utility.yul\":3940:3942 */\n 0x60\n /* \"#utility.yul\":3928:3937 */\n dup5\n /* \"#utility.yul\":3919:3926 */\n dup7\n /* \"#utility.yul\":3915:3938 */\n sub\n /* \"#utility.yul\":3911:3943 */\n slt\n /* \"#utility.yul\":3908:4027 */\n iszero\n tag_223\n jumpi\n /* \"#utility.yul\":3946:4025 */\n tag_224\n tag_146\n jump\t// in\n tag_224:\n /* \"#utility.yul\":3908:4027 */\n tag_223:\n /* \"#utility.yul\":4066:4067 */\n 0x00\n /* \"#utility.yul\":4091:4144 */\n tag_225\n /* \"#utility.yul\":4136:4143 */\n dup7\n /* \"#utility.yul\":4127:4133 */\n dup3\n /* \"#utility.yul\":4116:4125 */\n dup8\n /* \"#utility.yul\":4112:4134 */\n add\n /* \"#utility.yul\":4091:4144 */\n tag_151\n jump\t// in\n tag_225:\n /* \"#utility.yul\":4081:4144 */\n swap4\n pop\n /* \"#utility.yul\":4037:4154 */\n pop\n /* \"#utility.yul\":4193:4195 */\n 0x20\n /* \"#utility.yul\":4219:4272 */\n tag_226\n /* \"#utility.yul\":4264:4271 */\n dup7\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4244:4253 */\n dup8\n /* \"#utility.yul\":4240:4262 */\n add\n /* \"#utility.yul\":4219:4272 */\n tag_151\n jump\t// in\n tag_226:\n /* \"#utility.yul\":4209:4272 */\n swap3\n pop\n /* \"#utility.yul\":4164:4282 */\n pop\n /* \"#utility.yul\":4321:4323 */\n 0x40\n /* \"#utility.yul\":4347:4400 */\n tag_227\n /* \"#utility.yul\":4392:4399 */\n dup7\n /* \"#utility.yul\":4383:4389 */\n dup3\n /* \"#utility.yul\":4372:4381 */\n dup8\n /* \"#utility.yul\":4368:4390 */\n add\n /* \"#utility.yul\":4347:4400 */\n tag_154\n jump\t// in\n tag_227:\n /* \"#utility.yul\":4337:4400 */\n swap2\n pop\n /* \"#utility.yul\":4292:4410 */\n pop\n /* \"#utility.yul\":3798:4417 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4423:4509 */\n tag_158:\n /* \"#utility.yul\":4458:4465 */\n 0x00\n /* \"#utility.yul\":4498:4502 */\n 0xff\n /* \"#utility.yul\":4491:4496 */\n dup3\n /* \"#utility.yul\":4487:4503 */\n and\n /* \"#utility.yul\":4476:4503 */\n swap1\n pop\n /* \"#utility.yul\":4423:4509 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4515:4627 */\n tag_159:\n /* \"#utility.yul\":4598:4620 */\n tag_230\n /* \"#utility.yul\":4614:4619 */\n dup2\n /* \"#utility.yul\":4598:4620 */\n tag_158\n jump\t// in\n tag_230:\n /* \"#utility.yul\":4593:4596 */\n dup3\n /* \"#utility.yul\":4586:4621 */\n mstore\n /* \"#utility.yul\":4515:4627 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4847 */\n tag_37:\n /* \"#utility.yul\":4722:4726 */\n 0x00\n /* \"#utility.yul\":4760:4762 */\n 0x20\n /* \"#utility.yul\":4749:4758 */\n dup3\n /* \"#utility.yul\":4745:4763 */\n add\n /* \"#utility.yul\":4737:4763 */\n swap1\n pop\n /* \"#utility.yul\":4773:4840 */\n tag_232\n /* \"#utility.yul\":4837:4838 */\n 0x00\n /* \"#utility.yul\":4826:4835 */\n dup4\n /* \"#utility.yul\":4822:4839 */\n add\n /* \"#utility.yul\":4813:4819 */\n dup5\n /* \"#utility.yul\":4773:4840 */\n tag_159\n jump\t// in\n tag_232:\n /* \"#utility.yul\":4633:4847 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4853:5182 */\n tag_44:\n /* \"#utility.yul\":4912:4918 */\n 0x00\n /* \"#utility.yul\":4961:4963 */\n 0x20\n /* \"#utility.yul\":4949:4958 */\n dup3\n /* \"#utility.yul\":4940:4947 */\n dup5\n /* \"#utility.yul\":4936:4959 */\n sub\n /* \"#utility.yul\":4932:4964 */\n slt\n /* \"#utility.yul\":4929:5048 */\n iszero\n tag_234\n jumpi\n /* \"#utility.yul\":4967:5046 */\n tag_235\n tag_146\n jump\t// in\n tag_235:\n /* \"#utility.yul\":4929:5048 */\n tag_234:\n /* \"#utility.yul\":5087:5088 */\n 0x00\n /* \"#utility.yul\":5112:5165 */\n tag_236\n /* \"#utility.yul\":5157:5164 */\n dup5\n /* \"#utility.yul\":5148:5154 */\n dup3\n /* \"#utility.yul\":5137:5146 */\n dup6\n /* \"#utility.yul\":5133:5155 */\n add\n /* \"#utility.yul\":5112:5165 */\n tag_151\n jump\t// in\n tag_236:\n /* \"#utility.yul\":5102:5165 */\n swap2\n pop\n /* \"#utility.yul\":5058:5175 */\n pop\n /* \"#utility.yul\":4853:5182 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5188:5662 */\n tag_60:\n /* \"#utility.yul\":5256:5262 */\n 0x00\n /* \"#utility.yul\":5264:5270 */\n dup1\n /* \"#utility.yul\":5313:5315 */\n 0x40\n /* \"#utility.yul\":5301:5310 */\n dup4\n /* \"#utility.yul\":5292:5299 */\n dup6\n /* \"#utility.yul\":5288:5311 */\n sub\n /* \"#utility.yul\":5284:5316 */\n slt\n /* \"#utility.yul\":5281:5400 */\n iszero\n tag_238\n jumpi\n /* \"#utility.yul\":5319:5398 */\n tag_239\n tag_146\n jump\t// in\n tag_239:\n /* \"#utility.yul\":5281:5400 */\n tag_238:\n /* \"#utility.yul\":5439:5440 */\n 0x00\n /* \"#utility.yul\":5464:5517 */\n tag_240\n /* \"#utility.yul\":5509:5516 */\n dup6\n /* \"#utility.yul\":5500:5506 */\n dup3\n /* \"#utility.yul\":5489:5498 */\n dup7\n /* \"#utility.yul\":5485:5507 */\n add\n /* \"#utility.yul\":5464:5517 */\n tag_151\n jump\t// in\n tag_240:\n /* \"#utility.yul\":5454:5517 */\n swap3\n pop\n /* \"#utility.yul\":5410:5527 */\n pop\n /* \"#utility.yul\":5566:5568 */\n 0x20\n /* \"#utility.yul\":5592:5645 */\n tag_241\n /* \"#utility.yul\":5637:5644 */\n dup6\n /* \"#utility.yul\":5628:5634 */\n dup3\n /* \"#utility.yul\":5617:5626 */\n dup7\n /* \"#utility.yul\":5613:5635 */\n add\n /* \"#utility.yul\":5592:5645 */\n tag_151\n jump\t// in\n tag_241:\n /* \"#utility.yul\":5582:5645 */\n swap2\n pop\n /* \"#utility.yul\":5537:5655 */\n pop\n /* \"#utility.yul\":5188:5662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5668:5848 */\n tag_160:\n /* \"#utility.yul\":5716:5793 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5713:5714 */\n 0x00\n /* \"#utility.yul\":5706:5794 */\n mstore\n /* \"#utility.yul\":5813:5817 */\n 0x22\n /* \"#utility.yul\":5810:5811 */\n 0x04\n /* \"#utility.yul\":5803:5818 */\n mstore\n /* \"#utility.yul\":5837:5841 */\n 0x24\n /* \"#utility.yul\":5834:5835 */\n 0x00\n /* \"#utility.yul\":5827:5842 */\n revert\n /* \"#utility.yul\":5854:6174 */\n tag_65:\n /* \"#utility.yul\":5898:5904 */\n 0x00\n /* \"#utility.yul\":5935:5936 */\n 0x02\n /* \"#utility.yul\":5929:5933 */\n dup3\n /* \"#utility.yul\":5925:5937 */\n div\n /* \"#utility.yul\":5915:5937 */\n swap1\n pop\n /* \"#utility.yul\":5982:5983 */\n 0x01\n /* \"#utility.yul\":5976:5980 */\n dup3\n /* \"#utility.yul\":5972:5984 */\n and\n /* \"#utility.yul\":6003:6021 */\n dup1\n /* \"#utility.yul\":5993:6074 */\n tag_244\n jumpi\n /* \"#utility.yul\":6059:6063 */\n 0x7f\n /* \"#utility.yul\":6051:6057 */\n dup3\n /* \"#utility.yul\":6047:6064 */\n and\n /* \"#utility.yul\":6037:6064 */\n swap2\n pop\n /* \"#utility.yul\":5993:6074 */\n tag_244:\n /* \"#utility.yul\":6121:6123 */\n 0x20\n /* \"#utility.yul\":6113:6119 */\n dup3\n /* \"#utility.yul\":6110:6124 */\n lt\n /* \"#utility.yul\":6090:6108 */\n dup2\n /* \"#utility.yul\":6087:6125 */\n sub\n /* \"#utility.yul\":6084:6168 */\n tag_245\n jumpi\n /* \"#utility.yul\":6140:6158 */\n tag_246\n tag_160\n jump\t// in\n tag_246:\n /* \"#utility.yul\":6084:6168 */\n tag_245:\n /* \"#utility.yul\":5905:6174 */\n pop\n /* \"#utility.yul\":5854:6174 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6180:6360 */\n tag_161:\n /* \"#utility.yul\":6228:6305 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6225:6226 */\n 0x00\n /* \"#utility.yul\":6218:6306 */\n mstore\n /* \"#utility.yul\":6325:6329 */\n 0x11\n /* \"#utility.yul\":6322:6323 */\n 0x04\n /* \"#utility.yul\":6315:6330 */\n mstore\n /* \"#utility.yul\":6349:6353 */\n 0x24\n /* \"#utility.yul\":6346:6347 */\n 0x00\n /* \"#utility.yul\":6339:6354 */\n revert\n /* \"#utility.yul\":6366:6557 */\n tag_88:\n /* \"#utility.yul\":6406:6409 */\n 0x00\n /* \"#utility.yul\":6425:6445 */\n tag_249\n /* \"#utility.yul\":6443:6444 */\n dup3\n /* \"#utility.yul\":6425:6445 */\n tag_152\n jump\t// in\n tag_249:\n /* \"#utility.yul\":6420:6445 */\n swap2\n pop\n /* \"#utility.yul\":6459:6479 */\n tag_250\n /* \"#utility.yul\":6477:6478 */\n dup4\n /* \"#utility.yul\":6459:6479 */\n tag_152\n jump\t// in\n tag_250:\n /* \"#utility.yul\":6454:6479 */\n swap3\n pop\n /* \"#utility.yul\":6502:6503 */\n dup3\n /* \"#utility.yul\":6499:6500 */\n dup3\n /* \"#utility.yul\":6495:6504 */\n add\n /* \"#utility.yul\":6488:6504 */\n swap1\n pop\n /* \"#utility.yul\":6523:6526 */\n dup1\n /* \"#utility.yul\":6520:6521 */\n dup3\n /* \"#utility.yul\":6517:6527 */\n gt\n /* \"#utility.yul\":6514:6550 */\n iszero\n tag_251\n jumpi\n /* \"#utility.yul\":6530:6548 */\n tag_252\n tag_161\n jump\t// in\n tag_252:\n /* \"#utility.yul\":6514:6550 */\n tag_251:\n /* \"#utility.yul\":6366:6557 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6563:6787 */\n tag_162:\n /* \"#utility.yul\":6703:6737 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":6699:6700 */\n 0x00\n /* \"#utility.yul\":6691:6697 */\n dup3\n /* \"#utility.yul\":6687:6701 */\n add\n /* \"#utility.yul\":6680:6738 */\n mstore\n /* \"#utility.yul\":6772:6779 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6767:6769 */\n 0x20\n /* \"#utility.yul\":6759:6765 */\n dup3\n /* \"#utility.yul\":6755:6770 */\n add\n /* \"#utility.yul\":6748:6780 */\n mstore\n /* \"#utility.yul\":6563:6787 */\n pop\n jump\t// out\n /* \"#utility.yul\":6793:7159 */\n tag_163:\n /* \"#utility.yul\":6935:6938 */\n 0x00\n /* \"#utility.yul\":6956:7023 */\n tag_255\n /* \"#utility.yul\":7020:7022 */\n 0x25\n /* \"#utility.yul\":7015:7018 */\n dup4\n /* \"#utility.yul\":6956:7023 */\n tag_141\n jump\t// in\n tag_255:\n /* \"#utility.yul\":6949:7023 */\n swap2\n pop\n /* \"#utility.yul\":7032:7125 */\n tag_256\n /* \"#utility.yul\":7121:7124 */\n dup3\n /* \"#utility.yul\":7032:7125 */\n tag_162\n jump\t// in\n tag_256:\n /* \"#utility.yul\":7150:7152 */\n 0x40\n /* \"#utility.yul\":7145:7148 */\n dup3\n /* \"#utility.yul\":7141:7153 */\n add\n /* \"#utility.yul\":7134:7153 */\n swap1\n pop\n /* \"#utility.yul\":6793:7159 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7165:7584 */\n tag_101:\n /* \"#utility.yul\":7331:7335 */\n 0x00\n /* \"#utility.yul\":7369:7371 */\n 0x20\n /* \"#utility.yul\":7358:7367 */\n dup3\n /* \"#utility.yul\":7354:7372 */\n add\n /* \"#utility.yul\":7346:7372 */\n swap1\n pop\n /* \"#utility.yul\":7418:7427 */\n dup2\n /* \"#utility.yul\":7412:7416 */\n dup2\n /* \"#utility.yul\":7408:7428 */\n sub\n /* \"#utility.yul\":7404:7405 */\n 0x00\n /* \"#utility.yul\":7393:7402 */\n dup4\n /* \"#utility.yul\":7389:7406 */\n add\n /* \"#utility.yul\":7382:7429 */\n mstore\n /* \"#utility.yul\":7446:7577 */\n tag_258\n /* \"#utility.yul\":7572:7576 */\n dup2\n /* \"#utility.yul\":7446:7577 */\n tag_163\n jump\t// in\n tag_258:\n /* \"#utility.yul\":7438:7577 */\n swap1\n pop\n /* \"#utility.yul\":7165:7584 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7590:7813 */\n tag_164:\n /* \"#utility.yul\":7730:7764 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":7726:7727 */\n 0x00\n /* \"#utility.yul\":7718:7724 */\n dup3\n /* \"#utility.yul\":7714:7728 */\n add\n /* \"#utility.yul\":7707:7765 */\n mstore\n /* \"#utility.yul\":7799:7805 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7794:7796 */\n 0x20\n /* \"#utility.yul\":7786:7792 */\n dup3\n /* \"#utility.yul\":7782:7797 */\n add\n /* \"#utility.yul\":7775:7806 */\n mstore\n /* \"#utility.yul\":7590:7813 */\n pop\n jump\t// out\n /* \"#utility.yul\":7819:8185 */\n tag_165:\n /* \"#utility.yul\":7961:7964 */\n 0x00\n /* \"#utility.yul\":7982:8049 */\n tag_261\n /* \"#utility.yul\":8046:8048 */\n 0x24\n /* \"#utility.yul\":8041:8044 */\n dup4\n /* \"#utility.yul\":7982:8049 */\n tag_141\n jump\t// in\n tag_261:\n /* \"#utility.yul\":7975:8049 */\n swap2\n pop\n /* \"#utility.yul\":8058:8151 */\n tag_262\n /* \"#utility.yul\":8147:8150 */\n dup3\n /* \"#utility.yul\":8058:8151 */\n tag_164\n jump\t// in\n tag_262:\n /* \"#utility.yul\":8176:8178 */\n 0x40\n /* \"#utility.yul\":8171:8174 */\n dup3\n /* \"#utility.yul\":8167:8179 */\n add\n /* \"#utility.yul\":8160:8179 */\n swap1\n pop\n /* \"#utility.yul\":7819:8185 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8191:8610 */\n tag_111:\n /* \"#utility.yul\":8357:8361 */\n 0x00\n /* \"#utility.yul\":8395:8397 */\n 0x20\n /* \"#utility.yul\":8384:8393 */\n dup3\n /* \"#utility.yul\":8380:8398 */\n add\n /* \"#utility.yul\":8372:8398 */\n swap1\n pop\n /* \"#utility.yul\":8444:8453 */\n dup2\n /* \"#utility.yul\":8438:8442 */\n dup2\n /* \"#utility.yul\":8434:8454 */\n sub\n /* \"#utility.yul\":8430:8431 */\n 0x00\n /* \"#utility.yul\":8419:8428 */\n dup4\n /* \"#utility.yul\":8415:8432 */\n add\n /* \"#utility.yul\":8408:8455 */\n mstore\n /* \"#utility.yul\":8472:8603 */\n tag_264\n /* \"#utility.yul\":8598:8602 */\n dup2\n /* \"#utility.yul\":8472:8603 */\n tag_165\n jump\t// in\n tag_264:\n /* \"#utility.yul\":8464:8603 */\n swap1\n pop\n /* \"#utility.yul\":8191:8610 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8616:8837 */\n tag_166:\n /* \"#utility.yul\":8756:8790 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":8752:8753 */\n 0x00\n /* \"#utility.yul\":8744:8750 */\n dup3\n /* \"#utility.yul\":8740:8754 */\n add\n /* \"#utility.yul\":8733:8791 */\n mstore\n /* \"#utility.yul\":8825:8829 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":8820:8822 */\n 0x20\n /* \"#utility.yul\":8812:8818 */\n dup3\n /* \"#utility.yul\":8808:8823 */\n add\n /* \"#utility.yul\":8801:8830 */\n mstore\n /* \"#utility.yul\":8616:8837 */\n pop\n jump\t// out\n /* \"#utility.yul\":8843:9209 */\n tag_167:\n /* \"#utility.yul\":8985:8988 */\n 0x00\n /* \"#utility.yul\":9006:9073 */\n tag_267\n /* \"#utility.yul\":9070:9072 */\n 0x22\n /* \"#utility.yul\":9065:9068 */\n dup4\n /* \"#utility.yul\":9006:9073 */\n tag_141\n jump\t// in\n tag_267:\n /* \"#utility.yul\":8999:9073 */\n swap2\n pop\n /* \"#utility.yul\":9082:9175 */\n tag_268\n /* \"#utility.yul\":9171:9174 */\n dup3\n /* \"#utility.yul\":9082:9175 */\n tag_166\n jump\t// in\n tag_268:\n /* \"#utility.yul\":9200:9202 */\n 0x40\n /* \"#utility.yul\":9195:9198 */\n dup3\n /* \"#utility.yul\":9191:9203 */\n add\n /* \"#utility.yul\":9184:9203 */\n swap1\n pop\n /* \"#utility.yul\":8843:9209 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9215:9634 */\n tag_114:\n /* \"#utility.yul\":9381:9385 */\n 0x00\n /* \"#utility.yul\":9419:9421 */\n 0x20\n /* \"#utility.yul\":9408:9417 */\n dup3\n /* \"#utility.yul\":9404:9422 */\n add\n /* \"#utility.yul\":9396:9422 */\n swap1\n pop\n /* \"#utility.yul\":9468:9477 */\n dup2\n /* \"#utility.yul\":9462:9466 */\n dup2\n /* \"#utility.yul\":9458:9478 */\n sub\n /* \"#utility.yul\":9454:9455 */\n 0x00\n /* \"#utility.yul\":9443:9452 */\n dup4\n /* \"#utility.yul\":9439:9456 */\n add\n /* \"#utility.yul\":9432:9479 */\n mstore\n /* \"#utility.yul\":9496:9627 */\n tag_270\n /* \"#utility.yul\":9622:9626 */\n dup2\n /* \"#utility.yul\":9496:9627 */\n tag_167\n jump\t// in\n tag_270:\n /* \"#utility.yul\":9488:9627 */\n swap1\n pop\n /* \"#utility.yul\":9215:9634 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9640:9819 */\n tag_168:\n /* \"#utility.yul\":9780:9811 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":9776:9777 */\n 0x00\n /* \"#utility.yul\":9768:9774 */\n dup3\n /* \"#utility.yul\":9764:9778 */\n add\n /* \"#utility.yul\":9757:9812 */\n mstore\n /* \"#utility.yul\":9640:9819 */\n pop\n jump\t// out\n /* \"#utility.yul\":9825:10191 */\n tag_169:\n /* \"#utility.yul\":9967:9970 */\n 0x00\n /* \"#utility.yul\":9988:10055 */\n tag_273\n /* \"#utility.yul\":10052:10054 */\n 0x1d\n /* \"#utility.yul\":10047:10050 */\n dup4\n /* \"#utility.yul\":9988:10055 */\n tag_141\n jump\t// in\n tag_273:\n /* \"#utility.yul\":9981:10055 */\n swap2\n pop\n /* \"#utility.yul\":10064:10157 */\n tag_274\n /* \"#utility.yul\":10153:10156 */\n dup3\n /* \"#utility.yul\":10064:10157 */\n tag_168\n jump\t// in\n tag_274:\n /* \"#utility.yul\":10182:10184 */\n 0x20\n /* \"#utility.yul\":10177:10180 */\n dup3\n /* \"#utility.yul\":10173:10185 */\n add\n /* \"#utility.yul\":10166:10185 */\n swap1\n pop\n /* \"#utility.yul\":9825:10191 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10197:10616 */\n tag_121:\n /* \"#utility.yul\":10363:10367 */\n 0x00\n /* \"#utility.yul\":10401:10403 */\n 0x20\n /* \"#utility.yul\":10390:10399 */\n dup3\n /* \"#utility.yul\":10386:10404 */\n add\n /* \"#utility.yul\":10378:10404 */\n swap1\n pop\n /* \"#utility.yul\":10450:10459 */\n dup2\n /* \"#utility.yul\":10444:10448 */\n dup2\n /* \"#utility.yul\":10440:10460 */\n sub\n /* \"#utility.yul\":10436:10437 */\n 0x00\n /* \"#utility.yul\":10425:10434 */\n dup4\n /* \"#utility.yul\":10421:10438 */\n add\n /* \"#utility.yul\":10414:10461 */\n mstore\n /* \"#utility.yul\":10478:10609 */\n tag_276\n /* \"#utility.yul\":10604:10608 */\n dup2\n /* \"#utility.yul\":10478:10609 */\n tag_169\n jump\t// in\n tag_276:\n /* \"#utility.yul\":10470:10609 */\n swap1\n pop\n /* \"#utility.yul\":10197:10616 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10622:10846 */\n tag_170:\n /* \"#utility.yul\":10762:10796 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":10758:10759 */\n 0x00\n /* \"#utility.yul\":10750:10756 */\n dup3\n /* \"#utility.yul\":10746:10760 */\n add\n /* \"#utility.yul\":10739:10797 */\n mstore\n /* \"#utility.yul\":10831:10838 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10826:10828 */\n 0x20\n /* \"#utility.yul\":10818:10824 */\n dup3\n /* \"#utility.yul\":10814:10829 */\n add\n /* \"#utility.yul\":10807:10839 */\n mstore\n /* \"#utility.yul\":10622:10846 */\n pop\n jump\t// out\n /* \"#utility.yul\":10852:11218 */\n tag_171:\n /* \"#utility.yul\":10994:10997 */\n 0x00\n /* \"#utility.yul\":11015:11082 */\n tag_279\n /* \"#utility.yul\":11079:11081 */\n 0x25\n /* \"#utility.yul\":11074:11077 */\n dup4\n /* \"#utility.yul\":11015:11082 */\n tag_141\n jump\t// in\n tag_279:\n /* \"#utility.yul\":11008:11082 */\n swap2\n pop\n /* \"#utility.yul\":11091:11184 */\n tag_280\n /* \"#utility.yul\":11180:11183 */\n dup3\n /* \"#utility.yul\":11091:11184 */\n tag_170\n jump\t// in\n tag_280:\n /* \"#utility.yul\":11209:11211 */\n 0x40\n /* \"#utility.yul\":11204:11207 */\n dup3\n /* \"#utility.yul\":11200:11212 */\n add\n /* \"#utility.yul\":11193:11212 */\n swap1\n pop\n /* \"#utility.yul\":10852:11218 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11224:11643 */\n tag_126:\n /* \"#utility.yul\":11390:11394 */\n 0x00\n /* \"#utility.yul\":11428:11430 */\n 0x20\n /* \"#utility.yul\":11417:11426 */\n dup3\n /* \"#utility.yul\":11413:11431 */\n add\n /* \"#utility.yul\":11405:11431 */\n swap1\n pop\n /* \"#utility.yul\":11477:11486 */\n dup2\n /* \"#utility.yul\":11471:11475 */\n dup2\n /* \"#utility.yul\":11467:11487 */\n sub\n /* \"#utility.yul\":11463:11464 */\n 0x00\n /* \"#utility.yul\":11452:11461 */\n dup4\n /* \"#utility.yul\":11448:11465 */\n add\n /* \"#utility.yul\":11441:11488 */\n mstore\n /* \"#utility.yul\":11505:11636 */\n tag_282\n /* \"#utility.yul\":11631:11635 */\n dup2\n /* \"#utility.yul\":11505:11636 */\n tag_171\n jump\t// in\n tag_282:\n /* \"#utility.yul\":11497:11636 */\n swap1\n pop\n /* \"#utility.yul\":11224:11643 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11649:11871 */\n tag_172:\n /* \"#utility.yul\":11789:11823 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":11785:11786 */\n 0x00\n /* \"#utility.yul\":11777:11783 */\n dup3\n /* \"#utility.yul\":11773:11787 */\n add\n /* \"#utility.yul\":11766:11824 */\n mstore\n /* \"#utility.yul\":11858:11863 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11853:11855 */\n 0x20\n /* \"#utility.yul\":11845:11851 */\n dup3\n /* \"#utility.yul\":11841:11856 */\n add\n /* \"#utility.yul\":11834:11864 */\n mstore\n /* \"#utility.yul\":11649:11871 */\n pop\n jump\t// out\n /* \"#utility.yul\":11877:12243 */\n tag_173:\n /* \"#utility.yul\":12019:12022 */\n 0x00\n /* \"#utility.yul\":12040:12107 */\n tag_285\n /* \"#utility.yul\":12104:12106 */\n 0x23\n /* \"#utility.yul\":12099:12102 */\n dup4\n /* \"#utility.yul\":12040:12107 */\n tag_141\n jump\t// in\n tag_285:\n /* \"#utility.yul\":12033:12107 */\n swap2\n pop\n /* \"#utility.yul\":12116:12209 */\n tag_286\n /* \"#utility.yul\":12205:12208 */\n dup3\n /* \"#utility.yul\":12116:12209 */\n tag_172\n jump\t// in\n tag_286:\n /* \"#utility.yul\":12234:12236 */\n 0x40\n /* \"#utility.yul\":12229:12232 */\n dup3\n /* \"#utility.yul\":12225:12237 */\n add\n /* \"#utility.yul\":12218:12237 */\n swap1\n pop\n /* \"#utility.yul\":11877:12243 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12249:12668 */\n tag_129:\n /* \"#utility.yul\":12415:12419 */\n 0x00\n /* \"#utility.yul\":12453:12455 */\n 0x20\n /* \"#utility.yul\":12442:12451 */\n dup3\n /* \"#utility.yul\":12438:12456 */\n add\n /* \"#utility.yul\":12430:12456 */\n swap1\n pop\n /* \"#utility.yul\":12502:12511 */\n dup2\n /* \"#utility.yul\":12496:12500 */\n dup2\n /* \"#utility.yul\":12492:12512 */\n sub\n /* \"#utility.yul\":12488:12489 */\n 0x00\n /* \"#utility.yul\":12477:12486 */\n dup4\n /* \"#utility.yul\":12473:12490 */\n add\n /* \"#utility.yul\":12466:12513 */\n mstore\n /* \"#utility.yul\":12530:12661 */\n tag_288\n /* \"#utility.yul\":12656:12660 */\n dup2\n /* \"#utility.yul\":12530:12661 */\n tag_173\n jump\t// in\n tag_288:\n /* \"#utility.yul\":12522:12661 */\n swap1\n pop\n /* \"#utility.yul\":12249:12668 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12674:12899 */\n tag_174:\n /* \"#utility.yul\":12814:12848 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":12810:12811 */\n 0x00\n /* \"#utility.yul\":12802:12808 */\n dup3\n /* \"#utility.yul\":12798:12812 */\n add\n /* \"#utility.yul\":12791:12849 */\n mstore\n /* \"#utility.yul\":12883:12891 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12878:12880 */\n 0x20\n /* \"#utility.yul\":12870:12876 */\n dup3\n /* \"#utility.yul\":12866:12881 */\n add\n /* \"#utility.yul\":12859:12892 */\n mstore\n /* \"#utility.yul\":12674:12899 */\n pop\n jump\t// out\n /* \"#utility.yul\":12905:13271 */\n tag_175:\n /* \"#utility.yul\":13047:13050 */\n 0x00\n /* \"#utility.yul\":13068:13135 */\n tag_291\n /* \"#utility.yul\":13132:13134 */\n 0x26\n /* \"#utility.yul\":13127:13130 */\n dup4\n /* \"#utility.yul\":13068:13135 */\n tag_141\n jump\t// in\n tag_291:\n /* \"#utility.yul\":13061:13135 */\n swap2\n pop\n /* \"#utility.yul\":13144:13237 */\n tag_292\n /* \"#utility.yul\":13233:13236 */\n dup3\n /* \"#utility.yul\":13144:13237 */\n tag_174\n jump\t// in\n tag_292:\n /* \"#utility.yul\":13262:13264 */\n 0x40\n /* \"#utility.yul\":13257:13260 */\n dup3\n /* \"#utility.yul\":13253:13265 */\n add\n /* \"#utility.yul\":13246:13265 */\n swap1\n pop\n /* \"#utility.yul\":12905:13271 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13277:13696 */\n tag_134:\n /* \"#utility.yul\":13443:13447 */\n 0x00\n /* \"#utility.yul\":13481:13483 */\n 0x20\n /* \"#utility.yul\":13470:13479 */\n dup3\n /* \"#utility.yul\":13466:13484 */\n add\n /* \"#utility.yul\":13458:13484 */\n swap1\n pop\n /* \"#utility.yul\":13530:13539 */\n dup2\n /* \"#utility.yul\":13524:13528 */\n dup2\n /* \"#utility.yul\":13520:13540 */\n sub\n /* \"#utility.yul\":13516:13517 */\n 0x00\n /* \"#utility.yul\":13505:13514 */\n dup4\n /* \"#utility.yul\":13501:13518 */\n add\n /* \"#utility.yul\":13494:13541 */\n mstore\n /* \"#utility.yul\":13558:13689 */\n tag_294\n /* \"#utility.yul\":13684:13688 */\n dup2\n /* \"#utility.yul\":13558:13689 */\n tag_175\n jump\t// in\n tag_294:\n /* \"#utility.yul\":13550:13689 */\n swap1\n pop\n /* \"#utility.yul\":13277:13696 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122041b9119d6dd5d01c264a2bb529b9051321182996268dc6617426630b16225c5164736f6c63430008120033\n}\n",
"bytecode": {
"functionDebugData": {
"@_265": {
"entryPoint": null,
"id": 265,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 376,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 451,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 502,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 247,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 99,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 278,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 746,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 635,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1067,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1028,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 902,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1222,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 332,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 767,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 693,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1192,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 193,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 892,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1160,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 646,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 146,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 942,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 119,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 124,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 114,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 109,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 129,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 783,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1000,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 796,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 952,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 995,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:8574:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:7"
},
"nodeType": "YulFunctionCall",
"src": "67:9:7"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:7"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:7",
"type": ""
}
],
"src": "7:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:7"
},
"nodeType": "YulFunctionCall",
"src": "187:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:7"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:7"
},
"nodeType": "YulFunctionCall",
"src": "310:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:7"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:7"
},
"nodeType": "YulFunctionCall",
"src": "433:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:7"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:7"
},
"nodeType": "YulFunctionCall",
"src": "556:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:7"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:7"
},
"nodeType": "YulFunctionCall",
"src": "652:14:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:7"
},
"nodeType": "YulFunctionCall",
"src": "668:7:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:7"
},
"nodeType": "YulFunctionCall",
"src": "648:28:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:7"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:7",
"type": ""
}
],
"src": "580:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:7"
},
"nodeType": "YulFunctionCall",
"src": "726:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:7",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:7"
},
"nodeType": "YulFunctionCall",
"src": "823:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:7"
},
"nodeType": "YulFunctionCall",
"src": "847:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:7"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:7",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:7"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:7"
},
"nodeType": "YulFunctionCall",
"src": "957:27:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:7"
},
"nodeType": "YulFunctionCall",
"src": "945:40:7"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:7"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:7"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:7"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:7"
},
"nodeType": "YulIf",
"src": "1030:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:7",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:7"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:7"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:7",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:7",
"type": ""
}
],
"src": "874:281:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:7",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:7"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:7"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:7"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:7"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:7"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:7",
"type": ""
}
],
"src": "1161:129:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:7"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:7"
},
"nodeType": "YulIf",
"src": "1434:56:7"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:7"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:7"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:7",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:7"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:7"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:7",
"type": ""
}
],
"src": "1296:308:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1672:184:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1682:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1691:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1686:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1751:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1776:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1781:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1772:11:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1795:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1800:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1791:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1791:11:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1785:5:7"
},
"nodeType": "YulFunctionCall",
"src": "1785:18:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1765:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1765:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "1765:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1715:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1709:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1709:13:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1723:19:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1725:15:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1734:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1737:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1730:10:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1725:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1705:3:7",
"statements": []
},
"src": "1701:113:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1834:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1839:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1830:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1830:16:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1848:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1823:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1823:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "1823:27:7"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1654:3:7",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1659:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1664:6:7",
"type": ""
}
],
"src": "1610:246:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1957:339:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1967:75:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2034:6:7"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1992:41:7"
},
"nodeType": "YulFunctionCall",
"src": "1992:49:7"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1976:15:7"
},
"nodeType": "YulFunctionCall",
"src": "1976:66:7"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1967:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2058:5:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2065:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2051:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2051:21:7"
},
"nodeType": "YulExpressionStatement",
"src": "2051:21:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2081:27:7",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2096:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2103:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2092:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2092:16:7"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2085:3:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2148:77:7"
},
"nodeType": "YulFunctionCall",
"src": "2148:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "2148:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2127:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2132:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2123:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2123:16:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2141:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2120:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2120:25:7"
},
"nodeType": "YulIf",
"src": "2117:112:7"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2273:3:7"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2278:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2283:6:7"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2238:34:7"
},
"nodeType": "YulFunctionCall",
"src": "2238:52:7"
},
"nodeType": "YulExpressionStatement",
"src": "2238:52:7"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1930:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1943:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1951:5:7",
"type": ""
}
],
"src": "1862:434:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2389:282:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2438:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2440:77:7"
},
"nodeType": "YulFunctionCall",
"src": "2440:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "2440:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2417:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2425:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2413:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2413:17:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2432:3:7"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2409:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2409:27:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2402:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2402:35:7"
},
"nodeType": "YulIf",
"src": "2399:122:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2530:27:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2550:6:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2544:5:7"
},
"nodeType": "YulFunctionCall",
"src": "2544:13:7"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2534:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2566:99:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2638:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2634:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2634:17:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2653:6:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2661:3:7"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2575:58:7"
},
"nodeType": "YulFunctionCall",
"src": "2575:90:7"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2566:5:7"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2367:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2375:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2383:5:7",
"type": ""
}
],
"src": "2316:355:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2791:739:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2837:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2839:77:7"
},
"nodeType": "YulFunctionCall",
"src": "2839:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "2839:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2812:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2821:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2808:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2808:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2833:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2804:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2804:32:7"
},
"nodeType": "YulIf",
"src": "2801:119:7"
},
{
"nodeType": "YulBlock",
"src": "2930:291:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2945:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2969:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2980:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2965:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2965:17:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2959:5:7"
},
"nodeType": "YulFunctionCall",
"src": "2959:24:7"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2949:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3030:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3032:77:7"
},
"nodeType": "YulFunctionCall",
"src": "3032:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "3032:79:7"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3002:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3010:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2999:30:7"
},
"nodeType": "YulIf",
"src": "2996:117:7"
},
{
"nodeType": "YulAssignment",
"src": "3127:84:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3183:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3194:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3179:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3179:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3203:7:7"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3137:41:7"
},
"nodeType": "YulFunctionCall",
"src": "3137:74:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3127:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3231:292:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3246:39:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3270:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3281:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3266:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3266:18:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3260:5:7"
},
"nodeType": "YulFunctionCall",
"src": "3260:25:7"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3250:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3332:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3334:77:7"
},
"nodeType": "YulFunctionCall",
"src": "3334:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "3334:79:7"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3304:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3312:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3301:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3301:30:7"
},
"nodeType": "YulIf",
"src": "3298:117:7"
},
{
"nodeType": "YulAssignment",
"src": "3429:84:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3485:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3496:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3481:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3481:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3505:7:7"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3439:41:7"
},
"nodeType": "YulFunctionCall",
"src": "3439:74:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3429:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2753:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2764:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2776:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2784:6:7",
"type": ""
}
],
"src": "2677:853:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3595:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3622:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3616:5:7"
},
"nodeType": "YulFunctionCall",
"src": "3616:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3606:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3588:6:7",
"type": ""
}
],
"src": "3536:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3669:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3686:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3689:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3679:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3679:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "3679:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3783:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3786:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3776:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3776:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "3776:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3807:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3800:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3800:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "3800:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3641:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3888:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3902:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3908:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3898:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3898:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3888:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3919:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3949:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3955:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3945:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3945:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3923:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3996:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4010:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4024:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4032:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4020:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4020:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4010:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3976:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3969:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3969:26:7"
},
"nodeType": "YulIf",
"src": "3966:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4099:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4113:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4113:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4113:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4063:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4086:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4094:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4083:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4083:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4060:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4060:38:7"
},
"nodeType": "YulIf",
"src": "4057:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3862:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3871:6:7",
"type": ""
}
],
"src": "3827:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4207:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4217:11:7",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4225:3:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4217:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4245:1:7",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4248:3:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4238:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4238:14:7"
},
"nodeType": "YulExpressionStatement",
"src": "4238:14:7"
},
{
"nodeType": "YulAssignment",
"src": "4261:26:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4279:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4282:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "4269:9:7"
},
"nodeType": "YulFunctionCall",
"src": "4269:18:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4261:4:7"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "4194:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4202:4:7",
"type": ""
}
],
"src": "4153:141:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4344:49:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4354:33:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4372:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4379:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4368:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4384:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4364:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4364:23:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4354:6:7"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4327:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4337:6:7",
"type": ""
}
],
"src": "4300:93:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4452:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4462:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "4487:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4493:5:7"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4483:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4483:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "4462:8:7"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "4427:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4433:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "4443:8:7",
"type": ""
}
],
"src": "4399:107:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4588:317:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4598:35:7",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "4619:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4631:1:7",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4615:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4615:18:7"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "4602:9:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4642:109:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4673:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4684:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4654:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4654:97:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "4646:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4760:51:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "4791:9:7"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4802:8:7"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "4772:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4772:39:7"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4760:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4820:30:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4833:5:7"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4844:4:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4840:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4840:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4829:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4829:21:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4820:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4859:40:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4872:5:7"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "4883:8:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "4893:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4879:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4879:19:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4869:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4869:30:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4859:6:7"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4549:5:7",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "4556:10:7",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "4568:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4581:6:7",
"type": ""
}
],
"src": "4512:393:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4956:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4966:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4977:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4966:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4938:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4948:7:7",
"type": ""
}
],
"src": "4911:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5026:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5036:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5036:3:7"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5012:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5022:3:7",
"type": ""
}
],
"src": "4994:60:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5120:82:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5130:66:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5188:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5170:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5170:24:7"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5161:8:7"
},
"nodeType": "YulFunctionCall",
"src": "5161:34:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5143:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5143:53:7"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5130:9:7"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5100:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5110:9:7",
"type": ""
}
],
"src": "5060:142:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5255:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5265:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5272:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5265:3:7"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5241:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5251:3:7",
"type": ""
}
],
"src": "5208:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5365:193:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5375:63:7",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "5430:7:7"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5399:30:7"
},
"nodeType": "YulFunctionCall",
"src": "5399:39:7"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "5379:16:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5454:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5494:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5488:5:7"
},
"nodeType": "YulFunctionCall",
"src": "5488:11:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5501:6:7"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "5533:16:7"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "5509:23:7"
},
"nodeType": "YulFunctionCall",
"src": "5509:41:7"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "5460:27:7"
},
"nodeType": "YulFunctionCall",
"src": "5460:91:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5447:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5447:105:7"
},
"nodeType": "YulExpressionStatement",
"src": "5447:105:7"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5342:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5348:6:7",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "5356:7:7",
"type": ""
}
],
"src": "5289:269:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5613:24:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5623:8:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5630:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5623:3:7"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5609:3:7",
"type": ""
}
],
"src": "5564:73:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5696:136:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5706:46:7",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "5720:30:7"
},
"nodeType": "YulFunctionCall",
"src": "5720:32:7"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "5710:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5805:4:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5811:6:7"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "5819:6:7"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5761:43:7"
},
"nodeType": "YulFunctionCall",
"src": "5761:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "5761:65:7"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5682:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5688:6:7",
"type": ""
}
],
"src": "5643:189:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5888:136:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5955:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5999:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6006:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "5969:29:7"
},
"nodeType": "YulFunctionCall",
"src": "5969:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "5969:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5908:5:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5915:3:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5905:2:7"
},
"nodeType": "YulFunctionCall",
"src": "5905:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5920:26:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5922:22:7",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5935:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5942:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5931:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5931:13:7"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5922:5:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5902:2:7",
"statements": []
},
"src": "5898:120:7"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "5876:5:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5883:3:7",
"type": ""
}
],
"src": "5838:186:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6109:464:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6135:431:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6149:54:7",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "6197:5:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "6165:31:7"
},
"nodeType": "YulFunctionCall",
"src": "6165:38:7"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "6153:8:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6216:63:7",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6239:8:7"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6267:10:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6249:17:7"
},
"nodeType": "YulFunctionCall",
"src": "6249:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6235:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6235:44:7"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "6220:11:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6436:27:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6438:23:7",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6453:8:7"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6438:11:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "6420:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6432:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6417:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6417:18:7"
},
"nodeType": "YulIf",
"src": "6414:49:7"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "6505:11:7"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6522:8:7"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6550:3:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6532:17:7"
},
"nodeType": "YulFunctionCall",
"src": "6532:22:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6518:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6518:37:7"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "6476:28:7"
},
"nodeType": "YulFunctionCall",
"src": "6476:80:7"
},
"nodeType": "YulExpressionStatement",
"src": "6476:80:7"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6126:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6131:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6123:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6123:11:7"
},
"nodeType": "YulIf",
"src": "6120:446:7"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "6085:5:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6092:3:7",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "6097:10:7",
"type": ""
}
],
"src": "6030:543:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6642:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6652:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6677:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6683:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "6673:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6673:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6652:8:7"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6617:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6623:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6633:8:7",
"type": ""
}
],
"src": "6579:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6753:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6763:68:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6812:1:7",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "6815:5:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6808:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6808:13:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6827:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6823:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6823:6:7"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "6779:28:7"
},
"nodeType": "YulFunctionCall",
"src": "6779:51:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6775:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6775:56:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "6767:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6840:25:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6854:4:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6860:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6850:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6850:15:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6840:6:7"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6730:4:7",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "6736:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6746:6:7",
"type": ""
}
],
"src": "6702:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6957:214:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7090:37:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7117:4:7"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7123:3:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "7098:18:7"
},
"nodeType": "YulFunctionCall",
"src": "7098:29:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7090:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7136:29:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7147:4:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7157:1:7",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7160:3:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7153:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7153:11:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7144:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7144:21:7"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "7136:4:7"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6938:4:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6944:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "6952:4:7",
"type": ""
}
],
"src": "6876:295:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7268:1303:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7279:51:7",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7326:3:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7293:32:7"
},
"nodeType": "YulFunctionCall",
"src": "7293:37:7"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "7283:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7415:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7417:16:7"
},
"nodeType": "YulFunctionCall",
"src": "7417:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "7417:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7387:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7395:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7384:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7384:30:7"
},
"nodeType": "YulIf",
"src": "7381:56:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7447:52:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7493:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "7487:5:7"
},
"nodeType": "YulFunctionCall",
"src": "7487:11:7"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "7461:25:7"
},
"nodeType": "YulFunctionCall",
"src": "7461:38:7"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "7451:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7592:4:7"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "7598:6:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7606:6:7"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7546:45:7"
},
"nodeType": "YulFunctionCall",
"src": "7546:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "7546:67:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7623:18:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7640:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "7627:9:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7651:17:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7664:4:7",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7651:9:7"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "7715:611:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7729:37:7",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "7748:6:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7760:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7756:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7756:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7744:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7744:22:7"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "7733:7:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7780:51:7",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7826:4:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "7794:31:7"
},
"nodeType": "YulFunctionCall",
"src": "7794:37:7"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "7784:6:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7844:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7853:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7848:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7912:163:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7937:6:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7955:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "7960:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7951:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7951:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7945:5:7"
},
"nodeType": "YulFunctionCall",
"src": "7945:26:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "7930:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7930:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "7930:42:7"
},
{
"nodeType": "YulAssignment",
"src": "7989:24:7",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8003:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8011:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7999:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7999:14:7"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "7989:6:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8030:31:7",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8047:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8058:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8043:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8043:18:7"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8030:9:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7878:1:7"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "7881:7:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7875:2:7"
},
"nodeType": "YulFunctionCall",
"src": "7875:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7890:21:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7892:17:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7901:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7904:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7897:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7897:12:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7892:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7871:3:7",
"statements": []
},
"src": "7867:208:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8111:156:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8129:43:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8156:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8161:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8152:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8152:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8146:5:7"
},
"nodeType": "YulFunctionCall",
"src": "8146:26:7"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "8133:9:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8196:6:7"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "8223:9:7"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8238:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8246:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8234:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8234:17:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "8204:18:7"
},
"nodeType": "YulFunctionCall",
"src": "8204:48:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8189:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8189:64:7"
},
"nodeType": "YulExpressionStatement",
"src": "8189:64:7"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "8094:7:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8103:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8091:2:7"
},
"nodeType": "YulFunctionCall",
"src": "8091:19:7"
},
"nodeType": "YulIf",
"src": "8088:179:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8287:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8301:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8309:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8297:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8297:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8313:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8293:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8293:22:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8280:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8280:36:7"
},
"nodeType": "YulExpressionStatement",
"src": "8280:36:7"
}
]
},
"nodeType": "YulCase",
"src": "7708:618:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7713:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "8343:222:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8357:14:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8370:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8361:5:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8394:67:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8412:35:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8431:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8436:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8427:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8427:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8421:5:7"
},
"nodeType": "YulFunctionCall",
"src": "8421:26:7"
},
"variableNames": [
{
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment