Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AndyatFocallocal/2f5d16e82b87f8732d7844d46b056080 to your computer and use it in GitHub Desktop.
Save AndyatFocallocal/2f5d16e82b87f8732d7844d46b056080 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6350:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:8",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:8"
},
"nodeType": "YulFunctionCall",
"src": "170:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "246:88:8"
},
"nodeType": "YulFunctionCall",
"src": "246:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:8"
},
{
"nodeType": "YulAssignment",
"src": "348:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:8"
},
"nodeType": "YulFunctionCall",
"src": "355:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:8",
"type": ""
}
],
"src": "7:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "525:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "535:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "601:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "542:58:8"
},
"nodeType": "YulFunctionCall",
"src": "542:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "535:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "707:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "618:88:8"
},
"nodeType": "YulFunctionCall",
"src": "618:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "618:93:8"
},
{
"nodeType": "YulAssignment",
"src": "720:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:8"
},
"nodeType": "YulFunctionCall",
"src": "727:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "720:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "513:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "521:3:8",
"type": ""
}
],
"src": "379:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "816:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "838:17:8"
},
"nodeType": "YulFunctionCall",
"src": "838:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "826:6:8"
},
"nodeType": "YulFunctionCall",
"src": "826:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "826:37:8"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "804:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "811:3:8",
"type": ""
}
],
"src": "751:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1056:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1068:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1079:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1064:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1064:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1056:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1103:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1114:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1099:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1122:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1128:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1118:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1118:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1092:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1092:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1092:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1148:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1282:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1156:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1156:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1148:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1026:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1041:4:8",
"type": ""
}
],
"src": "875:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1471:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1481:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1493:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1504:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1489:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1489:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1481:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1528:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1524:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1524:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1547:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1553:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1543:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1543:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1517:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1517:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "1517:47:8"
},
{
"nodeType": "YulAssignment",
"src": "1573:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1707:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1581:124:8"
},
"nodeType": "YulFunctionCall",
"src": "1581:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1573:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1451:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1466:4:8",
"type": ""
}
],
"src": "1300:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1823:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1833:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1845:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1841:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1841:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1833:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1913:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1937:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1922:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1869:43:8"
},
"nodeType": "YulFunctionCall",
"src": "1869:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "1869:71:8"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1795:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1807:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1818:4:8",
"type": ""
}
],
"src": "1725:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2049:73:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2066:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2071:6:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2059:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2059:19:8"
},
"nodeType": "YulExpressionStatement",
"src": "2059:19:8"
},
{
"nodeType": "YulAssignment",
"src": "2087:29:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2106:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2111:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2102:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2102:14:8"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2087:11:8"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2021:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2026:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2037:11:8",
"type": ""
}
],
"src": "1953:169:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2172:261:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2182:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2205:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2187:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2187:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2182:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2216:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2239:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2221:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2221:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2216:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2379:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2381:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2381:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2381:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2300:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2375:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2303:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2303:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2297:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2297:81:8"
},
"nodeType": "YulIf",
"src": "2294:2:8"
},
{
"nodeType": "YulAssignment",
"src": "2411:16:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2422:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2425:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2418:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2418:9:8"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2411:3:8"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2159:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2162:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2168:3:8",
"type": ""
}
],
"src": "2128:305:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2512:775:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2522:15:8",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "2531:6:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2522:5:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2546:14:8",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "2555:5:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2546:4:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:677:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2692:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2694:16:8"
},
"nodeType": "YulFunctionCall",
"src": "2694:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "2694:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2670:4:8"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2680:3:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2685:4:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2676:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2676:14:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2667:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2667:24:8"
},
"nodeType": "YulIf",
"src": "2664:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2759:419:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3139:25:8",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3152:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3159:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3148:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3148:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3139:5:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2734:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2744:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2730:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2730:16:8"
},
"nodeType": "YulIf",
"src": "2727:2:8"
},
{
"nodeType": "YulAssignment",
"src": "3191:23:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3203:4:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3209:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3199:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3199:15:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3191:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3227:44:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3262:8:8"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "3239:22:8"
},
"nodeType": "YulFunctionCall",
"src": "3239:32:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3227:8:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2580:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2590:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2577:2:8"
},
"nodeType": "YulFunctionCall",
"src": "2577:15:8"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2593:2:8",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "2573:3:8",
"statements": []
},
"src": "2569:712:8"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "2467:6:8",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "2475:5:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2482:8:8",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2492:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2500:5:8",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2507:4:8",
"type": ""
}
],
"src": "2439:848:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3357:217:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3367:31:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3393:4:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3375:17:8"
},
"nodeType": "YulFunctionCall",
"src": "3375:23:8"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3367:4:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3407:37:8",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3435:8:8"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3419:15:8"
},
"nodeType": "YulFunctionCall",
"src": "3419:25:8"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3407:8:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3454:113:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3484:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3490:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3500:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3463:20:8"
},
"nodeType": "YulFunctionCall",
"src": "3463:104:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3454:5:8"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3332:4:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3338:8:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3351:5:8",
"type": ""
}
],
"src": "3293:281:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3640:1013:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3835:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3837:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3846:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3837:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3848:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3825:8:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3818:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3818:16:8"
},
"nodeType": "YulIf",
"src": "3815:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3880:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3882:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3891:1:8",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3882:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "3893:5:8"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3874:4:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3867:6:8"
},
"nodeType": "YulFunctionCall",
"src": "3867:12:8"
},
"nodeType": "YulIf",
"src": "3864:2:8"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4010:20:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4012:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4021:1:8",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4012:5:8"
}
]
},
{
"nodeType": "YulLeave",
"src": "4023:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4003:27:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:1:8",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:176:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4089:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4091:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4091:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4074:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4084:3:8",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4071:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:8"
},
"nodeType": "YulIf",
"src": "4068:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4124:25:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:1:8",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4140:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4133:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4133:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4124:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4182:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4182:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4182:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4168:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4175:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4165:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4165:14:8"
},
"nodeType": "YulIf",
"src": "4162:2:8"
},
{
"nodeType": "YulLeave",
"src": "4215:5:8"
}
]
},
"nodeType": "YulCase",
"src": "4039:191:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4044:1:8",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3960:4:8"
},
"nodeType": "YulSwitch",
"src": "3953:277:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4362:123:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4376:28:8",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4389:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4395:8:8"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4385:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4385:19:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4376:5:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4435:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4437:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4437:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4437:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4423:5:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4430:3:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4420:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4420:14:8"
},
"nodeType": "YulIf",
"src": "4417:2:8"
},
{
"nodeType": "YulLeave",
"src": "4470:5:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4265:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4271:2:8",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4262:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4262:12:8"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4279:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4289:2:8",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4276:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4276:16:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4258:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4258:35:8"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4314:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4320:3:8",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4311:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4311:13:8"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4329:8:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4339:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4326:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4326:16:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4307:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4307:36:8"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4242:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4242:111:8"
},
"nodeType": "YulIf",
"src": "4239:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4495:57:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4529:1:8",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4532:4:8"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4538:8:8"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4548:3:8"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "4510:18:8"
},
"nodeType": "YulFunctionCall",
"src": "4510:42:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4495:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4502:4:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4591:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4593:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4593:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4593:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4568:5:8"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "4579:3:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4584:4:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4575:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4575:14:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4565:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4565:25:8"
},
"nodeType": "YulIf",
"src": "4562:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4622:25:8",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4635:5:8"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4642:4:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4631:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4631:16:8"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4622:5:8"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3610:4:8",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3616:8:8",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "3626:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3634:5:8",
"type": ""
}
],
"src": "3580:1073:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4707:300:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4717:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4740:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4722:17:8"
},
"nodeType": "YulFunctionCall",
"src": "4722:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4717:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4751:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4774:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4756:17:8"
},
"nodeType": "YulFunctionCall",
"src": "4756:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4751:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4949:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4951:16:8"
},
"nodeType": "YulFunctionCall",
"src": "4951:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "4951:18:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4861:1:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4854:6:8"
},
"nodeType": "YulFunctionCall",
"src": "4854:9:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4847:6:8"
},
"nodeType": "YulFunctionCall",
"src": "4847:17:8"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4869:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4876:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4944:1:8"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4872:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4872:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4866:2:8"
},
"nodeType": "YulFunctionCall",
"src": "4866:81:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4843:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4843:105:8"
},
"nodeType": "YulIf",
"src": "4840:2:8"
},
{
"nodeType": "YulAssignment",
"src": "4981:20:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4996:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4999:1:8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4992:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4992:9:8"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4981:7:8"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4690:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4693:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4699:7:8",
"type": ""
}
],
"src": "4659:348:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5058:32:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5068:16:8",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5079:5:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5068:7:8"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5040:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5050:7:8",
"type": ""
}
],
"src": "5013:77:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5139:43:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5149:27:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5164:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5171:4:8",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5160:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5160:16:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5149:7:8"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5121:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5131:7:8",
"type": ""
}
],
"src": "5096:86:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5239:269:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5249:22:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5263:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5269:1:8",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5259:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5259:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5249:6:8"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5280:38:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5310:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5316:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5306:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5306:12:8"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5284:18:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5357:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5371:27:8",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5385:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5393:4:8",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5381:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5381:17:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5371:6:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5337:18:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5330:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5330:26:8"
},
"nodeType": "YulIf",
"src": "5327:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5460:42:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5474:16:8"
},
"nodeType": "YulFunctionCall",
"src": "5474:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "5474:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5424:18:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5447:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5455:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5444:2:8"
},
"nodeType": "YulFunctionCall",
"src": "5444:14:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5421:2:8"
},
"nodeType": "YulFunctionCall",
"src": "5421:38:8"
},
"nodeType": "YulIf",
"src": "5418:2:8"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5223:4:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5232:6:8",
"type": ""
}
],
"src": "5188:320:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5542:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5559:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5562:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5552:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5552:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "5552:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5659:4:8",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5649:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5649:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5649:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5680:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5683:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5673:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5673:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5673:15:8"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5514:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5728:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5745:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5738:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5738:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "5738:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5842:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5845:4:8",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5835:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5835:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5835:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5866:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5869:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5859:6:8"
},
"nodeType": "YulFunctionCall",
"src": "5859:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "5859:15:8"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5700:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5937:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5947:34:8",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5972:1:8",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5975:5:8"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5968:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5968:13:8"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5947:8:8"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5928:8:8",
"type": ""
}
],
"src": "5886:102:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6100:60:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6122:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6130:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6118:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6118:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6134:18:8",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6111:6:8"
},
"nodeType": "YulFunctionCall",
"src": "6111:42:8"
},
"nodeType": "YulExpressionStatement",
"src": "6111:42:8"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6092:6:8",
"type": ""
}
],
"src": "5994:166:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6272:75:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6294:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6302:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6290:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6290:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6306:33:8",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6283:6:8"
},
"nodeType": "YulFunctionCall",
"src": "6283:57:8"
},
"nodeType": "YulExpressionStatement",
"src": "6283:57:8"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6264:6:8",
"type": ""
}
],
"src": "6166:181:8"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n}\n",
"id": 8,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280601181526020017f427269676874657220546f6d6f72726f770000000000000000000000000000008152506040518060400160405280600481526020017f544d525700000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003c7565b508060049080519060200190620000af929190620003c7565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df620001c560201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001bf3362000193620001cd60201b60201c565b600a620001a1919062000600565b6401d6e06f00620001b391906200073d565b620001d660201b60201c565b620008a8565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024090620004f8565b60405180910390fd5b6200025d600083836200033b60201b60201c565b806002600082825462000271919062000548565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c8919062000548565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f91906200051a565b60405180910390a35050565b6200034b620003ab60201b60201c565b156200038e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038590620004d6565b60405180910390fd5b620003a6838383620003c260201b62000d4d1760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620003d590620007b5565b90600052602060002090601f016020900481019282620003f9576000855562000445565b82601f106200041457805160ff191683800117855562000445565b8280016001018555821562000445579182015b828111156200044457825182559160200191906001019062000427565b5b50905062000454919062000458565b5090565b5b808211156200047357600081600090555060010162000459565b5090565b60006200048660108362000537565b9150620004938262000856565b602082019050919050565b6000620004ad601f8362000537565b9150620004ba826200087f565b602082019050919050565b620004d0816200079e565b82525050565b60006020820190508181036000830152620004f18162000477565b9050919050565b6000602082019050818103600083015262000513816200049e565b9050919050565b6000602082019050620005316000830184620004c5565b92915050565b600082825260208201905092915050565b600062000555826200079e565b915062000562836200079e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200059a5762000599620007eb565b5b828201905092915050565b6000808291508390505b6001851115620005f757808604811115620005cf57620005ce620007eb565b5b6001851615620005df5780820291505b8081029050620005ef8562000849565b9450620005af565b94509492505050565b60006200060d826200079e565b91506200061a83620007a8565b9250620006497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000651565b905092915050565b60008262000663576001905062000736565b8162000673576000905062000736565b81600181146200068c57600281146200069757620006cd565b600191505062000736565b60ff841115620006ac57620006ab620007eb565b5b8360020a915084821115620006c657620006c5620007eb565b5b5062000736565b5060208310610133831016604e8410600b8410161715620007075782820a905083811115620007015762000700620007eb565b5b62000736565b620007168484846001620005a5565b9250905081840481111562000730576200072f620007eb565b5b81810290505b9392505050565b60006200074a826200079e565b915062000757836200079e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007935762000792620007eb565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007ce57607f821691505b60208210811415620007e557620007e46200081a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61211880620008b86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102d2578063a457c2d7146102f0578063a9059cbb14610320578063dd62ed3e14610350578063f2fde38b1461038057610121565b806370a0823114610254578063715018a61461028457806379cc67901461028e5780638456cb59146102aa5780638da5cb5b146102b457610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633f4ba83a1461021057806342966c681461021a5780635c975abb1461023657610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e61039c565b60405161013b91906118ed565b60405180910390f35b61015e600480360381019061015991906115f3565b61042e565b60405161016b91906118d2565b60405180910390f35b61017c61044c565b6040516101899190611acf565b60405180910390f35b6101ac60048036038101906101a791906115a4565b610456565b6040516101b991906118d2565b60405180910390f35b6101ca610557565b6040516101d79190611aea565b60405180910390f35b6101fa60048036038101906101f591906115f3565b610560565b60405161020791906118d2565b60405180910390f35b61021861060c565b005b610234600480360381019061022f919061162f565b610692565b005b61023e6106a6565b60405161024b91906118d2565b60405180910390f35b61026e6004803603810190610269919061153f565b6106bd565b60405161027b9190611acf565b60405180910390f35b61028c610705565b005b6102a860048036038101906102a391906115f3565b610842565b005b6102b26108c6565b005b6102bc61094c565b6040516102c991906118b7565b60405180910390f35b6102da610976565b6040516102e791906118ed565b60405180910390f35b61030a600480360381019061030591906115f3565b610a08565b60405161031791906118d2565b60405180910390f35b61033a600480360381019061033591906115f3565b610afc565b60405161034791906118d2565b60405180910390f35b61036a60048036038101906103659190611568565b610b1a565b6040516103779190611acf565b60405180910390f35b61039a6004803603810190610395919061153f565b610ba1565b005b6060600380546103ab90611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611c33565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b600061044261043b610d52565b8484610d5a565b6001905092915050565b6000600254905090565b6000610463848484610f25565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ae610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610525906119ef565b60405180910390fd5b61054b8561053a610d52565b85846105469190611b77565b610d5a565b60019150509392505050565b60006012905090565b600061060261056d610d52565b84846001600061057b610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fd9190611b21565b610d5a565b6001905092915050565b610614610d52565b73ffffffffffffffffffffffffffffffffffffffff1661063261094c565b73ffffffffffffffffffffffffffffffffffffffff1614610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611a0f565b60405180910390fd5b6106906111a4565b565b6106a361069d610d52565b82611246565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070d610d52565b73ffffffffffffffffffffffffffffffffffffffff1661072b61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061085583610850610d52565b610b1a565b90508181101561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611a2f565b60405180910390fd5b6108b7836108a6610d52565b84846108b29190611b77565b610d5a565b6108c18383611246565b505050565b6108ce610d52565b73ffffffffffffffffffffffffffffffffffffffff166108ec61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990611a0f565b60405180910390fd5b61094a61141a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098590611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190611c33565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b60008060016000610a17610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611aaf565b60405180910390fd5b610af1610adf610d52565b858584610aec9190611b77565b610d5a565b600191505092915050565b6000610b10610b09610d52565b8484610f25565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba9610d52565b73ffffffffffffffffffffffffffffffffffffffff16610bc761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061196f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061198f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f189190611acf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611a6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061190f565b60405180910390fd5b6110108383836114bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906119af565b60405180910390fd5b81816110a29190611b77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111329190611b21565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111969190611acf565b60405180910390a350505050565b6111ac6106a6565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061192f565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61122f610d52565b60405161123c91906118b7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90611a4f565b60405180910390fd5b6112c2826000836114bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061194f565b60405180910390fd5b81816113549190611b77565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113a89190611b77565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140d9190611acf565b60405180910390a3505050565b6114226106a6565b15611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906119cf565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114a6610d52565b6040516114b391906118b7565b60405180910390a1565b6114c56106a6565b15611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906119cf565b60405180910390fd5b611510838383610d4d565b505050565b600081359050611524816120b4565b92915050565b600081359050611539816120cb565b92915050565b60006020828403121561155157600080fd5b600061155f84828501611515565b91505092915050565b6000806040838503121561157b57600080fd5b600061158985828601611515565b925050602061159a85828601611515565b9150509250929050565b6000806000606084860312156115b957600080fd5b60006115c786828701611515565b93505060206115d886828701611515565b92505060406115e98682870161152a565b9150509250925092565b6000806040838503121561160657600080fd5b600061161485828601611515565b92505060206116258582860161152a565b9150509250929050565b60006020828403121561164157600080fd5b600061164f8482850161152a565b91505092915050565b61166181611bab565b82525050565b61167081611bbd565b82525050565b600061168182611b05565b61168b8185611b10565b935061169b818560208601611c00565b6116a481611cc3565b840191505092915050565b60006116bc602383611b10565b91506116c782611cd4565b604082019050919050565b60006116df601483611b10565b91506116ea82611d23565b602082019050919050565b6000611702602283611b10565b915061170d82611d4c565b604082019050919050565b6000611725602683611b10565b915061173082611d9b565b604082019050919050565b6000611748602283611b10565b915061175382611dea565b604082019050919050565b600061176b602683611b10565b915061177682611e39565b604082019050919050565b600061178e601083611b10565b915061179982611e88565b602082019050919050565b60006117b1602883611b10565b91506117bc82611eb1565b604082019050919050565b60006117d4602083611b10565b91506117df82611f00565b602082019050919050565b60006117f7602483611b10565b915061180282611f29565b604082019050919050565b600061181a602183611b10565b915061182582611f78565b604082019050919050565b600061183d602583611b10565b915061184882611fc7565b604082019050919050565b6000611860602483611b10565b915061186b82612016565b604082019050919050565b6000611883602583611b10565b915061188e82612065565b604082019050919050565b6118a281611be9565b82525050565b6118b181611bf3565b82525050565b60006020820190506118cc6000830184611658565b92915050565b60006020820190506118e76000830184611667565b92915050565b600060208201905081810360008301526119078184611676565b905092915050565b60006020820190508181036000830152611928816116af565b9050919050565b60006020820190508181036000830152611948816116d2565b9050919050565b60006020820190508181036000830152611968816116f5565b9050919050565b6000602082019050818103600083015261198881611718565b9050919050565b600060208201905081810360008301526119a88161173b565b9050919050565b600060208201905081810360008301526119c88161175e565b9050919050565b600060208201905081810360008301526119e881611781565b9050919050565b60006020820190508181036000830152611a08816117a4565b9050919050565b60006020820190508181036000830152611a28816117c7565b9050919050565b60006020820190508181036000830152611a48816117ea565b9050919050565b60006020820190508181036000830152611a688161180d565b9050919050565b60006020820190508181036000830152611a8881611830565b9050919050565b60006020820190508181036000830152611aa881611853565b9050919050565b60006020820190508181036000830152611ac881611876565b9050919050565b6000602082019050611ae46000830184611899565b92915050565b6000602082019050611aff60008301846118a8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2c82611be9565b9150611b3783611be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6c57611b6b611c65565b5b828201905092915050565b6000611b8282611be9565b9150611b8d83611be9565b925082821015611ba057611b9f611c65565b5b828203905092915050565b6000611bb682611bc9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c1e578082015181840152602081019050611c03565b83811115611c2d576000848401525b50505050565b60006002820490506001821680611c4b57607f821691505b60208210811415611c5f57611c5e611c94565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120bd81611bab565b81146120c857600080fd5b50565b6120d481611be9565b81146120df57600080fd5b5056fea264697066735822122020b4b44b35c1eab0ac0207bc47cd44f4bc54d7708af0aa3e9b1a649d05ec67cd64736f6c63430008040033",
"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 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x427269676874657220546F6D6F72726F77000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x544D525700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x3C7 JUMP JUMPDEST POP POP POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH3 0xDF PUSH3 0x1C5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH3 0x1BF CALLER PUSH3 0x193 PUSH3 0x1CD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x1A1 SWAP2 SWAP1 PUSH3 0x600 JUMP JUMPDEST PUSH5 0x1D6E06F00 PUSH3 0x1B3 SWAP2 SWAP1 PUSH3 0x73D JUMP JUMPDEST PUSH3 0x1D6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x8A8 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x249 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x240 SWAP1 PUSH3 0x4F8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x25D PUSH1 0x0 DUP4 DUP4 PUSH3 0x33B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x271 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x2C8 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x32F SWAP2 SWAP1 PUSH3 0x51A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x34B PUSH3 0x3AB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x38E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x385 SWAP1 PUSH3 0x4D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x3A6 DUP4 DUP4 DUP4 PUSH3 0x3C2 PUSH1 0x20 SHL PUSH3 0xD4D OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x3D5 SWAP1 PUSH3 0x7B5 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3F9 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x414 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x445 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x445 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x444 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x427 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x454 SWAP2 SWAP1 PUSH3 0x458 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x473 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x459 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x486 PUSH1 0x10 DUP4 PUSH3 0x537 JUMP JUMPDEST SWAP2 POP PUSH3 0x493 DUP3 PUSH3 0x856 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4AD PUSH1 0x1F DUP4 PUSH3 0x537 JUMP JUMPDEST SWAP2 POP PUSH3 0x4BA DUP3 PUSH3 0x87F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4D0 DUP2 PUSH3 0x79E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x4F1 DUP2 PUSH3 0x477 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x513 DUP2 PUSH3 0x49E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x531 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x555 DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x562 DUP4 PUSH3 0x79E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x59A JUMPI PUSH3 0x599 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x5F7 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x5CF JUMPI PUSH3 0x5CE PUSH3 0x7EB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x5DF JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x5EF DUP6 PUSH3 0x849 JUMP JUMPDEST SWAP5 POP PUSH3 0x5AF JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x60D DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x61A DUP4 PUSH3 0x7A8 JUMP JUMPDEST SWAP3 POP PUSH3 0x649 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x651 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x663 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x736 JUMP JUMPDEST DUP2 PUSH3 0x673 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x736 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x68C JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x697 JUMPI PUSH3 0x6CD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x736 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6AC JUMPI PUSH3 0x6AB PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6C6 JUMPI PUSH3 0x6C5 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST POP PUSH3 0x736 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x707 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x701 JUMPI PUSH3 0x700 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST PUSH3 0x736 JUMP JUMPDEST PUSH3 0x716 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5A5 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x730 JUMPI PUSH3 0x72F PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x74A DUP3 PUSH3 0x79E JUMP JUMPDEST SWAP2 POP PUSH3 0x757 DUP4 PUSH3 0x79E JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x793 JUMPI PUSH3 0x792 PUSH3 0x7EB JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x7CE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7E5 JUMPI PUSH3 0x7E4 PUSH3 0x81A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2118 DUP1 PUSH3 0x8B8 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 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x380 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B4 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x236 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x39C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH2 0x44C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B9 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x1AEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x218 PUSH2 0x60C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH2 0x692 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23E PUSH2 0x6A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x269 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x705 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x842 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x8C6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BC PUSH2 0x94C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DA PUSH2 0x976 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xAFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x377 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3AB SWAP1 PUSH2 0x1C33 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 0x3D7 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x424 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x424 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 0x407 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x442 PUSH2 0x43B PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x463 DUP5 DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x4AE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x52E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x525 SWAP1 PUSH2 0x19EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x54B DUP6 PUSH2 0x53A PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x546 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x56D PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x57B PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5FD SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x632 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x688 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67F SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x690 PUSH2 0x11A4 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x6A3 PUSH2 0x69D PUSH2 0xD52 JUMP JUMPDEST DUP3 PUSH2 0x1246 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70D PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x72B PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x781 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x778 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x855 DUP4 PUSH2 0x850 PUSH2 0xD52 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x89A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x891 SWAP1 PUSH2 0x1A2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x8A6 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH2 0x8C1 DUP4 DUP4 PUSH2 0x1246 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8EC PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x939 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x94A PUSH2 0x141A 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 0x985 SWAP1 PUSH2 0x1C33 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 0x9B1 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9FE 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 0x9E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xA17 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF1 PUSH2 0xADF PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAEC SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB10 PUSH2 0xB09 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA9 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBC7 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC1D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC14 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC84 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDCA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDC1 SWAP1 PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE31 SWAP1 PUSH2 0x198F 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 0xF18 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF8C SWAP1 PUSH2 0x1A6F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFFC SWAP1 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1010 DUP4 DUP4 DUP4 PUSH2 0x14BD 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 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x108D SWAP1 PUSH2 0x19AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x10A2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1132 SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1196 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x11AC PUSH2 0x6A6 JUMP JUMPDEST PUSH2 0x11EB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E2 SWAP1 PUSH2 0x192F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x122F PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x123C SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x12B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AD SWAP1 PUSH2 0x1A4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1348 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133F SWAP1 PUSH2 0x194F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1354 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13A8 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x140D SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1422 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x14A6 PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B3 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x14C5 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1505 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14FC SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1510 DUP4 DUP4 DUP4 PUSH2 0xD4D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1524 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1539 DUP2 PUSH2 0x20CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP5 DUP3 DUP6 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x157B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1589 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x159A DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15C7 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15D8 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15E9 DUP7 DUP3 DUP8 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1614 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1625 DUP6 DUP3 DUP7 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164F DUP5 DUP3 DUP6 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1661 DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1670 DUP2 PUSH2 0x1BBD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1681 DUP3 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0x168B DUP2 DUP6 PUSH2 0x1B10 JUMP JUMPDEST SWAP4 POP PUSH2 0x169B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1C00 JUMP JUMPDEST PUSH2 0x16A4 DUP2 PUSH2 0x1CC3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BC PUSH1 0x23 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16C7 DUP3 PUSH2 0x1CD4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DF PUSH1 0x14 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16EA DUP3 PUSH2 0x1D23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1702 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x170D DUP3 PUSH2 0x1D4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1725 PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1730 DUP3 PUSH2 0x1D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1748 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1753 DUP3 PUSH2 0x1DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176B PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1776 DUP3 PUSH2 0x1E39 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x178E PUSH1 0x10 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1799 DUP3 PUSH2 0x1E88 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B1 PUSH1 0x28 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17BC DUP3 PUSH2 0x1EB1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D4 PUSH1 0x20 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17DF DUP3 PUSH2 0x1F00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F7 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1802 DUP3 PUSH2 0x1F29 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x181A PUSH1 0x21 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1825 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x183D PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1848 DUP3 PUSH2 0x1FC7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1860 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x186B DUP3 PUSH2 0x2016 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1883 PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x188E DUP3 PUSH2 0x2065 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18A2 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x18B1 DUP2 PUSH2 0x1BF3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18CC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1658 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1667 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1907 DUP2 DUP5 PUSH2 0x1676 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1928 DUP2 PUSH2 0x16AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1948 DUP2 PUSH2 0x16D2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1968 DUP2 PUSH2 0x16F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1988 DUP2 PUSH2 0x1718 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19A8 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19C8 DUP2 PUSH2 0x175E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19E8 DUP2 PUSH2 0x1781 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A08 DUP2 PUSH2 0x17A4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A28 DUP2 PUSH2 0x17C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A48 DUP2 PUSH2 0x17EA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A68 DUP2 PUSH2 0x180D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A88 DUP2 PUSH2 0x1830 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AA8 DUP2 PUSH2 0x1853 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AC8 DUP2 PUSH2 0x1876 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AE4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1899 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AFF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18A8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B2C DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B37 DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1B6C JUMPI PUSH2 0x1B6B PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B82 DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B8D DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1BA0 JUMPI PUSH2 0x1B9F PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB6 DUP3 PUSH2 0x1BC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1C1E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1C03 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1C2D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1C4B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x1C94 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x20BD DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP2 EQ PUSH2 0x20C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x20D4 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x20DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 0xB4 0xB4 0x4B CALLDATALOAD 0xC1 0xEA 0xB0 0xAC MUL SMOD 0xBC SELFBALANCE 0xCD DIFFICULTY DELEGATECALL 0xBC SLOAD 0xD7 PUSH17 0x8AF0AA3E9B1A649D05EC67CD64736F6C63 NUMBER STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "322:524:7:-:0;;;397:114;;;;;;;;;;1898::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973:5;1965;:13;;;;;;;;;;;;:::i;:::-;;1998:7;1988;:17;;;;;;;;;;;;:::i;:::-;;1898:114;;935:5:1;925:7;;:15;;;;;;;;;;;;;;;;;;867:17:0;887:12;:10;;;:12;;:::i;:::-;867:32;;918:9;909:6;;:18;;;;;;;;;;;;;;;;;;975:9;942:43;;971:1;942:43;;;;;;;;;;;;842:150;456:48:7::1;462:10;493;:8;;;:10;;:::i;:::-;487:2;:16;;;;:::i;:::-;474:10;:29;;;;:::i;:::-;456:5;;;:48;;:::i;:::-;322:524:::0;;586:96:6;639:7;665:10;658:17;;586:96;:::o;3014:91:2:-;3072:5;3096:2;3089:9;;3014:91;:::o;8023:330::-;8125:1;8106:21;;:7;:21;;;;8098:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8174:49;8203:1;8207:7;8216:6;8174:20;;;:49;;:::i;:::-;8250:6;8234:12;;:22;;;;;;;:::i;:::-;;;;;;;;8288:6;8266:9;:18;8276:7;8266:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8330:7;8309:37;;8326:1;8309:37;;;8339:6;8309:37;;;;;;:::i;:::-;;;;;;;;8023:330;;:::o;651:193:7:-;1356:8:1;:6;;;:8;;:::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;793:44:7::1;820:4;826:2;830:6;793:26;;;;;:44;;:::i;:::-;651:193:::0;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;10506:92:2:-;;;;:::o;322:524:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:8:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;153:220;;;:::o;379:366::-;521:3;542:67;606:2;601:3;542:67;:::i;:::-;535:74;;618:93;707:3;618:93;:::i;:::-;736:2;731:3;727:12;720:19;;525:220;;;:::o;751:118::-;838:24;856:5;838:24;:::i;:::-;833:3;826:37;816:53;;:::o;875:419::-;1041:4;1079:2;1068:9;1064:18;1056:26;;1128:9;1122:4;1118:20;1114:1;1103:9;1099:17;1092:47;1156:131;1282:4;1156:131;:::i;:::-;1148:139;;1046:248;;;:::o;1300:419::-;1466:4;1504:2;1493:9;1489:18;1481:26;;1553:9;1547:4;1543:20;1539:1;1528:9;1524:17;1517:47;1581:131;1707:4;1581:131;:::i;:::-;1573:139;;1471:248;;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1823:124;;;;:::o;1953:169::-;2037:11;2071:6;2066:3;2059:19;2111:4;2106:3;2102:14;2087:29;;2049:73;;;;:::o;2128:305::-;2168:3;2187:20;2205:1;2187:20;:::i;:::-;2182:25;;2221:20;2239:1;2221:20;:::i;:::-;2216:25;;2375:1;2307:66;2303:74;2300:1;2297:81;2294:2;;;2381:18;;:::i;:::-;2294:2;2425:1;2422;2418:9;2411:16;;2172:261;;;;:::o;2439:848::-;2500:5;2507:4;2531:6;2522:15;;2555:5;2546:14;;2569:712;2590:1;2580:8;2577:15;2569:712;;;2685:4;2680:3;2676:14;2670:4;2667:24;2664:2;;;2694:18;;:::i;:::-;2664:2;2744:1;2734:8;2730:16;2727:2;;;3159:4;3152:5;3148:16;3139:25;;2727:2;3209:4;3203;3199:15;3191:23;;3239:32;3262:8;3239:32;:::i;:::-;3227:44;;2569:712;;;2512:775;;;;;;;:::o;3293:281::-;3351:5;3375:23;3393:4;3375:23;:::i;:::-;3367:31;;3419:25;3435:8;3419:25;:::i;:::-;3407:37;;3463:104;3500:66;3490:8;3484:4;3463:104;:::i;:::-;3454:113;;3357:217;;;;:::o;3580:1073::-;3634:5;3825:8;3815:2;;3846:1;3837:10;;3848:5;;3815:2;3874:4;3864:2;;3891:1;3882:10;;3893:5;;3864:2;3960:4;4008:1;4003:27;;;;4044:1;4039:191;;;;3953:277;;4003:27;4021:1;4012:10;;4023:5;;;4039:191;4084:3;4074:8;4071:17;4068:2;;;4091:18;;:::i;:::-;4068:2;4140:8;4137:1;4133:16;4124:25;;4175:3;4168:5;4165:14;4162:2;;;4182:18;;:::i;:::-;4162:2;4215:5;;;3953:277;;4339:2;4329:8;4326:16;4320:3;4314:4;4311:13;4307:36;4289:2;4279:8;4276:16;4271:2;4265:4;4262:12;4258:35;4242:111;4239:2;;;4395:8;4389:4;4385:19;4376:28;;4430:3;4423:5;4420:14;4417:2;;;4437:18;;:::i;:::-;4417:2;4470:5;;4239:2;4510:42;4548:3;4538:8;4532:4;4529:1;4510:42;:::i;:::-;4495:57;;;;4584:4;4579:3;4575:14;4568:5;4565:25;4562:2;;;4593:18;;:::i;:::-;4562:2;4642:4;4635:5;4631:16;4622:25;;3640:1013;;;;;;:::o;4659:348::-;4699:7;4722:20;4740:1;4722:20;:::i;:::-;4717:25;;4756:20;4774:1;4756:20;:::i;:::-;4751:25;;4944:1;4876:66;4872:74;4869:1;4866:81;4861:1;4854:9;4847:17;4843:105;4840:2;;;4951:18;;:::i;:::-;4840:2;4999:1;4996;4992:9;4981:20;;4707:300;;;;:::o;5013:77::-;5050:7;5079:5;5068:16;;5058:32;;;:::o;5096:86::-;5131:7;5171:4;5164:5;5160:16;5149:27;;5139:43;;;:::o;5188:320::-;5232:6;5269:1;5263:4;5259:12;5249:22;;5316:1;5310:4;5306:12;5337:18;5327:2;;5393:4;5385:6;5381:17;5371:27;;5327:2;5455;5447:6;5444:14;5424:18;5421:38;5418:2;;;5474:18;;:::i;:::-;5418:2;5239:269;;;;:::o;5514:180::-;5562:77;5559:1;5552:88;5659:4;5656:1;5649:15;5683:4;5680:1;5673:15;5700:180;5748:77;5745:1;5738:88;5845:4;5842:1;5835:15;5869:4;5866:1;5859:15;5886:102;5928:8;5975:5;5972:1;5968:13;5947:34;;5937:51;;;:::o;5994:166::-;6134:18;6130:1;6122:6;6118:14;6111:42;6100:60;:::o;6166:181::-;6306:33;6302:1;6294:6;6290:14;6283:57;6272:75;:::o;322:524:7:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:21159:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:8",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:8"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:8"
},
"nodeType": "YulFunctionCall",
"src": "78:20:8"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:8"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:8"
},
"nodeType": "YulFunctionCall",
"src": "107:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:8"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:8",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:8",
"type": ""
}
],
"src": "7:139:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:8",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:8"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:8"
},
"nodeType": "YulFunctionCall",
"src": "223:20:8"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:8"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:8"
},
"nodeType": "YulFunctionCall",
"src": "252:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:8"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:8",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:8",
"type": ""
}
],
"src": "152:139:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:8"
},
"nodeType": "YulFunctionCall",
"src": "411:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:8"
},
"nodeType": "YulFunctionCall",
"src": "380:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:8"
},
"nodeType": "YulFunctionCall",
"src": "376:32:8"
},
"nodeType": "YulIf",
"src": "373:2:8"
},
{
"nodeType": "YulBlock",
"src": "435:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:8"
},
"nodeType": "YulFunctionCall",
"src": "510:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:8"
},
"nodeType": "YulFunctionCall",
"src": "489:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:8",
"type": ""
}
],
"src": "297:262:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:8"
},
"nodeType": "YulFunctionCall",
"src": "696:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:8"
},
"nodeType": "YulFunctionCall",
"src": "665:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:8"
},
"nodeType": "YulFunctionCall",
"src": "661:32:8"
},
"nodeType": "YulIf",
"src": "658:2:8"
},
{
"nodeType": "YulBlock",
"src": "720:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:8"
},
"nodeType": "YulFunctionCall",
"src": "795:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:8"
},
"nodeType": "YulFunctionCall",
"src": "774:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:8"
},
"nodeType": "YulFunctionCall",
"src": "923:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:8"
},
"nodeType": "YulFunctionCall",
"src": "902:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:8",
"type": ""
}
],
"src": "565:407:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:8",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:8"
},
"nodeType": "YulIf",
"src": "1088:2:8"
},
{
"nodeType": "YulBlock",
"src": "1150:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:8",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:8"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:8",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:8",
"type": ""
}
],
"src": "978:552:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:8"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:8"
},
"nodeType": "YulIf",
"src": "1629:2:8"
},
{
"nodeType": "YulBlock",
"src": "1691:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:8"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:8"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:8",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:8"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:8"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:8"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:8",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:8",
"type": ""
}
],
"src": "1536:407:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2015:196:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2061:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2073:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2063:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2063:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "2063:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2036:7:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2045:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2032:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2032:23:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2057:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2028:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2028:32:8"
},
"nodeType": "YulIf",
"src": "2025:2:8"
},
{
"nodeType": "YulBlock",
"src": "2087:117:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2102:15:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2116:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2106:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:8"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:8"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:8"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:8"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:8"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2131:6:8"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1985:9:8",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1996:7:8",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2008:6:8",
"type": ""
}
],
"src": "1949:262:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2299:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2322:5:8"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2304:17:8"
},
"nodeType": "YulFunctionCall",
"src": "2304:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2292:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2292:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "2292:37:8"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2270:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2277:3:8",
"type": ""
}
],
"src": "2217:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2400:50:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2417:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2437:5:8"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2422:14:8"
},
"nodeType": "YulFunctionCall",
"src": "2422:21:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2410:6:8"
},
"nodeType": "YulFunctionCall",
"src": "2410:34:8"
},
"nodeType": "YulExpressionStatement",
"src": "2410:34:8"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2388:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2395:3:8",
"type": ""
}
],
"src": "2341:109:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2548:272:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2558:53:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:8"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2572:32:8"
},
"nodeType": "YulFunctionCall",
"src": "2572:39:8"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2562:6:8",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2620:78:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2686:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2691:6:8"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2627:58:8"
},
"nodeType": "YulFunctionCall",
"src": "2627:71:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2620:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2733:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2729:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2729:16:8"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2747:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2752:6:8"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2707:21:8"
},
"nodeType": "YulFunctionCall",
"src": "2707:52:8"
},
"nodeType": "YulExpressionStatement",
"src": "2707:52:8"
},
{
"nodeType": "YulAssignment",
"src": "2768:46:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2779:3:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2806:6:8"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2784:21:8"
},
"nodeType": "YulFunctionCall",
"src": "2784:29:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:8"
},
"nodeType": "YulFunctionCall",
"src": "2775:39:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2768:3:8"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2529:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2536:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:8",
"type": ""
}
],
"src": "2456:364:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2972:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2982:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3048:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3053:2:8",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2989:58:8"
},
"nodeType": "YulFunctionCall",
"src": "2989:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2982:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3154:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "3065:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3065:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3065:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3167:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3178:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3183:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3174:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3174:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3167:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2960:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2968:3:8",
"type": ""
}
],
"src": "2826:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3354:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3420:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3425:2:8",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3361:58:8"
},
"nodeType": "YulFunctionCall",
"src": "3361:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3354:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3526:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulIdentifier",
"src": "3437:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3437:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3437:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3539:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3550:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3555:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3546:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3546:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3539:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3332:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3340:3:8",
"type": ""
}
],
"src": "3198:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3792:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3797:2:8",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3733:58:8"
},
"nodeType": "YulFunctionCall",
"src": "3733:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3726:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3898:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "3809:88:8"
},
"nodeType": "YulFunctionCall",
"src": "3809:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "3809:93:8"
},
{
"nodeType": "YulAssignment",
"src": "3911:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3922:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3927:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3918:3:8"
},
"nodeType": "YulFunctionCall",
"src": "3918:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3911:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3704:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3712:3:8",
"type": ""
}
],
"src": "3570:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4088:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4098:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4164:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:2:8",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4105:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4105:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4098:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4270:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "4181:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4181:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4181:93:8"
},
{
"nodeType": "YulAssignment",
"src": "4283:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4294:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4299:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4290:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4283:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4076:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4084:3:8",
"type": ""
}
],
"src": "3942:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4470:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4536:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4541:2:8",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4477:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4477:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4470:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4642:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "4553:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4553:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4553:93:8"
},
{
"nodeType": "YulAssignment",
"src": "4655:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4666:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4671:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4662:3:8"
},
"nodeType": "YulFunctionCall",
"src": "4662:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4655:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4448:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4456:3:8",
"type": ""
}
],
"src": "4314:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4832:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4842:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4908:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:2:8",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4849:58:8"
},
"nodeType": "YulFunctionCall",
"src": "4849:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4842:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5014:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4925:88:8"
},
"nodeType": "YulFunctionCall",
"src": "4925:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "4925:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5027:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5038:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5043:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5034:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5034:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5027:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4820:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4828:3:8",
"type": ""
}
],
"src": "4686:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5204:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5214:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5280:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:2:8",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5221:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5221:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5386:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulIdentifier",
"src": "5297:88:8"
},
"nodeType": "YulFunctionCall",
"src": "5297:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "5297:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5399:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5410:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5415:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5406:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5399:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5200:3:8",
"type": ""
}
],
"src": "5058:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5586:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5652:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5657:2:8",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5593:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5593:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5586:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5758:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "5669:88:8"
},
"nodeType": "YulFunctionCall",
"src": "5669:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "5669:93:8"
},
{
"nodeType": "YulAssignment",
"src": "5771:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5782:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5787:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5778:3:8"
},
"nodeType": "YulFunctionCall",
"src": "5778:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5771:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5564:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5572:3:8",
"type": ""
}
],
"src": "5430:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5948:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5958:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6024:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6029:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5965:58:8"
},
"nodeType": "YulFunctionCall",
"src": "5965:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5958:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6130:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "6041:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6041:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6041:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6143:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6154:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6159:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6150:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6150:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6143:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5936:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5944:3:8",
"type": ""
}
],
"src": "5802:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6320:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6330:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6396:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6401:2:8",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6337:58:8"
},
"nodeType": "YulFunctionCall",
"src": "6337:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6502:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db",
"nodeType": "YulIdentifier",
"src": "6413:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6413:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6413:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6515:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6526:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6531:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6522:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6522:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6515:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6308:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6316:3:8",
"type": ""
}
],
"src": "6174:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6692:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6702:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6768:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6773:2:8",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6709:58:8"
},
"nodeType": "YulFunctionCall",
"src": "6709:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6702:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6874:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "6785:88:8"
},
"nodeType": "YulFunctionCall",
"src": "6785:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "6785:93:8"
},
{
"nodeType": "YulAssignment",
"src": "6887:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6898:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6903:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6894:3:8"
},
"nodeType": "YulFunctionCall",
"src": "6894:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6887:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6680:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6688:3:8",
"type": ""
}
],
"src": "6546:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7064:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7074:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7140:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7145:2:8",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7081:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7081:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7074:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7246:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "7157:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7157:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7157:93:8"
},
{
"nodeType": "YulAssignment",
"src": "7259:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7270:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7275:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7266:3:8"
},
"nodeType": "YulFunctionCall",
"src": "7266:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7259:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7052:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7060:3:8",
"type": ""
}
],
"src": "6918:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7436:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7446:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7512:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7517:2:8",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7453:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7453:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7446:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7618:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "7529:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7529:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7529:93:8"
},
{
"nodeType": "YulAssignment",
"src": "7631:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7642:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7647:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7638:3:8"
},
"nodeType": "YulFunctionCall",
"src": "7638:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7631:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7424:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7432:3:8",
"type": ""
}
],
"src": "7290:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7808:220:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7818:74:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7884:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7889:2:8",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7825:58:8"
},
"nodeType": "YulFunctionCall",
"src": "7825:67:8"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7818:3:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7990:3:8"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7901:88:8"
},
"nodeType": "YulFunctionCall",
"src": "7901:93:8"
},
"nodeType": "YulExpressionStatement",
"src": "7901:93:8"
},
{
"nodeType": "YulAssignment",
"src": "8003:19:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8014:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8019:2:8",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8010:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8010:12:8"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8003:3:8"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7796:3:8",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7804:3:8",
"type": ""
}
],
"src": "7662:366:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8099:53:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8116:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8139:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8121:17:8"
},
"nodeType": "YulFunctionCall",
"src": "8121:24:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8109:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8109:37:8"
},
"nodeType": "YulExpressionStatement",
"src": "8109:37:8"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8087:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8094:3:8",
"type": ""
}
],
"src": "8034:118:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8219:51:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8236:3:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8257:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "8241:15:8"
},
"nodeType": "YulFunctionCall",
"src": "8241:22:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8229:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8229:35:8"
},
"nodeType": "YulExpressionStatement",
"src": "8229:35:8"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8207:5:8",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8214:3:8",
"type": ""
}
],
"src": "8158:112:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8374:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8384:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8396:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8407:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8392:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8392:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8384:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8464:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8477:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8488:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8473:17:8"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "8420:43:8"
},
"nodeType": "YulFunctionCall",
"src": "8420:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "8420:71:8"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8346:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8358:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8369:4:8",
"type": ""
}
],
"src": "8276:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8596:118:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8606:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8618:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8629:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8614:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8614:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8606:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8680:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8693:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8704:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8689:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8689:17:8"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "8642:37:8"
},
"nodeType": "YulFunctionCall",
"src": "8642:65:8"
},
"nodeType": "YulExpressionStatement",
"src": "8642:65:8"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8568:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8580:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8591:4:8",
"type": ""
}
],
"src": "8504:210:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8838:195:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8848:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8860:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8871:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8856:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8856:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8848:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8895:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8906:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8891:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8891:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8914:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8920:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8910:3:8"
},
"nodeType": "YulFunctionCall",
"src": "8910:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8884:6:8"
},
"nodeType": "YulFunctionCall",
"src": "8884:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "8884:47:8"
},
{
"nodeType": "YulAssignment",
"src": "8940:86:8",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9012:6:8"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9021:4:8"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8948:63:8"
},
"nodeType": "YulFunctionCall",
"src": "8948:78:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8940:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8810:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8822:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8833:4:8",
"type": ""
}
],
"src": "8720:313:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9210:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9220:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9232:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9243:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9228:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9228:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9220:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9267:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9278:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9263:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9263:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9286:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9292:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9282:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9282:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9256:6:8"
},
"nodeType": "YulFunctionCall",
"src": "9256:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "9256:47:8"
},
{
"nodeType": "YulAssignment",
"src": "9312:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9446:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9320:124:8"
},
"nodeType": "YulFunctionCall",
"src": "9320:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9312:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9190:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9205:4:8",
"type": ""
}
],
"src": "9039:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9635:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9645:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9657:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9668:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9653:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9653:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9645:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9692:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9703:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9688:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9688:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9711:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9717:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9707:3:8"
},
"nodeType": "YulFunctionCall",
"src": "9707:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9681:6:8"
},
"nodeType": "YulFunctionCall",
"src": "9681:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "9681:47:8"
},
{
"nodeType": "YulAssignment",
"src": "9737:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9871:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9745:124:8"
},
"nodeType": "YulFunctionCall",
"src": "9745:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9737:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9615:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9630:4:8",
"type": ""
}
],
"src": "9464:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10060:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10070:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10082:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10093:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10078:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10078:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10070:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10117:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10128:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10113:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10113:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10136:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10142:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10132:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10132:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10106:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10106:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10106:47:8"
},
{
"nodeType": "YulAssignment",
"src": "10162:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10296:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10170:124:8"
},
"nodeType": "YulFunctionCall",
"src": "10170:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10162:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10040:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10055:4:8",
"type": ""
}
],
"src": "9889:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10485:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10495:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10507:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10518:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10503:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10503:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10495:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10542:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10553:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10538:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10538:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10561:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10567:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10557:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10557:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10531:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10531:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10531:47:8"
},
{
"nodeType": "YulAssignment",
"src": "10587:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10721:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10595:124:8"
},
"nodeType": "YulFunctionCall",
"src": "10595:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10587:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10465:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10480:4:8",
"type": ""
}
],
"src": "10314:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10910:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10920:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10932:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10943:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10928:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10928:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10920:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10967:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10978:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10963:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10963:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10986:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10992:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10982:3:8"
},
"nodeType": "YulFunctionCall",
"src": "10982:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10956:6:8"
},
"nodeType": "YulFunctionCall",
"src": "10956:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "10956:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11012:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11146:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11020:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11020:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11012:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10890:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10905:4:8",
"type": ""
}
],
"src": "10739:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11335:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11345:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11357:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11368:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11353:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11353:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11345:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11392:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11403:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11388:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11388:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11411:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11417:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11407:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11407:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11381:6:8"
},
"nodeType": "YulFunctionCall",
"src": "11381:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "11381:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11437:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11571:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11445:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11445:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11437:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11315:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11330:4:8",
"type": ""
}
],
"src": "11164:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11760:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11770:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11782:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11793:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11778:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11778:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11770:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11817:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11828:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11813:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11813:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11836:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11842:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11832:3:8"
},
"nodeType": "YulFunctionCall",
"src": "11832:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11806:6:8"
},
"nodeType": "YulFunctionCall",
"src": "11806:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "11806:47:8"
},
{
"nodeType": "YulAssignment",
"src": "11862:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11996:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11870:124:8"
},
"nodeType": "YulFunctionCall",
"src": "11870:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11862:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11740:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11755:4:8",
"type": ""
}
],
"src": "11589:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12185:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12195:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12207:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12218:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12203:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12203:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12195:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12242:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12253:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12238:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12238:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12261:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12267:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12257:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12257:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12231:6:8"
},
"nodeType": "YulFunctionCall",
"src": "12231:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "12231:47:8"
},
{
"nodeType": "YulAssignment",
"src": "12287:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12421:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12295:124:8"
},
"nodeType": "YulFunctionCall",
"src": "12295:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12287:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12165:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12180:4:8",
"type": ""
}
],
"src": "12014:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12610:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12620:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12632:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12643:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12628:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12628:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12620:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12667:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12678:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12663:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12663:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12686:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12692:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12682:3:8"
},
"nodeType": "YulFunctionCall",
"src": "12682:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12656:6:8"
},
"nodeType": "YulFunctionCall",
"src": "12656:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "12656:47:8"
},
{
"nodeType": "YulAssignment",
"src": "12712:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12846:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12720:124:8"
},
"nodeType": "YulFunctionCall",
"src": "12720:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12712:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12590:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12605:4:8",
"type": ""
}
],
"src": "12439:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13035:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13045:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13057:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13068:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13053:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13053:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13045:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13092:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13103:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13088:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13088:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13111:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13117:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13107:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13107:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13081:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13081:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13081:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13137:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13271:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13145:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13145:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13137:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13015:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13030:4:8",
"type": ""
}
],
"src": "12864:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13460:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13470:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13482:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13493:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13478:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13478:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13470:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13517:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13528:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13513:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13513:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13536:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13542:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13532:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13532:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13506:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13506:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13506:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13562:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13696:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13570:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13570:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13562:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13440:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13455:4:8",
"type": ""
}
],
"src": "13289:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13885:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13895:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13907:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13918:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13903:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13903:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13895:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13942:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13953:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13938:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13938:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13961:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13967:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13957:3:8"
},
"nodeType": "YulFunctionCall",
"src": "13957:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13931:6:8"
},
"nodeType": "YulFunctionCall",
"src": "13931:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "13931:47:8"
},
{
"nodeType": "YulAssignment",
"src": "13987:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14121:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13995:124:8"
},
"nodeType": "YulFunctionCall",
"src": "13995:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13987:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13865:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13880:4:8",
"type": ""
}
],
"src": "13714:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14310:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14320:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14332:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14343:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14328:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14328:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14320:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14367:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14378:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14363:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14363:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14386:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14392:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14382:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14382:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:8"
},
"nodeType": "YulFunctionCall",
"src": "14356:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "14356:47:8"
},
{
"nodeType": "YulAssignment",
"src": "14412:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14546:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14420:124:8"
},
"nodeType": "YulFunctionCall",
"src": "14420:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14412:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14290:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14305:4:8",
"type": ""
}
],
"src": "14139:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14735:248:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14745:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14757:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14768:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14753:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14753:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14745:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14792:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14803:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14788:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14788:17:8"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14811:4:8"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14817:9:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14807:3:8"
},
"nodeType": "YulFunctionCall",
"src": "14807:20:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14781:6:8"
},
"nodeType": "YulFunctionCall",
"src": "14781:47:8"
},
"nodeType": "YulExpressionStatement",
"src": "14781:47:8"
},
{
"nodeType": "YulAssignment",
"src": "14837:139:8",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14971:4:8"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14845:124:8"
},
"nodeType": "YulFunctionCall",
"src": "14845:131:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14837:4:8"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14715:9:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14730:4:8",
"type": ""
}
],
"src": "14564:419:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15087:124:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15097:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15109:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15120:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15105:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15105:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15097:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15177:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15190:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15201:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15186:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15186:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15133:43:8"
},
"nodeType": "YulFunctionCall",
"src": "15133:71:8"
},
"nodeType": "YulExpressionStatement",
"src": "15133:71:8"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15059:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15071:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15082:4:8",
"type": ""
}
],
"src": "14989:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15311:120:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15321:26:8",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15333:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15344:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15329:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15329:18:8"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15321:4:8"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15397:6:8"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15410:9:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15421:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15406:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15406:17:8"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "15357:39:8"
},
"nodeType": "YulFunctionCall",
"src": "15357:67:8"
},
"nodeType": "YulExpressionStatement",
"src": "15357:67:8"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15283:9:8",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15295:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15306:4:8",
"type": ""
}
],
"src": "15217:214:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15496:40:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15507:22:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15523:5:8"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "15517:5:8"
},
"nodeType": "YulFunctionCall",
"src": "15517:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15507:6:8"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15479:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15489:6:8",
"type": ""
}
],
"src": "15437:99:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15638:73:8",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15655:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "15660:6:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15648:6:8"
},
"nodeType": "YulFunctionCall",
"src": "15648:19:8"
},
"nodeType": "YulExpressionStatement",
"src": "15648:19:8"
},
{
"nodeType": "YulAssignment",
"src": "15676:29:8",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15695:3:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15700:4:8",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15691:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15691:14:8"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "15676:11:8"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15610:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "15615:6:8",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "15626:11:8",
"type": ""
}
],
"src": "15542:169:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15761:261:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15771:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15794:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15776:17:8"
},
"nodeType": "YulFunctionCall",
"src": "15776:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15771:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15805:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15828:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15810:17:8"
},
"nodeType": "YulFunctionCall",
"src": "15810:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15805:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15968:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15970:16:8"
},
"nodeType": "YulFunctionCall",
"src": "15970:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "15970:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15889:1:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15896:66:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15964:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15892:3:8"
},
"nodeType": "YulFunctionCall",
"src": "15892:74:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15886:2:8"
},
"nodeType": "YulFunctionCall",
"src": "15886:81:8"
},
"nodeType": "YulIf",
"src": "15883:2:8"
},
{
"nodeType": "YulAssignment",
"src": "16000:16:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16011:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16014:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16007:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16007:9:8"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "16000:3:8"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15748:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15751:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15757:3:8",
"type": ""
}
],
"src": "15717:305:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16073:146:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16083:25:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16106:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16088:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16088:20:8"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16083:1:8"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16117:25:8",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16140:1:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16122:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16122:20:8"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16117:1:8"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16164:22:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16166:16:8"
},
"nodeType": "YulFunctionCall",
"src": "16166:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "16166:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16158:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16161:1:8"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16155:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16155:8:8"
},
"nodeType": "YulIf",
"src": "16152:2:8"
},
{
"nodeType": "YulAssignment",
"src": "16196:17:8",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16208:1:8"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16211:1:8"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16204:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16204:9:8"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "16196:4:8"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16059:1:8",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16062:1:8",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "16068:4:8",
"type": ""
}
],
"src": "16028:191:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16270:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16280:35:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16309:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "16291:17:8"
},
"nodeType": "YulFunctionCall",
"src": "16291:24:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16280:7:8"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16252:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16262:7:8",
"type": ""
}
],
"src": "16225:96:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16369:48:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16379:32:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16404:5:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16397:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16397:13:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16390:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16390:21:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16379:7:8"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16351:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16361:7:8",
"type": ""
}
],
"src": "16327:90:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16468:81:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16478:65:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16493:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16500:42:8",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16489:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16489:54:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16478:7:8"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16450:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16460:7:8",
"type": ""
}
],
"src": "16423:126:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16600:32:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16610:16:8",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "16621:5:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16610:7:8"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16582:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16592:7:8",
"type": ""
}
],
"src": "16555:77:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16681:43:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16691:27:8",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16706:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16713:4:8",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16702:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16702:16:8"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "16691:7:8"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16663:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "16673:7:8",
"type": ""
}
],
"src": "16638:86:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16779:258:8",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16789:10:8",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16798:1:8",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "16793:1:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16858:63:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "16883:3:8"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16888:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16879:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16879:11:8"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "16902:3:8"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16907:1:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16898:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16898:11:8"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "16892:5:8"
},
"nodeType": "YulFunctionCall",
"src": "16892:18:8"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16872:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16872:39:8"
},
"nodeType": "YulExpressionStatement",
"src": "16872:39:8"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16819:1:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16822:6:8"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16816:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16816:13:8"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "16830:19:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16832:15:8",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16841:1:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16844:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16837:3:8"
},
"nodeType": "YulFunctionCall",
"src": "16837:10:8"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16832:1:8"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "16812:3:8",
"statements": []
},
"src": "16808:113:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16955:76:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17005:3:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17010:6:8"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17001:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17001:16:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17019:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16994:6:8"
},
"nodeType": "YulFunctionCall",
"src": "16994:27:8"
},
"nodeType": "YulExpressionStatement",
"src": "16994:27:8"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16936:1:8"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16939:6:8"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16933:2:8"
},
"nodeType": "YulFunctionCall",
"src": "16933:13:8"
},
"nodeType": "YulIf",
"src": "16930:2:8"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "16761:3:8",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "16766:3:8",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16771:6:8",
"type": ""
}
],
"src": "16730:307:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17094:269:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17104:22:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17118:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17124:1:8",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17114:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17114:12:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17104:6:8"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17135:38:8",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17165:4:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17171:1:8",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17161:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17161:12:8"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "17139:18:8",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17212:51:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17226:27:8",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17240:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17248:4:8",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17236:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17236:17:8"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17226:6:8"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17192:18:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17185:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17185:26:8"
},
"nodeType": "YulIf",
"src": "17182:2:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17315:42:8",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "17329:16:8"
},
"nodeType": "YulFunctionCall",
"src": "17329:18:8"
},
"nodeType": "YulExpressionStatement",
"src": "17329:18:8"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17279:18:8"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17302:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17310:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17299:2:8"
},
"nodeType": "YulFunctionCall",
"src": "17299:14:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17276:2:8"
},
"nodeType": "YulFunctionCall",
"src": "17276:38:8"
},
"nodeType": "YulIf",
"src": "17273:2:8"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "17078:4:8",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17087:6:8",
"type": ""
}
],
"src": "17043:320:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17397:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17414:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17417:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17407:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17407:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "17407:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17511:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17514:4:8",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17504:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17504:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17504:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17535:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17538:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17528:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17528:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17528:15:8"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "17369:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17583:152:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17600:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17603:77:8",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17593:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17593:88:8"
},
"nodeType": "YulExpressionStatement",
"src": "17593:88:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17697:1:8",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17700:4:8",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17690:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17690:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17690:15:8"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17721:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17724:4:8",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17714:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17714:15:8"
},
"nodeType": "YulExpressionStatement",
"src": "17714:15:8"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "17555:180:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17789:54:8",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17799:38:8",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17817:5:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17824:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17813:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17813:14:8"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17833:2:8",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "17829:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17829:7:8"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17809:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17809:28:8"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "17799:6:8"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17772:5:8",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "17782:6:8",
"type": ""
}
],
"src": "17741:102:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17955:116:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17977:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17985:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17973:3:8"
},
"nodeType": "YulFunctionCall",
"src": "17973:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17989:34:8",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17966:6:8"
},
"nodeType": "YulFunctionCall",
"src": "17966:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "17966:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18045:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18053:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18041:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18041:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18058:5:8",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18034:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18034:30:8"
},
"nodeType": "YulExpressionStatement",
"src": "18034:30:8"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17947:6:8",
"type": ""
}
],
"src": "17849:222:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18183:64:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18205:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18213:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18201:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18201:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18217:22:8",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18194:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18194:46:8"
},
"nodeType": "YulExpressionStatement",
"src": "18194:46:8"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18175:6:8",
"type": ""
}
],
"src": "18077:170:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18359:115:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18381:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18389:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18377:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18377:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18393:34:8",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18370:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18370:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18370:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18449:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18457:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18445:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18445:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18462:4:8",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18438:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18438:29:8"
},
"nodeType": "YulExpressionStatement",
"src": "18438:29:8"
}
]
},
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18351:6:8",
"type": ""
}
],
"src": "18253:221:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18586:119:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18608:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18616:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18604:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18604:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18620:34:8",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18597:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18597:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18597:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18676:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18684:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18672:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18672:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18689:8:8",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18665:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18665:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "18665:33:8"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18578:6:8",
"type": ""
}
],
"src": "18480:225:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18817:115:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18839:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18847:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18835:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18835:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18851:34:8",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18828:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18828:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "18828:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18907:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18915:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18903:3:8"
},
"nodeType": "YulFunctionCall",
"src": "18903:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "18920:4:8",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18896:6:8"
},
"nodeType": "YulFunctionCall",
"src": "18896:29:8"
},
"nodeType": "YulExpressionStatement",
"src": "18896:29:8"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18809:6:8",
"type": ""
}
],
"src": "18711:221:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19044:119:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19066:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19074:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19062:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19062:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19078:34:8",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19055:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19055:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19055:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19134:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19142:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19130:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19130:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19147:8:8",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19123:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19123:33:8"
},
"nodeType": "YulExpressionStatement",
"src": "19123:33:8"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19036:6:8",
"type": ""
}
],
"src": "18938:225:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19275:60:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19297:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19305:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19293:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19293:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19309:18:8",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19286:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19286:42:8"
},
"nodeType": "YulExpressionStatement",
"src": "19286:42:8"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19267:6:8",
"type": ""
}
],
"src": "19169:166:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19447:121:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19469:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19477:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19465:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19465:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19481:34:8",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19458:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19458:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19458:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19537:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19545:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19533:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19533:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19550:10:8",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19526:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19526:35:8"
},
"nodeType": "YulExpressionStatement",
"src": "19526:35:8"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19439:6:8",
"type": ""
}
],
"src": "19341:227:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19680:76:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19702:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19710:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19698:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19698:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19714:34:8",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19691:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19691:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19691:58:8"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19672:6:8",
"type": ""
}
],
"src": "19574:182:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19868:117:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19890:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19898:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19886:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19886:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19902:34:8",
"type": "",
"value": "ERC20: burn amount exceeds allow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19879:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19879:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "19879:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19958:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19966:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19954:3:8"
},
"nodeType": "YulFunctionCall",
"src": "19954:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "19971:6:8",
"type": "",
"value": "ance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19947:6:8"
},
"nodeType": "YulFunctionCall",
"src": "19947:31:8"
},
"nodeType": "YulExpressionStatement",
"src": "19947:31:8"
}
]
},
"name": "store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19860:6:8",
"type": ""
}
],
"src": "19762:223:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20097:114:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20119:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20127:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20115:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20115:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20131:34:8",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20108:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20108:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20108:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20187:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20195:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20183:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20183:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20200:3:8",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20176:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20176:28:8"
},
"nodeType": "YulExpressionStatement",
"src": "20176:28:8"
}
]
},
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20089:6:8",
"type": ""
}
],
"src": "19991:220:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20323:118:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20345:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20353:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20341:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20341:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20357:34:8",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20334:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20334:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20334:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20413:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20421:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20409:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20409:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20426:7:8",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20402:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20402:32:8"
},
"nodeType": "YulExpressionStatement",
"src": "20402:32:8"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20315:6:8",
"type": ""
}
],
"src": "20217:224:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20553:117:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20575:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20583:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20571:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20571:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20587:34:8",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20564:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20564:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20564:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20643:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20651:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20639:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20639:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20656:6:8",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20632:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20632:31:8"
},
"nodeType": "YulExpressionStatement",
"src": "20632:31:8"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20545:6:8",
"type": ""
}
],
"src": "20447:223:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20782:118:8",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20804:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20812:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20800:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20800:14:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20816:34:8",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20793:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20793:58:8"
},
"nodeType": "YulExpressionStatement",
"src": "20793:58:8"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20872:6:8"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20880:2:8",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20868:3:8"
},
"nodeType": "YulFunctionCall",
"src": "20868:15:8"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "20885:7:8",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20861:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20861:32:8"
},
"nodeType": "YulExpressionStatement",
"src": "20861:32:8"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20774:6:8",
"type": ""
}
],
"src": "20676:224:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20949:79:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21006:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21015:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21018:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21008:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21008:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "21008:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20972:5:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20997:5:8"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "20979:17:8"
},
"nodeType": "YulFunctionCall",
"src": "20979:24:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "20969:2:8"
},
"nodeType": "YulFunctionCall",
"src": "20969:35:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20962:6:8"
},
"nodeType": "YulFunctionCall",
"src": "20962:43:8"
},
"nodeType": "YulIf",
"src": "20959:2:8"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20942:5:8",
"type": ""
}
],
"src": "20906:122:8"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21077:79:8",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21134:16:8",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21143:1:8",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21146:1:8",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21136:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21136:12:8"
},
"nodeType": "YulExpressionStatement",
"src": "21136:12:8"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21100:5:8"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21125:5:8"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21107:17:8"
},
"nodeType": "YulFunctionCall",
"src": "21107:24:8"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21097:2:8"
},
"nodeType": "YulFunctionCall",
"src": "21097:35:8"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21090:6:8"
},
"nodeType": "YulFunctionCall",
"src": "21090:43:8"
},
"nodeType": "YulIf",
"src": "21087:2:8"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21070:5:8",
"type": ""
}
],
"src": "21034:122:8"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__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_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__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_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__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_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(memPtr, 32), \"llowance\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds allow\")\n\n mstore(add(memPtr, 32), \"ance\")\n\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 8,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102d2578063a457c2d7146102f0578063a9059cbb14610320578063dd62ed3e14610350578063f2fde38b1461038057610121565b806370a0823114610254578063715018a61461028457806379cc67901461028e5780638456cb59146102aa5780638da5cb5b146102b457610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633f4ba83a1461021057806342966c681461021a5780635c975abb1461023657610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e61039c565b60405161013b91906118ed565b60405180910390f35b61015e600480360381019061015991906115f3565b61042e565b60405161016b91906118d2565b60405180910390f35b61017c61044c565b6040516101899190611acf565b60405180910390f35b6101ac60048036038101906101a791906115a4565b610456565b6040516101b991906118d2565b60405180910390f35b6101ca610557565b6040516101d79190611aea565b60405180910390f35b6101fa60048036038101906101f591906115f3565b610560565b60405161020791906118d2565b60405180910390f35b61021861060c565b005b610234600480360381019061022f919061162f565b610692565b005b61023e6106a6565b60405161024b91906118d2565b60405180910390f35b61026e6004803603810190610269919061153f565b6106bd565b60405161027b9190611acf565b60405180910390f35b61028c610705565b005b6102a860048036038101906102a391906115f3565b610842565b005b6102b26108c6565b005b6102bc61094c565b6040516102c991906118b7565b60405180910390f35b6102da610976565b6040516102e791906118ed565b60405180910390f35b61030a600480360381019061030591906115f3565b610a08565b60405161031791906118d2565b60405180910390f35b61033a600480360381019061033591906115f3565b610afc565b60405161034791906118d2565b60405180910390f35b61036a60048036038101906103659190611568565b610b1a565b6040516103779190611acf565b60405180910390f35b61039a6004803603810190610395919061153f565b610ba1565b005b6060600380546103ab90611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611c33565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b600061044261043b610d52565b8484610d5a565b6001905092915050565b6000600254905090565b6000610463848484610f25565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ae610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610525906119ef565b60405180910390fd5b61054b8561053a610d52565b85846105469190611b77565b610d5a565b60019150509392505050565b60006012905090565b600061060261056d610d52565b84846001600061057b610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fd9190611b21565b610d5a565b6001905092915050565b610614610d52565b73ffffffffffffffffffffffffffffffffffffffff1661063261094c565b73ffffffffffffffffffffffffffffffffffffffff1614610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f90611a0f565b60405180910390fd5b6106906111a4565b565b6106a361069d610d52565b82611246565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070d610d52565b73ffffffffffffffffffffffffffffffffffffffff1661072b61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061085583610850610d52565b610b1a565b90508181101561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611a2f565b60405180910390fd5b6108b7836108a6610d52565b84846108b29190611b77565b610d5a565b6108c18383611246565b505050565b6108ce610d52565b73ffffffffffffffffffffffffffffffffffffffff166108ec61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990611a0f565b60405180910390fd5b61094a61141a565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098590611c33565b80601f01602080910402602001604051908101604052809291908181526020018280546109b190611c33565b80156109fe5780601f106109d3576101008083540402835291602001916109fe565b820191906000526020600020905b8154815290600101906020018083116109e157829003601f168201915b5050505050905090565b60008060016000610a17610d52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611aaf565b60405180910390fd5b610af1610adf610d52565b858584610aec9190611b77565b610d5a565b600191505092915050565b6000610b10610b09610d52565b8484610f25565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba9610d52565b73ffffffffffffffffffffffffffffffffffffffff16610bc761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611a0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061196f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061198f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f189190611acf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611a6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061190f565b60405180910390fd5b6110108383836114bd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906119af565b60405180910390fd5b81816110a29190611b77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111329190611b21565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111969190611acf565b60405180910390a350505050565b6111ac6106a6565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061192f565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61122f610d52565b60405161123c91906118b7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90611a4f565b60405180910390fd5b6112c2826000836114bd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061194f565b60405180910390fd5b81816113549190611b77565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113a89190611b77565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140d9190611acf565b60405180910390a3505050565b6114226106a6565b15611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906119cf565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114a6610d52565b6040516114b391906118b7565b60405180910390a1565b6114c56106a6565b15611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906119cf565b60405180910390fd5b611510838383610d4d565b505050565b600081359050611524816120b4565b92915050565b600081359050611539816120cb565b92915050565b60006020828403121561155157600080fd5b600061155f84828501611515565b91505092915050565b6000806040838503121561157b57600080fd5b600061158985828601611515565b925050602061159a85828601611515565b9150509250929050565b6000806000606084860312156115b957600080fd5b60006115c786828701611515565b93505060206115d886828701611515565b92505060406115e98682870161152a565b9150509250925092565b6000806040838503121561160657600080fd5b600061161485828601611515565b92505060206116258582860161152a565b9150509250929050565b60006020828403121561164157600080fd5b600061164f8482850161152a565b91505092915050565b61166181611bab565b82525050565b61167081611bbd565b82525050565b600061168182611b05565b61168b8185611b10565b935061169b818560208601611c00565b6116a481611cc3565b840191505092915050565b60006116bc602383611b10565b91506116c782611cd4565b604082019050919050565b60006116df601483611b10565b91506116ea82611d23565b602082019050919050565b6000611702602283611b10565b915061170d82611d4c565b604082019050919050565b6000611725602683611b10565b915061173082611d9b565b604082019050919050565b6000611748602283611b10565b915061175382611dea565b604082019050919050565b600061176b602683611b10565b915061177682611e39565b604082019050919050565b600061178e601083611b10565b915061179982611e88565b602082019050919050565b60006117b1602883611b10565b91506117bc82611eb1565b604082019050919050565b60006117d4602083611b10565b91506117df82611f00565b602082019050919050565b60006117f7602483611b10565b915061180282611f29565b604082019050919050565b600061181a602183611b10565b915061182582611f78565b604082019050919050565b600061183d602583611b10565b915061184882611fc7565b604082019050919050565b6000611860602483611b10565b915061186b82612016565b604082019050919050565b6000611883602583611b10565b915061188e82612065565b604082019050919050565b6118a281611be9565b82525050565b6118b181611bf3565b82525050565b60006020820190506118cc6000830184611658565b92915050565b60006020820190506118e76000830184611667565b92915050565b600060208201905081810360008301526119078184611676565b905092915050565b60006020820190508181036000830152611928816116af565b9050919050565b60006020820190508181036000830152611948816116d2565b9050919050565b60006020820190508181036000830152611968816116f5565b9050919050565b6000602082019050818103600083015261198881611718565b9050919050565b600060208201905081810360008301526119a88161173b565b9050919050565b600060208201905081810360008301526119c88161175e565b9050919050565b600060208201905081810360008301526119e881611781565b9050919050565b60006020820190508181036000830152611a08816117a4565b9050919050565b60006020820190508181036000830152611a28816117c7565b9050919050565b60006020820190508181036000830152611a48816117ea565b9050919050565b60006020820190508181036000830152611a688161180d565b9050919050565b60006020820190508181036000830152611a8881611830565b9050919050565b60006020820190508181036000830152611aa881611853565b9050919050565b60006020820190508181036000830152611ac881611876565b9050919050565b6000602082019050611ae46000830184611899565b92915050565b6000602082019050611aff60008301846118a8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2c82611be9565b9150611b3783611be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6c57611b6b611c65565b5b828201905092915050565b6000611b8282611be9565b9150611b8d83611be9565b925082821015611ba057611b9f611c65565b5b828203905092915050565b6000611bb682611bc9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c1e578082015181840152602081019050611c03565b83811115611c2d576000848401525b50505050565b60006002820490506001821680611c4b57607f821691505b60208210811415611c5f57611c5e611c94565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120bd81611bab565b81146120c857600080fd5b50565b6120d481611be9565b81146120df57600080fd5b5056fea264697066735822122020b4b44b35c1eab0ac0207bc47cd44f4bc54d7708af0aa3e9b1a649d05ec67cd64736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x380 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x2AA JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B4 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x236 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x39C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH2 0x44C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x15A4 JUMP JUMPDEST PUSH2 0x456 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B9 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x1AEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x560 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x218 PUSH2 0x60C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x162F JUMP JUMPDEST PUSH2 0x692 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23E PUSH2 0x6A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x269 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27B SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28C PUSH2 0x705 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0x842 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH2 0x8C6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BC PUSH2 0x94C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DA PUSH2 0x976 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x18ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x15F3 JUMP JUMPDEST PUSH2 0xAFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x18D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x1568 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x377 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH2 0xBA1 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3AB SWAP1 PUSH2 0x1C33 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 0x3D7 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x424 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x424 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 0x407 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x442 PUSH2 0x43B PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x463 DUP5 DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x4AE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x52E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x525 SWAP1 PUSH2 0x19EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x54B DUP6 PUSH2 0x53A PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x546 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x56D PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x57B PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x5FD SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x614 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x632 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x688 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67F SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x690 PUSH2 0x11A4 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x6A3 PUSH2 0x69D PUSH2 0xD52 JUMP JUMPDEST DUP3 PUSH2 0x1246 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70D PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x72B PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x781 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x778 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x855 DUP4 PUSH2 0x850 PUSH2 0xD52 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x89A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x891 SWAP1 PUSH2 0x1A2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x8A6 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH2 0x8C1 DUP4 DUP4 PUSH2 0x1246 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8CE PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8EC PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x939 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x94A PUSH2 0x141A 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 0x985 SWAP1 PUSH2 0x1C33 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 0x9B1 SWAP1 PUSH2 0x1C33 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9FE 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 0x9E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xA17 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xAD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xACB SWAP1 PUSH2 0x1AAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF1 PUSH2 0xADF PUSH2 0xD52 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xAEC SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB10 PUSH2 0xB09 PUSH2 0xD52 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA9 PUSH2 0xD52 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBC7 PUSH2 0x94C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC1D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC14 SWAP1 PUSH2 0x1A0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC84 SWAP1 PUSH2 0x196F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDCA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDC1 SWAP1 PUSH2 0x1A8F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE31 SWAP1 PUSH2 0x198F 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 0xF18 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF95 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF8C SWAP1 PUSH2 0x1A6F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFFC SWAP1 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1010 DUP4 DUP4 DUP4 PUSH2 0x14BD 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 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x108D SWAP1 PUSH2 0x19AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x10A2 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1132 SWAP2 SWAP1 PUSH2 0x1B21 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1196 SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x11AC PUSH2 0x6A6 JUMP JUMPDEST PUSH2 0x11EB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11E2 SWAP1 PUSH2 0x192F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x122F PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x123C SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x12B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12AD SWAP1 PUSH2 0x1A4F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x14BD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1348 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x133F SWAP1 PUSH2 0x194F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1354 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13A8 SWAP2 SWAP1 PUSH2 0x1B77 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x140D SWAP2 SWAP1 PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1422 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x14A6 PUSH2 0xD52 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B3 SWAP2 SWAP1 PUSH2 0x18B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x14C5 PUSH2 0x6A6 JUMP JUMPDEST ISZERO PUSH2 0x1505 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14FC SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1510 DUP4 DUP4 DUP4 PUSH2 0xD4D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1524 DUP2 PUSH2 0x20B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1539 DUP2 PUSH2 0x20CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155F DUP5 DUP3 DUP6 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x157B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1589 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x159A DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15C7 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x15D8 DUP7 DUP3 DUP8 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15E9 DUP7 DUP3 DUP8 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1614 DUP6 DUP3 DUP7 ADD PUSH2 0x1515 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1625 DUP6 DUP3 DUP7 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164F DUP5 DUP3 DUP6 ADD PUSH2 0x152A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1661 DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1670 DUP2 PUSH2 0x1BBD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1681 DUP3 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0x168B DUP2 DUP6 PUSH2 0x1B10 JUMP JUMPDEST SWAP4 POP PUSH2 0x169B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1C00 JUMP JUMPDEST PUSH2 0x16A4 DUP2 PUSH2 0x1CC3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BC PUSH1 0x23 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16C7 DUP3 PUSH2 0x1CD4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DF PUSH1 0x14 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x16EA DUP3 PUSH2 0x1D23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1702 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x170D DUP3 PUSH2 0x1D4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1725 PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1730 DUP3 PUSH2 0x1D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1748 PUSH1 0x22 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1753 DUP3 PUSH2 0x1DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176B PUSH1 0x26 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1776 DUP3 PUSH2 0x1E39 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x178E PUSH1 0x10 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1799 DUP3 PUSH2 0x1E88 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B1 PUSH1 0x28 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17BC DUP3 PUSH2 0x1EB1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D4 PUSH1 0x20 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x17DF DUP3 PUSH2 0x1F00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F7 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1802 DUP3 PUSH2 0x1F29 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x181A PUSH1 0x21 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1825 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x183D PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x1848 DUP3 PUSH2 0x1FC7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1860 PUSH1 0x24 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x186B DUP3 PUSH2 0x2016 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1883 PUSH1 0x25 DUP4 PUSH2 0x1B10 JUMP JUMPDEST SWAP2 POP PUSH2 0x188E DUP3 PUSH2 0x2065 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18A2 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x18B1 DUP2 PUSH2 0x1BF3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18CC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1658 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x18E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1667 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1907 DUP2 DUP5 PUSH2 0x1676 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1928 DUP2 PUSH2 0x16AF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1948 DUP2 PUSH2 0x16D2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1968 DUP2 PUSH2 0x16F5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1988 DUP2 PUSH2 0x1718 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19A8 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19C8 DUP2 PUSH2 0x175E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x19E8 DUP2 PUSH2 0x1781 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A08 DUP2 PUSH2 0x17A4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A28 DUP2 PUSH2 0x17C7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A48 DUP2 PUSH2 0x17EA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A68 DUP2 PUSH2 0x180D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1A88 DUP2 PUSH2 0x1830 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AA8 DUP2 PUSH2 0x1853 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1AC8 DUP2 PUSH2 0x1876 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AE4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1899 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AFF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18A8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B2C DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B37 DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1B6C JUMPI PUSH2 0x1B6B PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B82 DUP3 PUSH2 0x1BE9 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B8D DUP4 PUSH2 0x1BE9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1BA0 JUMPI PUSH2 0x1B9F PUSH2 0x1C65 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB6 DUP3 PUSH2 0x1BC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1C1E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1C03 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1C2D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1C4B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x1C94 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x20BD DUP2 PUSH2 0x1BAB JUMP JUMPDEST DUP2 EQ PUSH2 0x20C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x20D4 DUP2 PUSH2 0x1BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x20DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 0xB4 0xB4 0x4B CALLDATALOAD 0xC1 0xEA 0xB0 0xAC MUL SMOD 0xBC SELFBALANCE 0xCD DIFFICULTY DELEGATECALL 0xBC SLOAD 0xD7 PUSH17 0x8AF0AA3E9B1A649D05EC67CD64736F6C63 NUMBER STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "322:524:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4174:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3165:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3014:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;582:63:7;;;:::i;:::-;;487:89:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1042:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3329:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1700:145:0;;;:::i;:::-;;882:327:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;517:59:7;;;:::i;:::-;;1068:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2288:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6315:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3657:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3887:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:240:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2077:98:2;2131:13;2163:5;2156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2077:98;:::o;4174:166::-;4257:4;4273:39;4282:12;:10;:12::i;:::-;4296:7;4305:6;4273:8;:39::i;:::-;4329:4;4322:11;;4174:166;;;;:::o;3165:106::-;3226:7;3252:12;;3245:19;;3165:106;:::o;4807:414::-;4913:4;4929:36;4939:6;4947:9;4958:6;4929:9;:36::i;:::-;4976:24;5003:11;:19;5015:6;5003:19;;;;;;;;;;;;;;;:33;5023:12;:10;:12::i;:::-;5003:33;;;;;;;;;;;;;;;;4976:60;;5074:6;5054:16;:26;;5046:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5135:57;5144:6;5152:12;:10;:12::i;:::-;5185:6;5166:16;:25;;;;:::i;:::-;5135:8;:57::i;:::-;5210:4;5203:11;;;4807:414;;;;;:::o;3014:91::-;3072:5;3096:2;3089:9;;3014:91;:::o;5616:212::-;5704:4;5720:80;5729:12;:10;:12::i;:::-;5743:7;5789:10;5752:11;:25;5764:12;:10;:12::i;:::-;5752:25;;;;;;;;;;;;;;;:34;5778:7;5752:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5720:8;:80::i;:::-;5817:4;5810:11;;5616:212;;;;:::o;582:63:7:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;628:10:7::1;:8;:10::i;:::-;582:63::o:0;487:89:4:-;542:27;548:12;:10;:12::i;:::-;562:6;542:5;:27::i;:::-;487:89;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;3329:125:2:-;3403:7;3429:9;:18;3439:7;3429:18;;;;;;;;;;;;;;;;3422:25;;3329:125;;;:::o;1700:145:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1806:1:::1;1769:40;;1790:6;;;;;;;;;;;1769:40;;;;;;;;;;;;1836:1;1819:6;;:19;;;;;;;;;;;;;;;;;;1700:145::o:0;882:327:4:-;958:24;985:32;995:7;1004:12;:10;:12::i;:::-;985:9;:32::i;:::-;958:59;;1055:6;1035:16;:26;;1027:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1112:58;1121:7;1130:12;:10;:12::i;:::-;1163:6;1144:16;:25;;;;:::i;:::-;1112:8;:58::i;:::-;1180:22;1186:7;1195:6;1180:5;:22::i;:::-;882:327;;;:::o;517:59:7:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;561:8:7::1;:6;:8::i;:::-;517:59::o:0;1068:85:0:-;1114:7;1140:6;;;;;;;;;;;1133:13;;1068:85;:::o;2288:102:2:-;2344:13;2376:7;2369:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:102;:::o;6315:371::-;6408:4;6424:24;6451:11;:25;6463:12;:10;:12::i;:::-;6451:25;;;;;;;;;;;;;;;:34;6477:7;6451:34;;;;;;;;;;;;;;;;6424:61;;6523:15;6503:16;:35;;6495:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6590:67;6599:12;:10;:12::i;:::-;6613:7;6641:15;6622:16;:34;;;;:::i;:::-;6590:8;:67::i;:::-;6675:4;6668:11;;;6315:371;;;;:::o;3657:172::-;3743:4;3759:42;3769:12;:10;:12::i;:::-;3783:9;3794:6;3759:9;:42::i;:::-;3818:4;3811:11;;3657:172;;;;:::o;3887:149::-;3976:7;4002:11;:18;4014:5;4002:18;;;;;;;;;;;;;;;:27;4021:7;4002:27;;;;;;;;;;;;;;;;3995:34;;3887:149;;;;:::o;1994:240:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2102:1:::1;2082:22;;:8;:22;;;;2074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2191:8;2162:38;;2183:6;;;;;;;;;;;2162:38;;;;;;;;;;;;2219:8;2210:6;;:17;;;;;;;;;;;;;;;;;;1994:240:::0;:::o;10506:92:2:-;;;;:::o;586:96:6:-;639:7;665:10;658:17;;586:96;:::o;9579:340:2:-;9697:1;9680:19;;:5;:19;;;;9672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9777:1;9758:21;;:7;:21;;;;9750:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9859:6;9829:11;:18;9841:5;9829:18;;;;;;;;;;;;;;;:27;9848:7;9829:27;;;;;;;;;;;;;;;:36;;;;9896:7;9880:32;;9889:5;9880:32;;;9905:6;9880:32;;;;;;:::i;:::-;;;;;;;;9579:340;;;:::o;7160:592::-;7283:1;7265:20;;:6;:20;;;;7257:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7366:1;7345:23;;:9;:23;;;;7337:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7419:47;7440:6;7448:9;7459:6;7419:20;:47::i;:::-;7477:21;7501:9;:17;7511:6;7501:17;;;;;;;;;;;;;;;;7477:41;;7553:6;7536:13;:23;;7528:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7648:6;7632:13;:22;;;;:::i;:::-;7612:9;:17;7622:6;7612:17;;;;;;;;;;;;;;;:42;;;;7688:6;7664:9;:20;7674:9;7664:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7727:9;7710:35;;7719:6;7710:35;;;7738:6;7710:35;;;;;;:::i;:::-;;;;;;;;7160:592;;;;:::o;2054:117:1:-;1621:8;:6;:8::i;:::-;1613:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2122:5:::1;2112:7;;:15;;;;;;;;;;;;;;;;;;2142:22;2151:12;:10;:12::i;:::-;2142:22;;;;;;:::i;:::-;;;;;;;;2054:117::o:0;8673:483:2:-;8775:1;8756:21;;:7;:21;;;;8748:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8826:49;8847:7;8864:1;8868:6;8826:20;:49::i;:::-;8886:22;8911:9;:18;8921:7;8911:18;;;;;;;;;;;;;;;;8886:43;;8965:6;8947:14;:24;;8939:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9058:6;9041:14;:23;;;;:::i;:::-;9020:9;:18;9030:7;9020:18;;;;;;;;;;;;;;;:44;;;;9090:6;9074:12;;:22;;;;;;;:::i;:::-;;;;;;;;9138:1;9112:37;;9121:7;9112:37;;;9142:6;9112:37;;;;;;:::i;:::-;;;;;;;;8673:483;;;:::o;1807:115:1:-;1356:8;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1876:4:::1;1866:7;;:14;;;;;;;;;;;;;;;;;;1895:20;1902:12;:10;:12::i;:::-;1895:20;;;;;;:::i;:::-;;;;;;;;1807:115::o:0;651:193:7:-;1356:8:1;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;793:44:7::1;820:4;826:2;830:6;793:26;:44::i;:::-;651:193:::0;;;:::o;7:139:8:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:170::-;18217:22;18213:1;18205:6;18201:14;18194:46;18183:64;:::o;18253:221::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:4;18457:2;18449:6;18445:15;18438:29;18359:115;:::o;18480:225::-;18620:34;18616:1;18608:6;18604:14;18597:58;18689:8;18684:2;18676:6;18672:15;18665:33;18586:119;:::o;18711:221::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:4;18915:2;18907:6;18903:15;18896:29;18817:115;:::o;18938:225::-;19078:34;19074:1;19066:6;19062:14;19055:58;19147:8;19142:2;19134:6;19130:15;19123:33;19044:119;:::o;19169:166::-;19309:18;19305:1;19297:6;19293:14;19286:42;19275:60;:::o;19341:227::-;19481:34;19477:1;19469:6;19465:14;19458:58;19550:10;19545:2;19537:6;19533:15;19526:35;19447:121;:::o;19574:182::-;19714:34;19710:1;19702:6;19698:14;19691:58;19680:76;:::o;19762:223::-;19902:34;19898:1;19890:6;19886:14;19879:58;19971:6;19966:2;19958:6;19954:15;19947:31;19868:117;:::o;19991:220::-;20131:34;20127:1;20119:6;20115:14;20108:58;20200:3;20195:2;20187:6;20183:15;20176:28;20097:114;:::o;20217:224::-;20357:34;20353:1;20345:6;20341:14;20334:58;20426:7;20421:2;20413:6;20409:15;20402:32;20323:118;:::o;20447:223::-;20587:34;20583:1;20575:6;20571:14;20564:58;20656:6;20651:2;20643:6;20639:15;20632:31;20553:117;:::o;20676:224::-;20816:34;20812:1;20804:6;20800:14;20793:58;20885:7;20880:2;20872:6;20868:15;20861:32;20782:118;:::o;20906:122::-;20979:24;20997:5;20979:24;:::i;:::-;20972:5;20969:35;20959:2;;21018:1;21015;21008:12;20959:2;20949:79;:::o;21034:122::-;21107:24;21125:5;21107:24;:::i;:::-;21100:5;21097:35;21087:2;;21146:1;21143;21136:12;21087:2;21077:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1694400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1564",
"burn(uint256)": "infinite",
"burnFrom(address,uint256)": "infinite",
"decimals()": "366",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "1383",
"pause()": "infinite",
"paused()": "1290",
"renounceOwnership()": "24527",
"symbol()": "infinite",
"totalSupply()": "1205",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "24941",
"unpause()": "infinite"
},
"internal": {
"_beforeTokenTransfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"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 value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"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 anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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: - `recipient` 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}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
},
"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": {
"brightertomorrow.sol": "BrighterTomorrow"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.1.0/access/Ownable.sol": {
"keccak256": "0x1cae4f85f114ff17b90414f5da67365b1d00337abb5bce9bf944eb78a2c0673c",
"license": "MIT",
"urls": [
"bzz-raw://d5ff16b336ce8f906478d5f2eecc6435e00833bdc0b92f6b209cf9e92cb5b2b7",
"dweb:/ipfs/QmRD1rAZEqQ73C33cdA3QoUyBDMEWnNKNMc6PNkAZWHeQQ"
]
},
"@openzeppelin/contracts@4.1.0/security/Pausable.sol": {
"keccak256": "0xab1f67e4c96dfe0e3875d22883c3dee5411914f40ce0c54ef407f030d803512e",
"license": "MIT",
"urls": [
"bzz-raw://b651c0571e3ecc124b3af7a598357a19406969b21b8a3fa06eeaf5e5c9150d6c",
"dweb:/ipfs/QmPfcAhbGVfsSd7VKet77fuST397b7XSFU2myXxLdok79v"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol": {
"keccak256": "0xfeccdcbf67b2006a715e5af1a4c7556004d95b2806552b5cc54e46e8eb7e887b",
"license": "MIT",
"urls": [
"bzz-raw://45b1f9043c0fb450272f20ed19ef633fcba1b129d602651a856dfae1a2243a2c",
"dweb:/ipfs/QmUTSQiDikkcNtTtyDpkEwCM5ztVUUh9c1inBukn6HC5Vr"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xb8cc16fa5514ccbff1123c566ec0a21682f1ded0ca7e5df719c6bd0b7429390a",
"license": "MIT",
"urls": [
"bzz-raw://80a57501e3b11616e3e252ee40b4479dc09f831a9aaf83224179eb1ccd54b7eb",
"dweb:/ipfs/QmZcREGkEbu9NoMiYXrXdJBAWNfeC41uM13rFaVL9VQafS"
]
},
"@openzeppelin/contracts@4.1.0/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2",
"license": "MIT",
"urls": [
"bzz-raw://d4c3df1a7ca104b633a7d81c6c6f5192367d150cd5a32cba81f7f27012729013",
"dweb:/ipfs/QmSim72e3ZVsfgZt8UceCvbiSuMRHR6WDsiamqNzZahGSY"
]
},
"@openzeppelin/contracts@4.1.0/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"brightertomorrow.sol": {
"keccak256": "0x1b28681a4547b87223f2f9d844cef565dbf2018fd1dc81e58d112ad515111d8b",
"license": "MIT",
"urls": [
"bzz-raw://40862c56bd1ee9a54867960db6858a975e52f63d7e396ad15b9347eeaffe7e7a",
"dweb:/ipfs/QmdUYWAfS5pjEKkb3k83hfqjGsv2odgKwdACoD3SYWURPq"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts@4.1.0/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.1.0/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts@4.1.0/security/Pausable.sol";
import "@openzeppelin/contracts@4.1.0/access/Ownable.sol";
contract BrighterTomorrow is ERC20, ERC20Burnable, Pausable, Ownable {
constructor() ERC20("Brighter Tomorrow", "TMRW") {
_mint(msg.sender, 7900000000 * 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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment