Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Minyi219/5d2f52d5c7912dbacf9674c60c54073e to your computer and use it in GitHub Desktop.
Save Minyi219/5d2f52d5c7912dbacf9674c60c54073e 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.20+commit.a1b79de6.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.20;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)
pragma solidity ^0.8.20;
import {IERC20Permit} from "./IERC20Permit.sol";
import {ERC20} from "../ERC20.sol";
import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";
import {EIP712} from "../../../utils/cryptography/EIP712.sol";
import {Nonces} from "../../../utils/Nonces.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
bytes32 private constant PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev Permit deadline has expired.
*/
error ERC2612ExpiredSignature(uint256 deadline);
/**
* @dev Mismatched signature.
*/
error ERC2612InvalidSigner(address signer, address owner);
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @inheritdoc IERC20Permit
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
if (block.timestamp > deadline) {
revert ERC2612ExpiredSignature(deadline);
}
bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
if (signer != owner) {
revert ERC2612InvalidSigner(signer, owner);
}
_approve(owner, spender, value);
}
/**
* @inheritdoc IERC20Permit
*/
function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
return super.nonces(owner);
}
/**
* @inheritdoc IERC20Permit
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
return _domainSeparatorV4();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.20;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS
}
/**
* @dev The signature derives the `address(0)`.
*/
error ECDSAInvalidSignature();
/**
* @dev The signature has an invalid length.
*/
error ECDSAInvalidSignatureLength(uint256 length);
/**
* @dev The signature has an S value that is in the upper half order.
*/
error ECDSAInvalidSignatureS(bytes32 s);
/**
* @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
* return address(0) without also returning an error description. Errors are documented using an enum (error type)
* and a bytes32 providing additional information about the error.
*
* If no error is returned, then the address can be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
unchecked {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
// We do not check for an overflow here since the shift operation results in 0 or 1.
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError, bytes32) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS, s);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature, bytes32(0));
}
return (signer, RecoverError.NoError, bytes32(0));
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
*/
function _throwError(RecoverError error, bytes32 errorArg) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert ECDSAInvalidSignature();
} else if (error == RecoverError.InvalidSignatureLength) {
revert ECDSAInvalidSignatureLength(uint256(errorArg));
} else if (error == RecoverError.InvalidSignatureS) {
revert ECDSAInvalidSignatureS(errorArg);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.20;
import {MessageHashUtils} from "./MessageHashUtils.sol";
import {ShortStrings, ShortString} from "../ShortStrings.sol";
import {IERC5267} from "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev See {IERC-5267}.
*/
function eip712Domain()
public
view
virtual
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_EIP712Name(),
_EIP712Version(),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
/**
* @dev The name parameter for the EIP712 domain.
*
* NOTE: By default this function reads _name which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Name() internal view returns (string memory) {
return _name.toStringWithFallback(_nameFallback);
}
/**
* @dev The version parameter for the EIP712 domain.
*
* NOTE: By default this function reads _version which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Version() internal view returns (string memory) {
return _version.toStringWithFallback(_versionFallback);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)
pragma solidity ^0.8.20;
import {Strings} from "../Strings.sol";
/**
* @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
*
* The library provides methods for generating a hash of a message that conforms to the
* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
* specifications.
*/
library MessageHashUtils {
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing a bytes32 `messageHash` with
* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
* keccak256, although any bytes32 value can be safely used because the final digest will
* be re-hashed.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
}
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing an arbitrary `message` with
* `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
return
keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x00` (data with intended validator).
*
* The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
* `validator` address. Then hashing the result.
*
* See {ECDSA-recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(hex"19_00", validator, data));
}
/**
* @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
*
* The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
* `\x19\x01` and hashing the result. It corresponds to the hash signed by the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
*
* See {ECDSA-recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, hex"19_01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
digest := keccak256(ptr, 0x42)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides tracking nonces for addresses. Nonces will only increment.
*/
abstract contract Nonces {
/**
* @dev The nonce used for an `account` is not the expected current nonce.
*/
error InvalidAccountNonce(address account, uint256 currentNonce);
mapping(address account => uint256) private _nonces;
/**
* @dev Returns the next unused nonce for an address.
*/
function nonces(address owner) public view virtual returns (uint256) {
return _nonces[owner];
}
/**
* @dev Consumes a nonce.
*
* Returns the current value and increments nonce.
*/
function _useNonce(address owner) internal virtual returns (uint256) {
// For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
// decremented or reset. This guarantees that the nonce never overflows.
unchecked {
// It is important to do x++ and not ++x here.
return _nonces[owner]++;
}
}
/**
* @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
*/
function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
uint256 current = _useNonce(owner);
if (nonce != current) {
revert InvalidAccountNonce(owner, current);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.20;
import {StorageSlot} from "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using
* {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_336": {
"entryPoint": null,
"id": 336,
"parameterSlots": 2,
"returnSlots": 0
},
"@_50": {
"entryPoint": null,
"id": 50,
"parameterSlots": 1,
"returnSlots": 0
},
"@_965": {
"entryPoint": null,
"id": 965,
"parameterSlots": 0,
"returnSlots": 0
},
"@_transferOwnership_146": {
"entryPoint": 303,
"id": 146,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1405,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 959,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 1369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1338,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 921,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 798,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1110,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1081,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1051,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 553,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 508,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 683,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1039,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 893,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 695,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 846,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 889,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5817:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:7"
},
"nodeType": "YulFunctionCall",
"src": "87:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:7",
"type": ""
}
],
"src": "7:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:7"
},
"nodeType": "YulFunctionCall",
"src": "150:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:7",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:7"
},
"nodeType": "YulFunctionCall",
"src": "247:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:7"
},
"nodeType": "YulFunctionCall",
"src": "271:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:7"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:7"
},
"nodeType": "YulFunctionCall",
"src": "336:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:7"
},
"nodeType": "YulFunctionCall",
"src": "433:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:7"
},
"nodeType": "YulFunctionCall",
"src": "457:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:7"
},
"nodeType": "YulFunctionCall",
"src": "555:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:7"
},
"nodeType": "YulFunctionCall",
"src": "602:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:7"
},
"nodeType": "YulFunctionCall",
"src": "677:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:7"
},
"nodeType": "YulFunctionCall",
"src": "626:26:7"
},
"nodeType": "YulIf",
"src": "623:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:7"
},
"nodeType": "YulFunctionCall",
"src": "770:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:7"
},
"nodeType": "YulFunctionCall",
"src": "740:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:7"
},
"nodeType": "YulFunctionCall",
"src": "717:38:7"
},
"nodeType": "YulIf",
"src": "714:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:7",
"type": ""
}
],
"src": "484:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:7",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:7",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:7"
},
"nodeType": "YulFunctionCall",
"src": "895:14:7"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:7"
},
{
"nodeType": "YulAssignment",
"src": "918:26:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:7"
},
"nodeType": "YulFunctionCall",
"src": "926:18:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:7"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:7",
"type": ""
}
],
"src": "810:141:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:7"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:7",
"type": ""
}
],
"src": "957:93:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:7"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:7"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:7",
"type": ""
}
],
"src": "1056:107:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:7",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:7",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:7"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:7"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:7"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:7"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:7"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:7"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:7"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:7",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:7",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:7",
"type": ""
}
],
"src": "1169:393:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:7",
"type": ""
}
],
"src": "1568:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:7"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:7",
"type": ""
}
],
"src": "1651:60:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:7"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:7"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:7"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:7"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:7",
"type": ""
}
],
"src": "1717:142:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:7"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:7",
"type": ""
}
],
"src": "1865:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:7",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:7"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:7"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:7"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:7"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:7"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:7"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:7"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:7"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:7"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:7"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:7",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:7",
"type": ""
}
],
"src": "1946:269:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:7"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:7",
"type": ""
}
],
"src": "2221:73:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:7",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:7"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:7"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:7"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:7"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:7"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:7",
"type": ""
}
],
"src": "2300:189:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:7"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:7",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:7"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:7",
"statements": []
},
"src": "2555:120:7"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:7",
"type": ""
}
],
"src": "2495:186:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:7",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:7"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:7"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:7",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:7"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:7"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:7",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:7"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:7"
},
"nodeType": "YulIf",
"src": "3071:49:7"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:7"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:7"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:7"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:7"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:7"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:7"
},
"nodeType": "YulIf",
"src": "2777:446:7"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:7",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:7",
"type": ""
}
],
"src": "2687:543:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:7"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:7",
"type": ""
}
],
"src": "3236:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:7",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:7"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:7"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:7",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:7",
"type": ""
}
],
"src": "3359:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:7"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:7"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:7",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:7"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:7"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:7",
"type": ""
}
],
"src": "3533:295:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:7",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:7"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:7"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:7"
},
"nodeType": "YulIf",
"src": "4038:56:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:7"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:7"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:7"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:7"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:7"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:7"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:7",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:7"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:7",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:7"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:7",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:7"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:7"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:7"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:7",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:7"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:7",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:7"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:7"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:7",
"statements": []
},
"src": "4524:208:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:7"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:7"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:7"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:7"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:7"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:7"
},
"nodeType": "YulIf",
"src": "4745:179:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:7"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:7"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:7"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:7"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:7"
},
"nodeType": "YulIf",
"src": "5041:77:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:7"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:7"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:7"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:7"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:7",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:7"
},
"nodeType": "YulSwitch",
"src": "4335:887:7"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:7",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:7",
"type": ""
}
],
"src": "3833:1395:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5279:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5289:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5304:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5311:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5300:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5300:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5289:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5261:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5271:7:7",
"type": ""
}
],
"src": "5234:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5411:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5421:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5450:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5432:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5432:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5421:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5393:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5403:7:7",
"type": ""
}
],
"src": "5366:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5533:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5550:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5573:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5555:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5555:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5543:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5543:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "5543:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5521:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5528:3:7",
"type": ""
}
],
"src": "5468:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5690:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5700:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5712:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5723:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5708:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5708:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5700:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5780:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5793:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5789:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5789:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5736:43:7"
},
"nodeType": "YulFunctionCall",
"src": "5736:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "5736:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5662:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5674:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5685:4:7",
"type": ""
}
],
"src": "5592:222:7"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801562000010575f80fd5b50336040518060400160405280600e81526020017f47616d654f7261636c65436f696e0000000000000000000000000000000000008152506040518060400160405280600381526020017f474f43000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000456565b508060049081620000a1919062000456565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e91906200057d565b60405180910390fd5b62000128816200012f60201b60201c565b5062000598565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026e57607f821691505b60208210810362000284576200028362000229565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ab565b620002f48683620002ab565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033e6200033862000332846200030c565b62000315565b6200030c565b9050919050565b5f819050919050565b62000359836200031e565b62000371620003688262000345565b848454620002b7565b825550505050565b5f90565b6200038762000379565b620003948184846200034e565b505050565b5b81811015620003bb57620003af5f826200037d565b6001810190506200039a565b5050565b601f8211156200040a57620003d4816200028a565b620003df846200029c565b81016020851015620003ef578190505b62000407620003fe856200029c565b83018262000399565b50505b505050565b5f82821c905092915050565b5f6200042c5f19846008026200040f565b1980831691505092915050565b5f6200044683836200041b565b9150826002028217905092915050565b6200046182620001f2565b67ffffffffffffffff8111156200047d576200047c620001fc565b5b62000489825462000256565b62000496828285620003bf565b5f60209050601f831160018114620004cc575f8415620004b7578287015190505b620004c3858262000439565b86555062000532565b601f198416620004dc866200028a565b5f5b828110156200050557848901518255600182019150602085019450602081019050620004de565b8683101562000525578489015162000521601f8916826200041b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000565826200053a565b9050919050565b620005778162000559565b82525050565b5f602082019050620005925f8301846200056c565b92915050565b6118b780620005a65f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063dd62ed3e1161006f578063dd62ed3e14610320578063e2c0726314610350578063e621ecec1461036c578063eca272bb14610388578063f2fde38b146103925761012a565b80638da5cb5b1461027a57806395d89b4114610298578063a451910c146102b6578063a9059cbb146102d2578063c3e55ba7146103025761012a565b806350297416116100f257806350297416146101e8578063697c99591461020657806370a0823114610236578063715018a614610266578063805dd212146102705761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b6101366103ae565b60405161014391906112d6565b60405180910390f35b61016660048036038101906101619190611387565b61043e565b60405161017391906113df565b60405180910390f35b610184610460565b6040516101919190611407565b60405180910390f35b6101b460048036038101906101af9190611420565b610469565b6040516101c191906113df565b60405180910390f35b6101d2610497565b6040516101df919061148b565b60405180910390f35b6101f061049f565b6040516101fd9190611407565b60405180910390f35b610220600480360381019061021b91906114a4565b6104a4565b60405161022d91906113df565b60405180910390f35b610250600480360381019061024b91906114a4565b6104f6565b60405161025d9190611407565b60405180910390f35b61026e61053b565b005b61027861054e565b005b6102826106ab565b60405161028f91906114de565b60405180910390f35b6102a06106d3565b6040516102ad91906112d6565b60405180910390f35b6102d060048036038101906102cb91906114f7565b610763565b005b6102ec60048036038101906102e79190611387565b6107ef565b6040516102f991906113df565b60405180910390f35b61030a610811565b6040516103179190611407565b60405180910390f35b61033a60048036038101906103359190611522565b610817565b6040516103479190611407565b60405180910390f35b61036a600480360381019061036591906114a4565b610899565b005b610386600480360381019061038191906114f7565b6108f9565b005b61039061099e565b005b6103ac60048036038101906103a791906114a4565b6109fd565b005b6060600380546103bd9061158d565b80601f01602080910402602001604051908101604052809291908181526020018280546103e99061158d565b80156104345780601f1061040b57610100808354040283529160200191610434565b820191905f5260205f20905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b5f80610448610a81565b9050610455818585610a88565b600191505092915050565b5f600254905090565b5f80610473610a81565b9050610480858285610a9a565b61048b858585610b2c565b60019150509392505050565b5f6012905090565b600a81565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610543610c1c565b61054c5f610ca3565b565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054116105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c490611607565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061065a3382610d66565b3373ffffffffffffffffffffffffffffffffffffffff167f8ca22a21a0ae28f0bdef2150ae70b453d899dac6c11446823295ff67e7efa011826040516106a09190611407565b60405180910390a250565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e29061158d565b80601f016020809104026020016040519081016040528092919081815260200182805461070e9061158d565b80156107595780601f1061073057610100808354040283529160200191610759565b820191905f5260205f20905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611695565b60405180910390fd5b50565b5f806107f9610a81565b9050610806818585610b2c565b600191505092915050565b6103e881565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a1610c1c565b6103e860065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546108ef91906116e0565b9250508190555050565b80610903336104f6565b1015610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b9061175d565b60405180910390fd5b5f6064600a6064610955919061177b565b8361096091906117ae565b61096a919061181c565b905061099a336064600a6064610980919061177b565b8561098b91906117ae565b610995919061181c565b610de5565b5050565b6109a6610c1c565b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b610a05610c1c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a75575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a6c91906114de565b60405180910390fd5b610a7e81610ca3565b50565b5f33905090565b610a958383836001610e64565b505050565b5f610aa58484610817565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b17578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b0e9392919061184c565b60405180910390fd5b610b2584848484035f610e64565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b9391906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c0c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c0391906114de565b60405180910390fd5b610c17838383611033565b505050565b610c24610a81565b73ffffffffffffffffffffffffffffffffffffffff16610c426106ab565b73ffffffffffffffffffffffffffffffffffffffff1614610ca157610c65610a81565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c9891906114de565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610dcd91906114de565b60405180910390fd5b610de15f8383611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e55575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e4c91906114de565b60405180910390fd5b610e60825f83611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ed4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ecb91906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f44575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f3b91906114de565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561102d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110249190611407565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611083578060025f82825461107791906116e0565b92505081905550611151565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561110c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111039392919061184c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611198578060025f82825403925050819055506111e2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161123f9190611407565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611283578082015181840152602081019050611268565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112a88261124c565b6112b28185611256565b93506112c2818560208601611266565b6112cb8161128e565b840191505092915050565b5f6020820190508181035f8301526112ee818461129e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611323826112fa565b9050919050565b61133381611319565b811461133d575f80fd5b50565b5f8135905061134e8161132a565b92915050565b5f819050919050565b61136681611354565b8114611370575f80fd5b50565b5f813590506113818161135d565b92915050565b5f806040838503121561139d5761139c6112f6565b5b5f6113aa85828601611340565b92505060206113bb85828601611373565b9150509250929050565b5f8115159050919050565b6113d9816113c5565b82525050565b5f6020820190506113f25f8301846113d0565b92915050565b61140181611354565b82525050565b5f60208201905061141a5f8301846113f8565b92915050565b5f805f60608486031215611437576114366112f6565b5b5f61144486828701611340565b935050602061145586828701611340565b925050604061146686828701611373565b9150509250925092565b5f60ff82169050919050565b61148581611470565b82525050565b5f60208201905061149e5f83018461147c565b92915050565b5f602082840312156114b9576114b86112f6565b5b5f6114c684828501611340565b91505092915050565b6114d881611319565b82525050565b5f6020820190506114f15f8301846114cf565b92915050565b5f6020828403121561150c5761150b6112f6565b5b5f61151984828501611373565b91505092915050565b5f8060408385031215611538576115376112f6565b5b5f61154585828601611340565b925050602061155685828601611340565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115a457607f821691505b6020821081036115b7576115b6611560565b5b50919050565b7f4e6f2067616d65207265776172647320746f20636c61696d00000000000000005f82015250565b5f6115f1601883611256565b91506115fc826115bd565b602082019050919050565b5f6020820190508181035f83015261161e816115e5565b9050919050565b7f4f6e6c792070726564696374696f6e206e6f6465732063616e2070726f7669645f8201527f6520646174610000000000000000000000000000000000000000000000000000602082015250565b5f61167f602683611256565b915061168a82611625565b604082019050919050565b5f6020820190508181035f8301526116ac81611673565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6116ea82611354565b91506116f583611354565b925082820190508082111561170d5761170c6116b3565b5b92915050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611747601483611256565b915061175282611713565b602082019050919050565b5f6020820190508181035f8301526117748161173b565b9050919050565b5f61178582611354565b915061179083611354565b92508282039050818111156117a8576117a76116b3565b5b92915050565b5f6117b882611354565b91506117c383611354565b92508282026117d181611354565b915082820484148315176117e8576117e76116b3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61182682611354565b915061183183611354565b925082611841576118406117ef565b5b828204905092915050565b5f60608201905061185f5f8301866114cf565b61186c60208301856113f8565b61187960408301846113f8565b94935050505056fea264697066735822122091caa53e0689b2f9a296255f1d5be9e8e4f9697d8b1b97551e61d407649f0bb564736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x47616D654F7261636C65436F696E000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x474F430000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x456 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x456 JUMP JUMPDEST POP POP POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x117 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x10E SWAP2 SWAP1 PUSH3 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x128 DUP2 PUSH3 0x12F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x598 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x26E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x284 JUMPI PUSH3 0x283 PUSH3 0x229 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x2E8 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2AB JUMP JUMPDEST PUSH3 0x2F4 DUP7 DUP4 PUSH3 0x2AB JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x33E PUSH3 0x338 PUSH3 0x332 DUP5 PUSH3 0x30C JUMP JUMPDEST PUSH3 0x315 JUMP JUMPDEST PUSH3 0x30C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x359 DUP4 PUSH3 0x31E JUMP JUMPDEST PUSH3 0x371 PUSH3 0x368 DUP3 PUSH3 0x345 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x2B7 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x387 PUSH3 0x379 JUMP JUMPDEST PUSH3 0x394 DUP2 DUP5 DUP5 PUSH3 0x34E JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3BB JUMPI PUSH3 0x3AF PUSH0 DUP3 PUSH3 0x37D JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x39A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x40A JUMPI PUSH3 0x3D4 DUP2 PUSH3 0x28A JUMP JUMPDEST PUSH3 0x3DF DUP5 PUSH3 0x29C JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3EF JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x407 PUSH3 0x3FE DUP6 PUSH3 0x29C JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x399 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x42C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x40F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x446 DUP4 DUP4 PUSH3 0x41B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x461 DUP3 PUSH3 0x1F2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x47D JUMPI PUSH3 0x47C PUSH3 0x1FC JUMP JUMPDEST JUMPDEST PUSH3 0x489 DUP3 SLOAD PUSH3 0x256 JUMP JUMPDEST PUSH3 0x496 DUP3 DUP3 DUP6 PUSH3 0x3BF JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x4CC JUMPI PUSH0 DUP5 ISZERO PUSH3 0x4B7 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x4C3 DUP6 DUP3 PUSH3 0x439 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x532 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x4DC DUP7 PUSH3 0x28A JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x505 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x4DE JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x525 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x521 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x41B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x565 DUP3 PUSH3 0x53A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x577 DUP2 PUSH3 0x559 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x592 PUSH0 DUP4 ADD DUP5 PUSH3 0x56C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x18B7 DUP1 PUSH3 0x5A6 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12A JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xE2C07263 EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xE621ECEC EQ PUSH2 0x36C JUMPI DUP1 PUSH4 0xECA272BB EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x392 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0xA451910C EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xC3E55BA7 EQ PUSH2 0x302 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x50297416 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x50297416 EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0x697C9959 EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x236 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0x805DD212 EQ PUSH2 0x270 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1CA JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x136 PUSH2 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x12D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x43E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x184 PUSH2 0x460 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AF SWAP2 SWAP1 PUSH2 0x1420 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D2 PUSH2 0x497 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x220 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22D SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x250 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25D SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH2 0x53B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x278 PUSH2 0x54E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x282 PUSH2 0x6AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28F SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A0 PUSH2 0x6D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x12D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2CB SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x763 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x7EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH2 0x811 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x1407 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 0x1522 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x1407 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 0x14A4 JUMP JUMPDEST PUSH2 0x899 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x386 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x381 SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x8F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x390 PUSH2 0x99E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A7 SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x9FD JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3BD SWAP1 PUSH2 0x158D 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 0x3E9 SWAP1 PUSH2 0x158D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x434 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x40B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x434 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x417 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x448 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x455 DUP2 DUP6 DUP6 PUSH2 0xA88 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x473 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x480 DUP6 DUP3 DUP6 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x48B DUP6 DUP6 DUP6 PUSH2 0xB2C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x543 PUSH2 0xC1C JUMP JUMPDEST PUSH2 0x54C PUSH0 PUSH2 0xCA3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD GT PUSH2 0x5CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5C4 SWAP1 PUSH2 0x1607 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x65A CALLER DUP3 PUSH2 0xD66 JUMP JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8CA22A21A0AE28F0BDEF2150AE70B453D899DAC6C11446823295FF67E7EFA011 DUP3 PUSH1 0x40 MLOAD PUSH2 0x6A0 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x6E2 SWAP1 PUSH2 0x158D 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 0x70E SWAP1 PUSH2 0x158D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x759 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x730 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x759 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x73C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x7EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E3 SWAP1 PUSH2 0x1695 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x7F9 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x806 DUP2 DUP6 DUP6 PUSH2 0xB2C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8A1 PUSH2 0xC1C JUMP JUMPDEST PUSH2 0x3E8 PUSH1 0x6 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8EF SWAP2 SWAP1 PUSH2 0x16E0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH2 0x903 CALLER PUSH2 0x4F6 JUMP JUMPDEST LT ISZERO PUSH2 0x944 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93B SWAP1 PUSH2 0x175D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 PUSH1 0xA PUSH1 0x64 PUSH2 0x955 SWAP2 SWAP1 PUSH2 0x177B JUMP JUMPDEST DUP4 PUSH2 0x960 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH2 0x96A SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST SWAP1 POP PUSH2 0x99A CALLER PUSH1 0x64 PUSH1 0xA PUSH1 0x64 PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x177B JUMP JUMPDEST DUP6 PUSH2 0x98B SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH2 0x995 SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST PUSH2 0xDE5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9A6 PUSH2 0xC1C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x7 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0xA05 PUSH2 0xC1C JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA75 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6C SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA7E DUP2 PUSH2 0xCA3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xA95 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xE64 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xAA5 DUP5 DUP5 PUSH2 0x817 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xB26 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xB17 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB0E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x184C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB25 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xE64 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB9C JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB93 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xC0C JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC03 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC17 DUP4 DUP4 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xC24 PUSH2 0xA81 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC42 PUSH2 0x6AB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCA1 JUMPI PUSH2 0xC65 PUSH2 0xA81 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC98 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDD6 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDCD SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDE1 PUSH0 DUP4 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE55 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4C SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE60 DUP3 PUSH0 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xED4 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xECB SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF44 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3B SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x102D JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1024 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1083 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1077 SWAP2 SWAP1 PUSH2 0x16E0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x1151 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x110C JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1103 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x184C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1198 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x11E2 JUMP JUMPDEST DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x123F SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1283 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1268 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x12A8 DUP3 PUSH2 0x124C JUMP JUMPDEST PUSH2 0x12B2 DUP2 DUP6 PUSH2 0x1256 JUMP JUMPDEST SWAP4 POP PUSH2 0x12C2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1266 JUMP JUMPDEST PUSH2 0x12CB DUP2 PUSH2 0x128E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12EE DUP2 DUP5 PUSH2 0x129E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 DUP3 PUSH2 0x12FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1333 DUP2 PUSH2 0x1319 JUMP JUMPDEST DUP2 EQ PUSH2 0x133D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x134E DUP2 PUSH2 0x132A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1366 DUP2 PUSH2 0x1354 JUMP JUMPDEST DUP2 EQ PUSH2 0x1370 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1381 DUP2 PUSH2 0x135D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x139D JUMPI PUSH2 0x139C PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x13AA DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x13BB DUP6 DUP3 DUP7 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x13D9 DUP2 PUSH2 0x13C5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13F2 PUSH0 DUP4 ADD DUP5 PUSH2 0x13D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1401 DUP2 PUSH2 0x1354 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x141A PUSH0 DUP4 ADD DUP5 PUSH2 0x13F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1437 JUMPI PUSH2 0x1436 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1444 DUP7 DUP3 DUP8 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1455 DUP7 DUP3 DUP8 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1466 DUP7 DUP3 DUP8 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1485 DUP2 PUSH2 0x1470 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x149E PUSH0 DUP4 ADD DUP5 PUSH2 0x147C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14B9 JUMPI PUSH2 0x14B8 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x14C6 DUP5 DUP3 DUP6 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x14D8 DUP2 PUSH2 0x1319 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14F1 PUSH0 DUP4 ADD DUP5 PUSH2 0x14CF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH2 0x150B PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1519 DUP5 DUP3 DUP6 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1538 JUMPI PUSH2 0x1537 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1545 DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1556 DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x15A4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x15B7 JUMPI PUSH2 0x15B6 PUSH2 0x1560 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6F2067616D65207265776172647320746F20636C61696D0000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15F1 PUSH1 0x18 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x15FC DUP3 PUSH2 0x15BD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x161E DUP2 PUSH2 0x15E5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C792070726564696374696F6E206E6F6465732063616E2070726F766964 PUSH0 DUP3 ADD MSTORE PUSH32 0x6520646174610000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x167F PUSH1 0x26 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x168A DUP3 PUSH2 0x1625 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x16AC DUP2 PUSH2 0x1673 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x16EA DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x16F5 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x170D JUMPI PUSH2 0x170C PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742062616C616E6365000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1747 PUSH1 0x14 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x1752 DUP3 PUSH2 0x1713 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1774 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1785 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x1790 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x17A8 JUMPI PUSH2 0x17A7 PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17B8 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x17C3 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x17D1 DUP2 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x17E8 JUMPI PUSH2 0x17E7 PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1826 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x1831 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1841 JUMPI PUSH2 0x1840 PUSH2 0x17EF JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x185F PUSH0 DUP4 ADD DUP7 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x186C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x13F8 JUMP JUMPDEST PUSH2 0x1879 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x13F8 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP2 0xCA 0xA5 RETURNDATACOPY MOD DUP10 0xB2 0xF9 LOG2 SWAP7 0x25 PUSH0 SAR JUMPDEST 0xE9 0xE8 0xE4 0xF9 PUSH10 0x7D8B1B97551E61D40764 SWAP16 SIGNEXTEND 0xB5 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ",
"sourceMap": "167:1709:6:-:0;;;565:67;;;;;;;;;;618:10;1896:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970:5;1962;:13;;;;;;:::i;:::-;;1995:7;1985;:17;;;;;;:::i;:::-;;1896:113;;1297:1:0;1273:26;;:12;:26;;;1269:95;;1350:1;1322:31;;;;;;;;;;;:::i;:::-;;;;;;;;1269:95;1373:32;1392:12;1373:18;;;:32;;:::i;:::-;1225:187;167:1709:6;;2912:187:0;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:126::-;5271:7;5311:42;5304:5;5300:54;5289:65;;5234:126;;;:::o;5366:96::-;5403:7;5432:24;5450:5;5432:24;:::i;:::-;5421:35;;5366:96;;;:::o;5468:118::-;5555:24;5573:5;5555:24;:::i;:::-;5550:3;5543:37;5468:118;;:::o;5592:222::-;5685:4;5723:2;5712:9;5708:18;5700:26;;5736:71;5804:1;5793:9;5789:17;5780:6;5736:71;:::i;:::-;5592:222;;;;:::o;167:1709:6:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@PREDICTION_REWARD_944": {
"entryPoint": 2065,
"id": 944,
"parameterSlots": 0,
"returnSlots": 0
},
"@SHOP_DISCOUNT_PERCENTAGE_947": {
"entryPoint": 1183,
"id": 947,
"parameterSlots": 0,
"returnSlots": 0
},
"@_approve_690": {
"entryPoint": 2696,
"id": 690,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_750": {
"entryPoint": 3684,
"id": 750,
"parameterSlots": 4,
"returnSlots": 0
},
"@_burn_672": {
"entryPoint": 3557,
"id": 672,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkOwner_84": {
"entryPoint": 3100,
"id": 84,
"parameterSlots": 0,
"returnSlots": 0
},
"@_mint_639": {
"entryPoint": 3430,
"id": 639,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_915": {
"entryPoint": 2689,
"id": 915,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_798": {
"entryPoint": 2714,
"id": 798,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_146": {
"entryPoint": 3235,
"id": 146,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_529": {
"entryPoint": 2860,
"id": 529,
"parameterSlots": 3,
"returnSlots": 0
},
"@_update_606": {
"entryPoint": 4147,
"id": 606,
"parameterSlots": 3,
"returnSlots": 0
},
"@addGameReward_1100": {
"entryPoint": 2201,
"id": 1100,
"parameterSlots": 1,
"returnSlots": 0
},
"@allowance_426": {
"entryPoint": 2071,
"id": 426,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_450": {
"entryPoint": 1086,
"id": 450,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_385": {
"entryPoint": 1270,
"id": 385,
"parameterSlots": 1,
"returnSlots": 1
},
"@becomePredictionNode_1018": {
"entryPoint": 2462,
"id": 1018,
"parameterSlots": 0,
"returnSlots": 0
},
"@claimGameReward_1005": {
"entryPoint": 1358,
"id": 1005,
"parameterSlots": 0,
"returnSlots": 0
},
"@decimals_363": {
"entryPoint": 1175,
"id": 363,
"parameterSlots": 0,
"returnSlots": 1
},
"@isPredictionNode_1030": {
"entryPoint": 1188,
"id": 1030,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_345": {
"entryPoint": 942,
"id": 345,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_67": {
"entryPoint": 1707,
"id": 67,
"parameterSlots": 0,
"returnSlots": 1
},
"@providePredictionData_1044": {
"entryPoint": 1891,
"id": 1044,
"parameterSlots": 1,
"returnSlots": 0
},
"@purchaseWithDiscount_1086": {
"entryPoint": 2297,
"id": 1086,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceOwnership_98": {
"entryPoint": 1339,
"id": 98,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_354": {
"entryPoint": 1747,
"id": 354,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_372": {
"entryPoint": 1120,
"id": 372,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_482": {
"entryPoint": 1129,
"id": 482,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_126": {
"entryPoint": 2557,
"id": 126,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_409": {
"entryPoint": 2031,
"id": 409,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 4928,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 4979,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5284,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5410,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5152,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 4999,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 5367,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5327,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5072,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4766,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5947,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5605,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5747,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 5112,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 5244,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 5342,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 6220,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5087,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4822,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5981,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5639,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5781,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 5127,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 5259,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4684,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4694,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 5856,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 6172,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 6062,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 6011,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4889,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5061,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4858,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4948,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 5232,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 4710,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 5517,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5811,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 6127,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 5472,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4854,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4750,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5": {
"entryPoint": 5907,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7": {
"entryPoint": 5565,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba": {
"entryPoint": 5669,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 4906,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 4957,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11666:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:7"
},
"nodeType": "YulFunctionCall",
"src": "87:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:7",
"type": ""
}
],
"src": "7:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:7"
},
"nodeType": "YulFunctionCall",
"src": "218:19:7"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:7"
},
{
"nodeType": "YulAssignment",
"src": "246:29:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:7"
},
"nodeType": "YulFunctionCall",
"src": "261:14:7"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:7"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:7",
"type": ""
}
],
"src": "112:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:7"
},
"nodeType": "YulFunctionCall",
"src": "449:11:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:7"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:7"
},
"nodeType": "YulFunctionCall",
"src": "468:11:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:7"
},
"nodeType": "YulFunctionCall",
"src": "462:18:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:7"
},
"nodeType": "YulFunctionCall",
"src": "442:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:7"
},
"nodeType": "YulFunctionCall",
"src": "386:13:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:7"
},
"nodeType": "YulFunctionCall",
"src": "407:10:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:7",
"statements": []
},
"src": "378:113:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "507:16:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:7"
},
"nodeType": "YulFunctionCall",
"src": "500:27:7"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:7"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:7",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:7",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:7",
"type": ""
}
],
"src": "287:246:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:7"
},
"nodeType": "YulFunctionCall",
"src": "611:14:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:7"
},
"nodeType": "YulFunctionCall",
"src": "627:7:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:7"
},
"nodeType": "YulFunctionCall",
"src": "607:28:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:7"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:7",
"type": ""
}
],
"src": "539:102:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:7"
},
"nodeType": "YulFunctionCall",
"src": "763:39:7"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:7"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:7"
},
"nodeType": "YulFunctionCall",
"src": "818:71:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:7"
},
"nodeType": "YulFunctionCall",
"src": "933:16:7"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:7"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:7"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:7"
},
"nodeType": "YulFunctionCall",
"src": "898:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:7"
},
{
"nodeType": "YulAssignment",
"src": "972:46:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:7"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:7"
},
"nodeType": "YulFunctionCall",
"src": "988:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:7"
},
"nodeType": "YulFunctionCall",
"src": "979:39:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:7"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:7",
"type": ""
}
],
"src": "647:377:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:7"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:7",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:7"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:7"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:7"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1120:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:7",
"type": ""
}
],
"src": "1030:313:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:7"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:7"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:7"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:7",
"type": ""
}
],
"src": "1349:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:7"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:7"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:7",
"type": ""
}
],
"src": "1676:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:7",
"type": ""
}
],
"src": "1808:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:7"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:7"
},
"nodeType": "YulIf",
"src": "1963:63:7"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:7",
"type": ""
}
],
"src": "1910:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:7"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:7"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:7"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:7"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:7",
"type": ""
}
],
"src": "2038:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:7",
"type": ""
}
],
"src": "2183:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:7"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:7"
},
"nodeType": "YulIf",
"src": "2319:63:7"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:7",
"type": ""
}
],
"src": "2266:122:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:7",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:7"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:7"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:7"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:7"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:7"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:7",
"type": ""
}
],
"src": "2394:139:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:7"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:7"
},
"nodeType": "YulIf",
"src": "2632:119:7"
},
{
"nodeType": "YulBlock",
"src": "2761:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:7"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:7"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:7",
"type": ""
}
],
"src": "2539:474:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:7"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:7",
"type": ""
}
],
"src": "3019:90:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:7"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:7"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:7"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:7"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:7",
"type": ""
}
],
"src": "3115:109:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:7"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:7"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:7"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:7",
"type": ""
}
],
"src": "3230:210:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:7"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:7"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:7",
"type": ""
}
],
"src": "3446:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:7"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:7"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:7",
"type": ""
}
],
"src": "3570:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:519:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3944:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3946:77:7"
},
"nodeType": "YulFunctionCall",
"src": "3946:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "3946:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3919:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3915:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3915:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3940:2:7",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3911:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3911:32:7"
},
"nodeType": "YulIf",
"src": "3908:119:7"
},
{
"nodeType": "YulBlock",
"src": "4037:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4052:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4066:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4056:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4081:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4116:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4127:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4112:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4112:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4136:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4091:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4091:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4081:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4164:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4179:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4193:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4183:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4209:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4244:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4255:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4240:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4240:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4264:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4219:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4219:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4209:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4292:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4307:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:2:7",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4311:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4337:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4372:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4383:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4368:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4368:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4392:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4347:20:7"
},
"nodeType": "YulFunctionCall",
"src": "4347:53:7"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4337:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3852:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3863:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3875:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3883:6:7",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3891:6:7",
"type": ""
}
],
"src": "3798:619:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4466:43:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4476:27:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4491:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4498:4:7",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4487:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4487:16:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4476:7:7"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4448:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4458:7:7",
"type": ""
}
],
"src": "4423:86:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4576:51:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4593:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4614:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4598:15:7"
},
"nodeType": "YulFunctionCall",
"src": "4598:22:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4586:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4586:35:7"
},
"nodeType": "YulExpressionStatement",
"src": "4586:35:7"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4564:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4571:3:7",
"type": ""
}
],
"src": "4515:112:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4727:120:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4737:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4749:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4760:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4745:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4745:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4737:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4813:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4826:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4837:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4822:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4822:17:7"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4773:39:7"
},
"nodeType": "YulFunctionCall",
"src": "4773:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "4773:67:7"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4699:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4711:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4722:4:7",
"type": ""
}
],
"src": "4633:214:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4919:263:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4965:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4967:77:7"
},
"nodeType": "YulFunctionCall",
"src": "4967:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "4967:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4940:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4949:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4936:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4936:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4961:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4932:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4932:32:7"
},
"nodeType": "YulIf",
"src": "4929:119:7"
},
{
"nodeType": "YulBlock",
"src": "5058:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5073:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5087:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5077:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5102:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5137:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5148:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5133:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5133:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5157:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5112:20:7"
},
"nodeType": "YulFunctionCall",
"src": "5112:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5102:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4889:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4900:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4912:6:7",
"type": ""
}
],
"src": "4853:329:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5253:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5270:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5293:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5275:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5275:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5263:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5263:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "5263:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5241:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5248:3:7",
"type": ""
}
],
"src": "5188:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5410:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5420:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5432:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5443:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5428:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5428:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5420:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5500:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5513:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5524:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5509:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5509:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5456:43:7"
},
"nodeType": "YulFunctionCall",
"src": "5456:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "5456:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5382:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5394:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5405:4:7",
"type": ""
}
],
"src": "5312:222:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5606:263:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5652:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5654:77:7"
},
"nodeType": "YulFunctionCall",
"src": "5654:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "5654:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5627:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5636:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5623:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5623:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5648:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5619:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5619:32:7"
},
"nodeType": "YulIf",
"src": "5616:119:7"
},
{
"nodeType": "YulBlock",
"src": "5745:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5760:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5774:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5764:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5789:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5824:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5835:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5820:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5820:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5844:7:7"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5799:20:7"
},
"nodeType": "YulFunctionCall",
"src": "5799:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5789:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5576:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5587:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5599:6:7",
"type": ""
}
],
"src": "5540:329:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5958:391:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6004:83:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6006:77:7"
},
"nodeType": "YulFunctionCall",
"src": "6006:79:7"
},
"nodeType": "YulExpressionStatement",
"src": "6006:79:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5979:7:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5988:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5975:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5975:23:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6000:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5971:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5971:32:7"
},
"nodeType": "YulIf",
"src": "5968:119:7"
},
{
"nodeType": "YulBlock",
"src": "6097:117:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6112:15:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6126:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6116:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6141:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6176:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6187:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6172:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6172:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6196:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6151:20:7"
},
"nodeType": "YulFunctionCall",
"src": "6151:53:7"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6141:6:7"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6224:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6239:16:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6253:2:7",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6243:6:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6269:63:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6304:9:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6315:6:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6300:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6300:22:7"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6324:7:7"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6279:20:7"
},
"nodeType": "YulFunctionCall",
"src": "6279:53:7"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6269:6:7"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5920:9:7",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5931:7:7",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5943:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5951:6:7",
"type": ""
}
],
"src": "5875:474:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6383:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6400:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6403:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6393:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6393:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "6393:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6497:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6500:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6490:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6490:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6490:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6521:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6524:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6514:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6514:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "6514:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6355:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6592:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6602:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6616:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6622:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6612:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6612:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6602:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6633:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6663:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6669:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6659:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6659:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6637:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6710:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6724:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6738:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6746:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6734:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6734:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6724:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6690:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6683:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6683:26:7"
},
"nodeType": "YulIf",
"src": "6680:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6813:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6827:16:7"
},
"nodeType": "YulFunctionCall",
"src": "6827:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "6827:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6777:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6800:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6808:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6797:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6797:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6774:2:7"
},
"nodeType": "YulFunctionCall",
"src": "6774:38:7"
},
"nodeType": "YulIf",
"src": "6771:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6576:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6585:6:7",
"type": ""
}
],
"src": "6541:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6973:68:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6995:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7003:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6991:3:7"
},
"nodeType": "YulFunctionCall",
"src": "6991:14:7"
},
{
"hexValue": "4e6f2067616d65207265776172647320746f20636c61696d",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7007:26:7",
"type": "",
"value": "No game rewards to claim"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6984:6:7"
},
"nodeType": "YulFunctionCall",
"src": "6984:50:7"
},
"nodeType": "YulExpressionStatement",
"src": "6984:50:7"
}
]
},
"name": "store_literal_in_memory_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6965:6:7",
"type": ""
}
],
"src": "6867:174:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7193:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7203:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7269:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7274:2:7",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7210:58:7"
},
"nodeType": "YulFunctionCall",
"src": "7210:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7203:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7375:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7",
"nodeType": "YulIdentifier",
"src": "7286:88:7"
},
"nodeType": "YulFunctionCall",
"src": "7286:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "7286:93:7"
},
{
"nodeType": "YulAssignment",
"src": "7388:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7399:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7404:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7395:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7395:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7388:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7181:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7189:3:7",
"type": ""
}
],
"src": "7047:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7590:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7600:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7612:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7623:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7608:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7608:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7600:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7647:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7658:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7643:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7643:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7666:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7672:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7662:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7662:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7636:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7636:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "7636:47:7"
},
{
"nodeType": "YulAssignment",
"src": "7692:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7826:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7700:124:7"
},
"nodeType": "YulFunctionCall",
"src": "7700:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7692:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7570:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7585:4:7",
"type": ""
}
],
"src": "7419:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7950:119:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7972:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7980:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7968:3:7"
},
"nodeType": "YulFunctionCall",
"src": "7968:14:7"
},
{
"hexValue": "4f6e6c792070726564696374696f6e206e6f6465732063616e2070726f766964",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7984:34:7",
"type": "",
"value": "Only prediction nodes can provid"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7961:6:7"
},
"nodeType": "YulFunctionCall",
"src": "7961:58:7"
},
"nodeType": "YulExpressionStatement",
"src": "7961:58:7"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8040:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8048:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8036:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8036:15:7"
},
{
"hexValue": "652064617461",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8053:8:7",
"type": "",
"value": "e data"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8029:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8029:33:7"
},
"nodeType": "YulExpressionStatement",
"src": "8029:33:7"
}
]
},
"name": "store_literal_in_memory_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7942:6:7",
"type": ""
}
],
"src": "7844:225:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8221:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8231:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8297:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8302:2:7",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8238:58:7"
},
"nodeType": "YulFunctionCall",
"src": "8238:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8231:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8403:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba",
"nodeType": "YulIdentifier",
"src": "8314:88:7"
},
"nodeType": "YulFunctionCall",
"src": "8314:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "8314:93:7"
},
{
"nodeType": "YulAssignment",
"src": "8416:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8427:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8432:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8423:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8423:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8416:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8209:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8217:3:7",
"type": ""
}
],
"src": "8075:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8618:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8628:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8640:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8651:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8636:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8636:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8628:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8675:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8686:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8671:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8671:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8694:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8700:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8690:3:7"
},
"nodeType": "YulFunctionCall",
"src": "8690:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8664:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8664:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "8664:47:7"
},
{
"nodeType": "YulAssignment",
"src": "8720:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8854:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8728:124:7"
},
"nodeType": "YulFunctionCall",
"src": "8728:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8720:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8598:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8613:4:7",
"type": ""
}
],
"src": "8447:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8900:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8917:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8920:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8910:6:7"
},
"nodeType": "YulFunctionCall",
"src": "8910:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "8910:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9014:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9017:4:7",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9007:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9007:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "9007:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9038:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9041:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9031:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9031:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "9031:15:7"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "8872:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9102:147:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9112:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9135:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9117:17:7"
},
"nodeType": "YulFunctionCall",
"src": "9117:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9112:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9146:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9169:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9151:17:7"
},
"nodeType": "YulFunctionCall",
"src": "9151:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9146:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9180:16:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9191:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9194:1:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9187:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9187:9:7"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9180:3:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9220:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9222:16:7"
},
"nodeType": "YulFunctionCall",
"src": "9222:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "9222:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9212:1:7"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9215:3:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9209:2:7"
},
"nodeType": "YulFunctionCall",
"src": "9209:10:7"
},
"nodeType": "YulIf",
"src": "9206:36:7"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9089:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9092:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9098:3:7",
"type": ""
}
],
"src": "9058:191:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9361:64:7",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9383:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9391:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9379:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9379:14:7"
},
{
"hexValue": "496e73756666696369656e742062616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9395:22:7",
"type": "",
"value": "Insufficient balance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9372:6:7"
},
"nodeType": "YulFunctionCall",
"src": "9372:46:7"
},
"nodeType": "YulExpressionStatement",
"src": "9372:46:7"
}
]
},
"name": "store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9353:6:7",
"type": ""
}
],
"src": "9255:170:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9577:220:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9587:74:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9653:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9658:2:7",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9594:58:7"
},
"nodeType": "YulFunctionCall",
"src": "9594:67:7"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9587:3:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9759:3:7"
}
],
"functionName": {
"name": "store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5",
"nodeType": "YulIdentifier",
"src": "9670:88:7"
},
"nodeType": "YulFunctionCall",
"src": "9670:93:7"
},
"nodeType": "YulExpressionStatement",
"src": "9670:93:7"
},
{
"nodeType": "YulAssignment",
"src": "9772:19:7",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9783:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9788:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9779:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9779:12:7"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9772:3:7"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9565:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9573:3:7",
"type": ""
}
],
"src": "9431:366:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9974:248:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9984:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9996:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10007:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9992:3:7"
},
"nodeType": "YulFunctionCall",
"src": "9992:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9984:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10031:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10042:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10027:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10027:17:7"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10050:4:7"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10056:9:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10046:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10046:20:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10020:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10020:47:7"
},
"nodeType": "YulExpressionStatement",
"src": "10020:47:7"
},
{
"nodeType": "YulAssignment",
"src": "10076:139:7",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10210:4:7"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10084:124:7"
},
"nodeType": "YulFunctionCall",
"src": "10084:131:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10076:4:7"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9954:9:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9969:4:7",
"type": ""
}
],
"src": "9803:419:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10273:149:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10283:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10306:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10288:17:7"
},
"nodeType": "YulFunctionCall",
"src": "10288:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10283:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10317:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10340:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10322:17:7"
},
"nodeType": "YulFunctionCall",
"src": "10322:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10317:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10351:17:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10363:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10366:1:7"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10359:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10359:9:7"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10351:4:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10393:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10395:16:7"
},
"nodeType": "YulFunctionCall",
"src": "10395:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "10395:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10384:4:7"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10390:1:7"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10381:2:7"
},
"nodeType": "YulFunctionCall",
"src": "10381:11:7"
},
"nodeType": "YulIf",
"src": "10378:37:7"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10259:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10262:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "10268:4:7",
"type": ""
}
],
"src": "10228:194:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10476:362:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10486:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10509:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10491:17:7"
},
"nodeType": "YulFunctionCall",
"src": "10491:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10486:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10520:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10543:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10525:17:7"
},
"nodeType": "YulFunctionCall",
"src": "10525:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10520:1:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10554:28:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10577:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10580:1:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "10573:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10573:9:7"
},
"variables": [
{
"name": "product_raw",
"nodeType": "YulTypedName",
"src": "10558:11:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10591:41:7",
"value": {
"arguments": [
{
"name": "product_raw",
"nodeType": "YulIdentifier",
"src": "10620:11:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10602:17:7"
},
"nodeType": "YulFunctionCall",
"src": "10602:30:7"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "10591:7:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10809:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10811:16:7"
},
"nodeType": "YulFunctionCall",
"src": "10811:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "10811:18:7"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10742:1:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10735:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10735:9:7"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10765:1:7"
},
{
"arguments": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "10772:7:7"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10781:1:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10768:3:7"
},
"nodeType": "YulFunctionCall",
"src": "10768:15:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10762:2:7"
},
"nodeType": "YulFunctionCall",
"src": "10762:22:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "10715:2:7"
},
"nodeType": "YulFunctionCall",
"src": "10715:83:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10695:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10695:113:7"
},
"nodeType": "YulIf",
"src": "10692:139:7"
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10459:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10462:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "10468:7:7",
"type": ""
}
],
"src": "10428:410:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10872:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10889:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10892:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10882:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10882:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "10882:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10986:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10989:4:7",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10979:6:7"
},
"nodeType": "YulFunctionCall",
"src": "10979:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "10979:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11010:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11013:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11003:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11003:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "11003:15:7"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "10844:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11072:143:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11082:25:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11105:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11087:17:7"
},
"nodeType": "YulFunctionCall",
"src": "11087:20:7"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11082:1:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11116:25:7",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11139:1:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11121:17:7"
},
"nodeType": "YulFunctionCall",
"src": "11121:20:7"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11116:1:7"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11163:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "11165:16:7"
},
"nodeType": "YulFunctionCall",
"src": "11165:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "11165:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11160:1:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11153:6:7"
},
"nodeType": "YulFunctionCall",
"src": "11153:9:7"
},
"nodeType": "YulIf",
"src": "11150:35:7"
},
{
"nodeType": "YulAssignment",
"src": "11195:14:7",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11204:1:7"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11207:1:7"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11200:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11200:9:7"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "11195:1:7"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11061:1:7",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11064:1:7",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "11070:1:7",
"type": ""
}
],
"src": "11030:185:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11375:288:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11385:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11397:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11408:2:7",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11393:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11393:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11385:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11465:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11478:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11489:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11474:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11474:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11421:43:7"
},
"nodeType": "YulFunctionCall",
"src": "11421:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "11421:71:7"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11546:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11559:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11570:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11555:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11555:18:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11502:43:7"
},
"nodeType": "YulFunctionCall",
"src": "11502:72:7"
},
"nodeType": "YulExpressionStatement",
"src": "11502:72:7"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "11628:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11641:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11652:2:7",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11637:3:7"
},
"nodeType": "YulFunctionCall",
"src": "11637:18:7"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11584:43:7"
},
"nodeType": "YulFunctionCall",
"src": "11584:72:7"
},
"nodeType": "YulExpressionStatement",
"src": "11584:72:7"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11331:9:7",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11343:6:7",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11351:6:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11359:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11370:4:7",
"type": ""
}
],
"src": "11221:442:7"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(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_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7(memPtr) {\n\n mstore(add(memPtr, 0), \"No game rewards to claim\")\n\n }\n\n function abi_encode_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7__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_5322df83ff0f5fc55b239950ddee73ef27482d8e4a152f05d5eb5c16630a13d7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba(memPtr) {\n\n mstore(add(memPtr, 0), \"Only prediction nodes can provid\")\n\n mstore(add(memPtr, 32), \"e data\")\n\n }\n\n function abi_encode_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba__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_8482177c6e59d31a2683a0152fce6ec5cb68ce8cb6d6b6cd98888ae6293c8fba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5(memPtr) {\n\n mstore(add(memPtr, 0), \"Insufficient balance\")\n\n }\n\n function abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__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_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063dd62ed3e1161006f578063dd62ed3e14610320578063e2c0726314610350578063e621ecec1461036c578063eca272bb14610388578063f2fde38b146103925761012a565b80638da5cb5b1461027a57806395d89b4114610298578063a451910c146102b6578063a9059cbb146102d2578063c3e55ba7146103025761012a565b806350297416116100f257806350297416146101e8578063697c99591461020657806370a0823114610236578063715018a614610266578063805dd212146102705761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b6101366103ae565b60405161014391906112d6565b60405180910390f35b61016660048036038101906101619190611387565b61043e565b60405161017391906113df565b60405180910390f35b610184610460565b6040516101919190611407565b60405180910390f35b6101b460048036038101906101af9190611420565b610469565b6040516101c191906113df565b60405180910390f35b6101d2610497565b6040516101df919061148b565b60405180910390f35b6101f061049f565b6040516101fd9190611407565b60405180910390f35b610220600480360381019061021b91906114a4565b6104a4565b60405161022d91906113df565b60405180910390f35b610250600480360381019061024b91906114a4565b6104f6565b60405161025d9190611407565b60405180910390f35b61026e61053b565b005b61027861054e565b005b6102826106ab565b60405161028f91906114de565b60405180910390f35b6102a06106d3565b6040516102ad91906112d6565b60405180910390f35b6102d060048036038101906102cb91906114f7565b610763565b005b6102ec60048036038101906102e79190611387565b6107ef565b6040516102f991906113df565b60405180910390f35b61030a610811565b6040516103179190611407565b60405180910390f35b61033a60048036038101906103359190611522565b610817565b6040516103479190611407565b60405180910390f35b61036a600480360381019061036591906114a4565b610899565b005b610386600480360381019061038191906114f7565b6108f9565b005b61039061099e565b005b6103ac60048036038101906103a791906114a4565b6109fd565b005b6060600380546103bd9061158d565b80601f01602080910402602001604051908101604052809291908181526020018280546103e99061158d565b80156104345780601f1061040b57610100808354040283529160200191610434565b820191905f5260205f20905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b5f80610448610a81565b9050610455818585610a88565b600191505092915050565b5f600254905090565b5f80610473610a81565b9050610480858285610a9a565b61048b858585610b2c565b60019150509392505050565b5f6012905090565b600a81565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610543610c1c565b61054c5f610ca3565b565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054116105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c490611607565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061065a3382610d66565b3373ffffffffffffffffffffffffffffffffffffffff167f8ca22a21a0ae28f0bdef2150ae70b453d899dac6c11446823295ff67e7efa011826040516106a09190611407565b60405180910390a250565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e29061158d565b80601f016020809104026020016040519081016040528092919081815260200182805461070e9061158d565b80156107595780601f1061073057610100808354040283529160200191610759565b820191905f5260205f20905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611695565b60405180910390fd5b50565b5f806107f9610a81565b9050610806818585610b2c565b600191505092915050565b6103e881565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a1610c1c565b6103e860065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546108ef91906116e0565b9250508190555050565b80610903336104f6565b1015610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b9061175d565b60405180910390fd5b5f6064600a6064610955919061177b565b8361096091906117ae565b61096a919061181c565b905061099a336064600a6064610980919061177b565b8561098b91906117ae565b610995919061181c565b610de5565b5050565b6109a6610c1c565b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b610a05610c1c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a75575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a6c91906114de565b60405180910390fd5b610a7e81610ca3565b50565b5f33905090565b610a958383836001610e64565b505050565b5f610aa58484610817565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b17578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b0e9392919061184c565b60405180910390fd5b610b2584848484035f610e64565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b9391906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c0c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c0391906114de565b60405180910390fd5b610c17838383611033565b505050565b610c24610a81565b73ffffffffffffffffffffffffffffffffffffffff16610c426106ab565b73ffffffffffffffffffffffffffffffffffffffff1614610ca157610c65610a81565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c9891906114de565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610dcd91906114de565b60405180910390fd5b610de15f8383611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e55575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e4c91906114de565b60405180910390fd5b610e60825f83611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ed4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ecb91906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f44575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f3b91906114de565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561102d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110249190611407565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611083578060025f82825461107791906116e0565b92505081905550611151565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561110c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111039392919061184c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611198578060025f82825403925050819055506111e2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161123f9190611407565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611283578082015181840152602081019050611268565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112a88261124c565b6112b28185611256565b93506112c2818560208601611266565b6112cb8161128e565b840191505092915050565b5f6020820190508181035f8301526112ee818461129e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611323826112fa565b9050919050565b61133381611319565b811461133d575f80fd5b50565b5f8135905061134e8161132a565b92915050565b5f819050919050565b61136681611354565b8114611370575f80fd5b50565b5f813590506113818161135d565b92915050565b5f806040838503121561139d5761139c6112f6565b5b5f6113aa85828601611340565b92505060206113bb85828601611373565b9150509250929050565b5f8115159050919050565b6113d9816113c5565b82525050565b5f6020820190506113f25f8301846113d0565b92915050565b61140181611354565b82525050565b5f60208201905061141a5f8301846113f8565b92915050565b5f805f60608486031215611437576114366112f6565b5b5f61144486828701611340565b935050602061145586828701611340565b925050604061146686828701611373565b9150509250925092565b5f60ff82169050919050565b61148581611470565b82525050565b5f60208201905061149e5f83018461147c565b92915050565b5f602082840312156114b9576114b86112f6565b5b5f6114c684828501611340565b91505092915050565b6114d881611319565b82525050565b5f6020820190506114f15f8301846114cf565b92915050565b5f6020828403121561150c5761150b6112f6565b5b5f61151984828501611373565b91505092915050565b5f8060408385031215611538576115376112f6565b5b5f61154585828601611340565b925050602061155685828601611340565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115a457607f821691505b6020821081036115b7576115b6611560565b5b50919050565b7f4e6f2067616d65207265776172647320746f20636c61696d00000000000000005f82015250565b5f6115f1601883611256565b91506115fc826115bd565b602082019050919050565b5f6020820190508181035f83015261161e816115e5565b9050919050565b7f4f6e6c792070726564696374696f6e206e6f6465732063616e2070726f7669645f8201527f6520646174610000000000000000000000000000000000000000000000000000602082015250565b5f61167f602683611256565b915061168a82611625565b604082019050919050565b5f6020820190508181035f8301526116ac81611673565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6116ea82611354565b91506116f583611354565b925082820190508082111561170d5761170c6116b3565b5b92915050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611747601483611256565b915061175282611713565b602082019050919050565b5f6020820190508181035f8301526117748161173b565b9050919050565b5f61178582611354565b915061179083611354565b92508282039050818111156117a8576117a76116b3565b5b92915050565b5f6117b882611354565b91506117c383611354565b92508282026117d181611354565b915082820484148315176117e8576117e76116b3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61182682611354565b915061183183611354565b925082611841576118406117ef565b5b828204905092915050565b5f60608201905061185f5f8301866114cf565b61186c60208301856113f8565b61187960408301846113f8565b94935050505056fea264697066735822122091caa53e0689b2f9a296255f1d5be9e8e4f9697d8b1b97551e61d407649f0bb564736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12A JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xE2C07263 EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xE621ECEC EQ PUSH2 0x36C JUMPI DUP1 PUSH4 0xECA272BB EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x392 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0xA451910C EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xC3E55BA7 EQ PUSH2 0x302 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x50297416 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x50297416 EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0x697C9959 EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x236 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0x805DD212 EQ PUSH2 0x270 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1CA JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x136 PUSH2 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x12D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x43E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x184 PUSH2 0x460 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AF SWAP2 SWAP1 PUSH2 0x1420 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D2 PUSH2 0x497 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x220 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22D SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x250 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24B SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25D SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26E PUSH2 0x53B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x278 PUSH2 0x54E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x282 PUSH2 0x6AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28F SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A0 PUSH2 0x6D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x12D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2CB SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x763 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x7EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH2 0x811 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x1407 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 0x1522 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x1407 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 0x14A4 JUMP JUMPDEST PUSH2 0x899 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x386 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x381 SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x8F9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x390 PUSH2 0x99E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A7 SWAP2 SWAP1 PUSH2 0x14A4 JUMP JUMPDEST PUSH2 0x9FD JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3BD SWAP1 PUSH2 0x158D 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 0x3E9 SWAP1 PUSH2 0x158D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x434 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x40B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x434 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x417 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x448 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x455 DUP2 DUP6 DUP6 PUSH2 0xA88 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x473 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x480 DUP6 DUP3 DUP6 PUSH2 0xA9A JUMP JUMPDEST PUSH2 0x48B DUP6 DUP6 DUP6 PUSH2 0xB2C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x543 PUSH2 0xC1C JUMP JUMPDEST PUSH2 0x54C PUSH0 PUSH2 0xCA3 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD GT PUSH2 0x5CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5C4 SWAP1 PUSH2 0x1607 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP PUSH0 PUSH1 0x6 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x65A CALLER DUP3 PUSH2 0xD66 JUMP JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8CA22A21A0AE28F0BDEF2150AE70B453D899DAC6C11446823295FF67E7EFA011 DUP3 PUSH1 0x40 MLOAD PUSH2 0x6A0 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x6E2 SWAP1 PUSH2 0x158D 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 0x70E SWAP1 PUSH2 0x158D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x759 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x730 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x759 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x73C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x7EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E3 SWAP1 PUSH2 0x1695 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x7F9 PUSH2 0xA81 JUMP JUMPDEST SWAP1 POP PUSH2 0x806 DUP2 DUP6 DUP6 PUSH2 0xB2C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8A1 PUSH2 0xC1C JUMP JUMPDEST PUSH2 0x3E8 PUSH1 0x6 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8EF SWAP2 SWAP1 PUSH2 0x16E0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH2 0x903 CALLER PUSH2 0x4F6 JUMP JUMPDEST LT ISZERO PUSH2 0x944 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x93B SWAP1 PUSH2 0x175D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x64 PUSH1 0xA PUSH1 0x64 PUSH2 0x955 SWAP2 SWAP1 PUSH2 0x177B JUMP JUMPDEST DUP4 PUSH2 0x960 SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH2 0x96A SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST SWAP1 POP PUSH2 0x99A CALLER PUSH1 0x64 PUSH1 0xA PUSH1 0x64 PUSH2 0x980 SWAP2 SWAP1 PUSH2 0x177B JUMP JUMPDEST DUP6 PUSH2 0x98B SWAP2 SWAP1 PUSH2 0x17AE JUMP JUMPDEST PUSH2 0x995 SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST PUSH2 0xDE5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9A6 PUSH2 0xC1C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x7 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0xA05 PUSH2 0xC1C JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA75 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6C SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA7E DUP2 PUSH2 0xCA3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xA95 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xE64 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xAA5 DUP5 DUP5 PUSH2 0x817 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xB26 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xB17 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB0E SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x184C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB25 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xE64 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB9C JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB93 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xC0C JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC03 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC17 DUP4 DUP4 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xC24 PUSH2 0xA81 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC42 PUSH2 0x6AB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCA1 JUMPI PUSH2 0xC65 PUSH2 0xA81 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC98 SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDD6 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDCD SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDE1 PUSH0 DUP4 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE55 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4C SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE60 DUP3 PUSH0 DUP4 PUSH2 0x1033 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xED4 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xECB SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xF44 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3B SWAP2 SWAP1 PUSH2 0x14DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x102D JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1024 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1083 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1077 SWAP2 SWAP1 PUSH2 0x16E0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x1151 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x110C JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1103 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x184C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1198 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x11E2 JUMP JUMPDEST DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x123F SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1283 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1268 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x12A8 DUP3 PUSH2 0x124C JUMP JUMPDEST PUSH2 0x12B2 DUP2 DUP6 PUSH2 0x1256 JUMP JUMPDEST SWAP4 POP PUSH2 0x12C2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1266 JUMP JUMPDEST PUSH2 0x12CB DUP2 PUSH2 0x128E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x12EE DUP2 DUP5 PUSH2 0x129E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1323 DUP3 PUSH2 0x12FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1333 DUP2 PUSH2 0x1319 JUMP JUMPDEST DUP2 EQ PUSH2 0x133D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x134E DUP2 PUSH2 0x132A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1366 DUP2 PUSH2 0x1354 JUMP JUMPDEST DUP2 EQ PUSH2 0x1370 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1381 DUP2 PUSH2 0x135D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x139D JUMPI PUSH2 0x139C PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x13AA DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x13BB DUP6 DUP3 DUP7 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x13D9 DUP2 PUSH2 0x13C5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13F2 PUSH0 DUP4 ADD DUP5 PUSH2 0x13D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1401 DUP2 PUSH2 0x1354 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x141A PUSH0 DUP4 ADD DUP5 PUSH2 0x13F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1437 JUMPI PUSH2 0x1436 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1444 DUP7 DUP3 DUP8 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1455 DUP7 DUP3 DUP8 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1466 DUP7 DUP3 DUP8 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1485 DUP2 PUSH2 0x1470 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x149E PUSH0 DUP4 ADD DUP5 PUSH2 0x147C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14B9 JUMPI PUSH2 0x14B8 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x14C6 DUP5 DUP3 DUP6 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x14D8 DUP2 PUSH2 0x1319 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14F1 PUSH0 DUP4 ADD DUP5 PUSH2 0x14CF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH2 0x150B PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1519 DUP5 DUP3 DUP6 ADD PUSH2 0x1373 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1538 JUMPI PUSH2 0x1537 PUSH2 0x12F6 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1545 DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1556 DUP6 DUP3 DUP7 ADD PUSH2 0x1340 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x15A4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x15B7 JUMPI PUSH2 0x15B6 PUSH2 0x1560 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6F2067616D65207265776172647320746F20636C61696D0000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15F1 PUSH1 0x18 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x15FC DUP3 PUSH2 0x15BD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x161E DUP2 PUSH2 0x15E5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C792070726564696374696F6E206E6F6465732063616E2070726F766964 PUSH0 DUP3 ADD MSTORE PUSH32 0x6520646174610000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x167F PUSH1 0x26 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x168A DUP3 PUSH2 0x1625 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x16AC DUP2 PUSH2 0x1673 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x16EA DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x16F5 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x170D JUMPI PUSH2 0x170C PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742062616C616E6365000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1747 PUSH1 0x14 DUP4 PUSH2 0x1256 JUMP JUMPDEST SWAP2 POP PUSH2 0x1752 DUP3 PUSH2 0x1713 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1774 DUP2 PUSH2 0x173B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1785 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x1790 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x17A8 JUMPI PUSH2 0x17A7 PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17B8 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x17C3 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x17D1 DUP2 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x17E8 JUMPI PUSH2 0x17E7 PUSH2 0x16B3 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1826 DUP3 PUSH2 0x1354 JUMP JUMPDEST SWAP2 POP PUSH2 0x1831 DUP4 PUSH2 0x1354 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1841 JUMPI PUSH2 0x1840 PUSH2 0x17EF JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x185F PUSH0 DUP4 ADD DUP7 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x186C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x13F8 JUMP JUMPDEST PUSH2 0x1879 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x13F8 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP2 0xCA 0xA5 RETURNDATACOPY MOD DUP10 0xB2 0xF9 LOG2 SWAP7 0x25 PUSH0 SAR JUMPDEST 0xE9 0xE8 0xE4 0xF9 PUSH10 0x7D8B1B97551E61D40764 SWAP16 SIGNEXTEND 0xB5 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ",
"sourceMap": "167:1709:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;407:53:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1042:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3299:116:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:101:0;;;:::i;:::-;;638:291:6;;;:::i;:::-;;1638:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2276:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1161:216:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3610:178:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;322:48:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3846:140:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1759:115:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1383:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;935:101;;;:::i;:::-;;2543:215:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:89:2;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;3144:97::-;3196:7;3222:12;;3215:19;;3144:97;:::o;5039:244::-;5126:4;5142:15;5160:12;:10;:12::i;:::-;5142:30;;5182:37;5198:4;5204:7;5213:5;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;:::o;3002:82::-;3051:5;3075:2;3068:9;;3002:82;:::o;407:53:6:-;458:2;407:53;:::o;1042:113::-;1105:4;1128:14;:20;1143:4;1128:20;;;;;;;;;;;;;;;;;;;;;;;;;1121:27;;1042:113;;;:::o;3299:116:2:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;638:291:6:-;718:1;692:11;:23;704:10;692:23;;;;;;;;;;;;;;;;:27;684:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;758:14;775:11;:23;787:10;775:23;;;;;;;;;;;;;;;;758:40;;834:1;808:11;:23;820:10;808:23;;;;;;;;;;;;;;;:27;;;;845:25;851:10;863:6;845:5;:25::i;:::-;903:10;885:37;;;915:6;885:37;;;;;;:::i;:::-;;;;;;;;674:255;638:291::o;1638:85:0:-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;1161:216:6:-;1244:14;:26;1259:10;1244:26;;;;;;;;;;;;;;;;;;;;;;;;;1236:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1161:216;:::o;3610:178:2:-;3679:4;3695:13;3711:12;:10;:12::i;:::-;3695:28;;3733:27;3743:5;3750:2;3754:5;3733:9;:27::i;:::-;3777:4;3770:11;;;3610:178;;;;:::o;322:48:6:-;366:4;322:48;:::o;3846:140:2:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;1759:115:6:-;1531:13:0;:11;:13::i;:::-;366:4:6::1;1827:11;:19;1839:6;1827:19;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;1759:115:::0;:::o;1383:370::-;1481:6;1456:21;1466:10;1456:9;:21::i;:::-;:31;;1448:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1522:24;1595:3;458:2;1560:3;:30;;;;:::i;:::-;1550:6;:41;;;;:::i;:::-;1549:49;;;;:::i;:::-;1522:76;;1608:68;1614:10;1672:3;458:2;1637:3;:30;;;;:::i;:::-;1627:6;:41;;;;:::i;:::-;1626:49;;;;:::i;:::-;1608:5;:68::i;:::-;1438:315;1383:370;:::o;935:101::-;1531:13:0;:11;:13::i;:::-;1025:4:6::1;996:14;:26;1011:10;996:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;935:101::o:0;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;656:96:5:-;709:7;735:10;728:17;;656:96;:::o;8989:128:2:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;10762:24;10789:25;10799:5;10806:7;10789:9;:25::i;:::-;10762:52;;10848:17;10828:16;:37;10824:310;;10904:5;10885:16;:24;10881:130;;;10963:7;10972:16;10990:5;10936:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10881:130;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10824:310;10752:388;10663:477;;;:::o;5656:300::-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;2912:187::-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;7721:208:2:-;7810:1;7791:21;;:7;:21;;;7787:91;;7864:1;7835:32;;;;;;;;;;;:::i;:::-;;;;;;;;7787:91;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;:::-;7721:208;;:::o;8247:206::-;8336:1;8317:21;;:7;:21;;;8313:89;;8388:1;8361:30;;;;;;;;;;;:::i;:::-;;;;;;;;8313:89;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;:::-;8247:206;;:::o;9949:432::-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;6271:1107::-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:174::-;7007:26;7003:1;6995:6;6991:14;6984:50;6867:174;:::o;7047:366::-;7189:3;7210:67;7274:2;7269:3;7210:67;:::i;:::-;7203:74;;7286:93;7375:3;7286:93;:::i;:::-;7404:2;7399:3;7395:12;7388:19;;7047:366;;;:::o;7419:419::-;7585:4;7623:2;7612:9;7608:18;7600:26;;7672:9;7666:4;7662:20;7658:1;7647:9;7643:17;7636:47;7700:131;7826:4;7700:131;:::i;:::-;7692:139;;7419:419;;;:::o;7844:225::-;7984:34;7980:1;7972:6;7968:14;7961:58;8053:8;8048:2;8040:6;8036:15;8029:33;7844:225;:::o;8075:366::-;8217:3;8238:67;8302:2;8297:3;8238:67;:::i;:::-;8231:74;;8314:93;8403:3;8314:93;:::i;:::-;8432:2;8427:3;8423:12;8416:19;;8075:366;;;:::o;8447:419::-;8613:4;8651:2;8640:9;8636:18;8628:26;;8700:9;8694:4;8690:20;8686:1;8675:9;8671:17;8664:47;8728:131;8854:4;8728:131;:::i;:::-;8720:139;;8447:419;;;:::o;8872:180::-;8920:77;8917:1;8910:88;9017:4;9014:1;9007:15;9041:4;9038:1;9031:15;9058:191;9098:3;9117:20;9135:1;9117:20;:::i;:::-;9112:25;;9151:20;9169:1;9151:20;:::i;:::-;9146:25;;9194:1;9191;9187:9;9180:16;;9215:3;9212:1;9209:10;9206:36;;;9222:18;;:::i;:::-;9206:36;9058:191;;;;:::o;9255:170::-;9395:22;9391:1;9383:6;9379:14;9372:46;9255:170;:::o;9431:366::-;9573:3;9594:67;9658:2;9653:3;9594:67;:::i;:::-;9587:74;;9670:93;9759:3;9670:93;:::i;:::-;9788:2;9783:3;9779:12;9772:19;;9431:366;;;:::o;9803:419::-;9969:4;10007:2;9996:9;9992:18;9984:26;;10056:9;10050:4;10046:20;10042:1;10031:9;10027:17;10020:47;10084:131;10210:4;10084:131;:::i;:::-;10076:139;;9803:419;;;:::o;10228:194::-;10268:4;10288:20;10306:1;10288:20;:::i;:::-;10283:25;;10322:20;10340:1;10322:20;:::i;:::-;10317:25;;10366:1;10363;10359:9;10351:17;;10390:1;10384:4;10381:11;10378:37;;;10395:18;;:::i;:::-;10378:37;10228:194;;;;:::o;10428:410::-;10468:7;10491:20;10509:1;10491:20;:::i;:::-;10486:25;;10525:20;10543:1;10525:20;:::i;:::-;10520:25;;10580:1;10577;10573:9;10602:30;10620:11;10602:30;:::i;:::-;10591:41;;10781:1;10772:7;10768:15;10765:1;10762:22;10742:1;10735:9;10715:83;10692:139;;10811:18;;:::i;:::-;10692:139;10476:362;10428:410;;;;:::o;10844:180::-;10892:77;10889:1;10882:88;10989:4;10986:1;10979:15;11013:4;11010:1;11003:15;11030:185;11070:1;11087:20;11105:1;11087:20;:::i;:::-;11082:25;;11121:20;11139:1;11121:20;:::i;:::-;11116:25;;11160:1;11150:35;;11165:18;;:::i;:::-;11150:35;11207:1;11204;11200:9;11195:14;;11030:185;;;;:::o;11221:442::-;11370:4;11408:2;11397:9;11393:18;11385:26;;11421:71;11489:1;11478:9;11474:17;11465:6;11421:71;:::i;:::-;11502:72;11570:2;11559:9;11555:18;11546:6;11502:72;:::i;:::-;11584;11652:2;11641:9;11637:18;11628:6;11584:72;:::i;:::-;11221:442;;;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1265400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"PREDICTION_REWARD()": "436",
"SHOP_DISCOUNT_PERCENTAGE()": "348",
"addGameReward(address)": "infinite",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2896",
"becomePredictionNode()": "infinite",
"claimGameReward()": "infinite",
"decimals()": "450",
"isPredictionNode(address)": "2915",
"name()": "infinite",
"owner()": "2538",
"providePredictionData(uint256)": "3007",
"purchaseWithDiscount(uint256)": "infinite",
"renounceOwnership()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2500",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "infinite"
}
},
"methodIdentifiers": {
"PREDICTION_REWARD()": "c3e55ba7",
"SHOP_DISCOUNT_PERCENTAGE()": "50297416",
"addGameReward(address)": "e2c07263",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"becomePredictionNode()": "eca272bb",
"claimGameReward()": "805dd212",
"decimals()": "313ce567",
"isPredictionNode(address)": "697c9959",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"providePredictionData(uint256)": "a451910c",
"purchaseWithDiscount(uint256)": "e621ecec",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"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": "player",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "reward",
"type": "uint256"
}
],
"name": "GameRewardClaimed",
"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": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [],
"name": "PREDICTION_REWARD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "SHOP_DISCOUNT_PERCENTAGE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "player",
"type": "address"
}
],
"name": "addGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"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": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "becomePredictionNode",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "node",
"type": "address"
}
],
"name": "isPredictionNode",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"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": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "providePredictionData",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "purchaseWithDiscount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"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"
}
]
}
{
"compiler": {
"version": "0.8.20+commit.a1b79de6"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"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": "player",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "reward",
"type": "uint256"
}
],
"name": "GameRewardClaimed",
"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": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [],
"name": "PREDICTION_REWARD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "SHOP_DISCOUNT_PERCENTAGE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "player",
"type": "address"
}
],
"name": "addGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"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": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "becomePredictionNode",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "node",
"type": "address"
}
],
"name": "isPredictionNode",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"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": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "providePredictionData",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "purchaseWithDiscount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"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"
}
],
"devdoc": {
"errors": {
"ERC20InsufficientAllowance(address,uint256,uint256)": [
{
"details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.",
"params": {
"allowance": "Amount of tokens a `spender` is allowed to operate with.",
"needed": "Minimum amount required to perform a transfer.",
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC20InsufficientBalance(address,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC20InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC20InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidSpender(address)": [
{
"details": "Indicates a failure with the `spender` to be approved. Used in approvals.",
"params": {
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`."
},
"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": {
"contracts/MyToken.sol": "GameOracleCoin"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb",
"license": "MIT",
"urls": [
"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6",
"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"
]
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"keccak256": "0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7",
"license": "MIT",
"urls": [
"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f",
"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0xc3e1fa9d1987f8d349dfb4d6fe93bf2ca014b52ba335cfac30bfe71e357e6f80",
"license": "MIT",
"urls": [
"bzz-raw://c5703ccdeb7b1d685e375ed719117e9edf2ab4bc544f24f23b0d50ec82257229",
"dweb:/ipfs/QmTdwkbQq7owpCiyuzE7eh5LrD2ddrBCZ5WHVsWPi1RrTS"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70",
"license": "MIT",
"urls": [
"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c",
"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2",
"license": "MIT",
"urls": [
"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850",
"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3",
"license": "MIT",
"urls": [
"bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867",
"dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY"
]
},
"contracts/MyToken.sol": {
"keccak256": "0xc5adf59604a9a415e685a687d14dadaa99d0c4c6fb3c5199e290d74988def9a5",
"license": "MIT",
"urls": [
"bzz-raw://7b476048a570c7964bd96c674eef1388b698c8b58c7ebec9b36c167e3ba92a3e",
"dweb:/ipfs/QmeeXL3KJiZCTdf6uAY8dumHryJLCkXLbBKDj7qoFwtdp9"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract GameOracleCoin is ERC20, Ownable {
mapping(address => uint256) private gameRewards;
mapping(address => bool) private predictionNode;
uint256 public constant PREDICTION_REWARD = 1000; // Reward for prediction nodes
uint256 public constant SHOP_DISCOUNT_PERCENTAGE = 10; // Shop discount percentage
event GameRewardClaimed(address indexed player, uint256 reward);
constructor() ERC20("GameOracleCoin", "GOC") Ownable(msg.sender) {}
function claimGameReward() external {
require(gameRewards[msg.sender] > 0, "No game rewards to claim");
uint256 reward = gameRewards[msg.sender];
gameRewards[msg.sender] = 0;
_mint(msg.sender, reward);
emit GameRewardClaimed(msg.sender, reward);
}
function becomePredictionNode() external onlyOwner {
predictionNode[msg.sender] = true;
}
function isPredictionNode(address node) external view returns (bool) {
return predictionNode[node];
}
function providePredictionData(uint256 /* data */) external view {
require(predictionNode[msg.sender], "Only prediction nodes can provide data");
// Additional logic for handling prediction data
}
function purchaseWithDiscount(uint256 amount) external {
require(balanceOf(msg.sender) >= amount, "Insufficient balance");
uint256 discountedAmount = (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100;
_burn(msg.sender, (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100);
// Additional logic for completing the purchase with discount
}
function addGameReward(address player) external onlyOwner {
gameRewards[player] += PREDICTION_REWARD;
}
}
This file has been truncated, but you can view the full file.
{
"id": "fbed643ffec69d53a6cb8686b88946ff",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.20",
"solcLongVersion": "0.8.20+commit.a1b79de6",
"input": {
"language": "Solidity",
"sources": {
"contracts/MyToken.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\ncontract GameOracleCoin is ERC20, Ownable {\n mapping(address => uint256) private gameRewards;\n mapping(address => bool) private predictionNode;\n\n uint256 public constant PREDICTION_REWARD = 1000; // Reward for prediction nodes\n uint256 public constant SHOP_DISCOUNT_PERCENTAGE = 10; // Shop discount percentage\n\n event GameRewardClaimed(address indexed player, uint256 reward);\n\n constructor() ERC20(\"GameOracleCoin\", \"GOC\") Ownable(msg.sender) {}\n\n function claimGameReward() external {\n require(gameRewards[msg.sender] > 0, \"No game rewards to claim\");\n uint256 reward = gameRewards[msg.sender];\n gameRewards[msg.sender] = 0;\n _mint(msg.sender, reward);\n emit GameRewardClaimed(msg.sender, reward);\n }\n\n function becomePredictionNode() external onlyOwner {\n predictionNode[msg.sender] = true;\n }\n\n function isPredictionNode(address node) external view returns (bool) {\n return predictionNode[node];\n }\n\n function providePredictionData(uint256 /* data */) external view {\n require(predictionNode[msg.sender], \"Only prediction nodes can provide data\");\n // Additional logic for handling prediction data\n }\n\n function purchaseWithDiscount(uint256 amount) external {\n require(balanceOf(msg.sender) >= amount, \"Insufficient balance\");\n uint256 discountedAmount = (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100;\n _burn(msg.sender, (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100);\n // Additional logic for completing the purchase with discount\n }\n\n function addGameReward(address player) external onlyOwner {\n gameRewards[player] += PREDICTION_REWARD;\n }\n}\n"
},
"@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n mapping(address account => uint256) private _balances;\n\n mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `value`.\n */\n function transfer(address to, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `value`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `value`.\n */\n function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, value);\n _transfer(from, to, value);\n return true;\n }\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _transfer(address from, address to, uint256 value) internal {\n if (from == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n if (to == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(from, to, value);\n }\n\n /**\n * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n * this function.\n *\n * Emits a {Transfer} event.\n */\n function _update(address from, address to, uint256 value) internal virtual {\n if (from == address(0)) {\n // Overflow check required: The rest of the code assumes that totalSupply never overflows\n _totalSupply += value;\n } else {\n uint256 fromBalance = _balances[from];\n if (fromBalance < value) {\n revert ERC20InsufficientBalance(from, fromBalance, value);\n }\n unchecked {\n // Overflow not possible: value <= fromBalance <= totalSupply.\n _balances[from] = fromBalance - value;\n }\n }\n\n if (to == address(0)) {\n unchecked {\n // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n _totalSupply -= value;\n }\n } else {\n unchecked {\n // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n _balances[to] += value;\n }\n }\n\n emit Transfer(from, to, value);\n }\n\n /**\n * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n * Relies on the `_update` mechanism\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _mint(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(address(0), account, value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n * Relies on the `_update` mechanism.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead\n */\n function _burn(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n _update(account, address(0), value);\n }\n\n /**\n * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n *\n * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address owner, address spender, uint256 value) internal {\n _approve(owner, spender, value, true);\n }\n\n /**\n * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n *\n * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n * `Approval` event during `transferFrom` operations.\n *\n * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n * true using the following override:\n * ```\n * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n * super._approve(owner, spender, value, true);\n * }\n * ```\n *\n * Requirements are the same as {_approve}.\n */\n function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n if (owner == address(0)) {\n revert ERC20InvalidApprover(address(0));\n }\n if (spender == address(0)) {\n revert ERC20InvalidSpender(address(0));\n }\n _allowances[owner][spender] = value;\n if (emitEvent) {\n emit Approval(owner, spender, value);\n }\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n *\n * Does not update the allowance value in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Does not emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n if (currentAllowance < value) {\n revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n }\n unchecked {\n _approve(owner, spender, currentAllowance - value, false);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the value of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the value of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 value) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the\n * allowance mechanism. `value` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. 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.",
"errors": {
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the address provided by the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. 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.\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the address provided by the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867\",\"dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 8,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"IERC1155Errors": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC1155InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC1155InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "idsLength",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "valuesLength",
"type": "uint256"
}
],
"name": "ERC1155InvalidArrayLength",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "ERC1155InvalidOperator",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC1155InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC1155InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC1155MissingApprovalForAll",
"type": "error"
}
],
"devdoc": {
"details": "Standard ERC1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.",
"errors": {
"ERC1155InsufficientBalance(address,uint256,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC1155InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC1155InvalidArrayLength(uint256,uint256)": [
{
"details": "Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.",
"params": {
"idsLength": "Length of the array of token identifiers",
"valuesLength": "Length of the array of token amounts"
}
}
],
"ERC1155InvalidOperator(address)": [
{
"details": "Indicates a failure with the `operator` to be approved. Used in approvals.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC1155InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC1155InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC1155MissingApprovalForAll(address,address)": [
{
"details": "Indicates a failure with the `operator`’s approval. Used in transfers.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner.",
"owner": "Address of the current owner of a token."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"IERC20Errors": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
}
],
"devdoc": {
"details": "Standard ERC20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.",
"errors": {
"ERC20InsufficientAllowance(address,uint256,uint256)": [
{
"details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.",
"params": {
"allowance": "Amount of tokens a `spender` is allowed to operate with.",
"needed": "Minimum amount required to perform a transfer.",
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC20InsufficientBalance(address,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC20InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC20InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidSpender(address)": [
{
"details": "Indicates a failure with the `spender` to be approved. Used in approvals.",
"params": {
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"IERC721Errors": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC721IncorrectOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC721InsufficientApproval",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC721InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "ERC721InvalidOperator",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC721InvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC721InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC721InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC721NonexistentToken",
"type": "error"
}
],
"devdoc": {
"details": "Standard ERC721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.",
"errors": {
"ERC721IncorrectOwner(address,uint256,address)": [
{
"details": "Indicates an error related to the ownership over a particular token. Used in transfers.",
"params": {
"owner": "Address of the current owner of a token.",
"sender": "Address whose tokens are being transferred.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC721InsufficientApproval(address,uint256)": [
{
"details": "Indicates a failure with the `operator`’s approval. Used in transfers.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC721InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC721InvalidOperator(address)": [
{
"details": "Indicates a failure with the `operator` to be approved. Used in approvals.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC721InvalidOwner(address)": [
{
"details": "Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. Used in balance queries.",
"params": {
"owner": "Address of the current owner of a token."
}
}
],
"ERC721InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC721InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC721NonexistentToken(uint256)": [
{
"details": "Indicates a `tokenId` whose `owner` is the zero address.",
"params": {
"tokenId": "Identifier number of a token."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification.",
"errors": {
"ERC20InsufficientAllowance(address,uint256,uint256)": [
{
"details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.",
"params": {
"allowance": "Amount of tokens a `spender` is allowed to operate with.",
"needed": "Minimum amount required to perform a transfer.",
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC20InsufficientBalance(address,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC20InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC20InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidSpender(address)": [
{
"details": "Indicates a failure with the `spender` to be approved. Used in approvals.",
"params": {
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
]
},
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xc3e1fa9d1987f8d349dfb4d6fe93bf2ca014b52ba335cfac30bfe71e357e6f80\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5703ccdeb7b1d685e375ed719117e9edf2ab4bc544f24f23b0d50ec82257229\",\"dweb:/ipfs/QmTdwkbQq7owpCiyuzE7eh5LrD2ddrBCZ5WHVsWPi1RrTS\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867\",\"dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 307,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_balances",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_address,t_uint256)"
},
{
"astId": 313,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_allowances",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
},
{
"astId": 315,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_totalSupply",
"offset": 0,
"slot": "2",
"type": "t_uint256"
},
{
"astId": 317,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_name",
"offset": 0,
"slot": "3",
"type": "t_string_storage"
},
{
"astId": 319,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_symbol",
"offset": 0,
"slot": "4",
"type": "t_string_storage"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
},
"t_mapping(t_address,t_mapping(t_address,t_uint256))": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => mapping(address => uint256))",
"numberOfBytes": "32",
"value": "t_mapping(t_address,t_uint256)"
},
"t_mapping(t_address,t_uint256)": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"IERC20": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "Sets a `value` amount of tokens 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."
},
"balanceOf(address)": {
"details": "Returns the value of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the value of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens 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.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"IERC20Metadata": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface for the optional metadata functions from the ERC20 standard.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "Sets a `value` amount of tokens 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."
},
"balanceOf(address)": {
"details": "Returns the value of tokens owned by `account`."
},
"decimals()": {
"details": "Returns the decimals places of the token."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token."
},
"totalSupply()": {
"details": "Returns the value of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens 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.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867\",\"dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/MyToken.sol": {
"GameOracleCoin": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"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": "player",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "reward",
"type": "uint256"
}
],
"name": "GameRewardClaimed",
"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": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [],
"name": "PREDICTION_REWARD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "SHOP_DISCOUNT_PERCENTAGE",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "player",
"type": "address"
}
],
"name": "addGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"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": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "becomePredictionNode",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimGameReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "node",
"type": "address"
}
],
"name": "isPredictionNode",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"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": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "providePredictionData",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "purchaseWithDiscount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"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"
}
],
"devdoc": {
"errors": {
"ERC20InsufficientAllowance(address,uint256,uint256)": [
{
"details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.",
"params": {
"allowance": "Amount of tokens a `spender` is allowed to operate with.",
"needed": "Minimum amount required to perform a transfer.",
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC20InsufficientBalance(address,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC20InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC20InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidSpender(address)": [
{
"details": "Indicates a failure with the `spender` to be approved. Used in approvals.",
"params": {
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/MyToken.sol\":167:1876 contract GameOracleCoin is ERC20, Ownable {... */\n mstore(0x40, 0x80)\n /* \"contracts/MyToken.sol\":565:632 constructor() ERC20(\"GameOracleCoin\", \"GOC\") Ownable(msg.sender) {} */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/MyToken.sol\":618:628 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1896:2009 constructor(string memory name_, string memory symbol_) {... */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x0e\n dup2\n mstore\n 0x20\n add\n 0x47616d654f7261636c65436f696e000000000000000000000000000000000000\n dup2\n mstore\n pop\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x03\n dup2\n mstore\n 0x20\n add\n 0x474f430000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1970:1975 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1962:1967 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1962:1975 _name = name_ */\n swap1\n dup2\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1995:2002 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1985:1992 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1985:2002 _symbol = symbol_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1896:2009 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1297:1298 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1299 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1285 initialOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1299 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1269:1364 if (initialOwner == address(0)) {... */\n tag_10\n jumpi\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1350:1351 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1322:1353 OwnableInvalidOwner(address(0)) */\n mload(0x40)\n 0x1e4fbdf700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_11\n swap2\n swap1\n tag_12\n jump\t// in\ntag_11:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1269:1364 if (initialOwner == address(0)) {... */\ntag_10:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1405 _transferOwnership(initialOwner) */\n tag_13\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1392:1404 initialOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1391 _transferOwnership */\n shl(0x20, tag_14)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1405 _transferOwnership(initialOwner) */\n 0x20\n shr\n jump\t// in\ntag_13:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1225:1412 constructor(address initialOwner) {... */\n pop\n /* \"contracts/MyToken.sol\":167:1876 contract GameOracleCoin is ERC20, Ownable {... */\n jump(tag_16)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\ntag_14:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3001 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3004:3010 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3010 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3029:3037 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3026 _owner */\n 0x05\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3037 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3083:3091 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3073:3081 oldOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2975:3099 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\ntag_18:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:292 */\ntag_19:\n /* \"#utility.yul\":160:237 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":157:158 */\n 0x00\n /* \"#utility.yul\":150:238 */\n mstore\n /* \"#utility.yul\":257:261 */\n 0x41\n /* \"#utility.yul\":254:255 */\n 0x04\n /* \"#utility.yul\":247:262 */\n mstore\n /* \"#utility.yul\":281:285 */\n 0x24\n /* \"#utility.yul\":278:279 */\n 0x00\n /* \"#utility.yul\":271:286 */\n revert\n /* \"#utility.yul\":298:478 */\ntag_20:\n /* \"#utility.yul\":346:423 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":343:344 */\n 0x00\n /* \"#utility.yul\":336:424 */\n mstore\n /* \"#utility.yul\":443:447 */\n 0x22\n /* \"#utility.yul\":440:441 */\n 0x04\n /* \"#utility.yul\":433:448 */\n mstore\n /* \"#utility.yul\":467:471 */\n 0x24\n /* \"#utility.yul\":464:465 */\n 0x00\n /* \"#utility.yul\":457:472 */\n revert\n /* \"#utility.yul\":484:804 */\ntag_21:\n /* \"#utility.yul\":528:534 */\n 0x00\n /* \"#utility.yul\":565:566 */\n 0x02\n /* \"#utility.yul\":559:563 */\n dup3\n /* \"#utility.yul\":555:567 */\n div\n /* \"#utility.yul\":545:567 */\n swap1\n pop\n /* \"#utility.yul\":612:613 */\n 0x01\n /* \"#utility.yul\":606:610 */\n dup3\n /* \"#utility.yul\":602:614 */\n and\n /* \"#utility.yul\":633:651 */\n dup1\n /* \"#utility.yul\":623:704 */\n tag_46\n jumpi\n /* \"#utility.yul\":689:693 */\n 0x7f\n /* \"#utility.yul\":681:687 */\n dup3\n /* \"#utility.yul\":677:694 */\n and\n /* \"#utility.yul\":667:694 */\n swap2\n pop\n /* \"#utility.yul\":623:704 */\ntag_46:\n /* \"#utility.yul\":751:753 */\n 0x20\n /* \"#utility.yul\":743:749 */\n dup3\n /* \"#utility.yul\":740:754 */\n lt\n /* \"#utility.yul\":720:738 */\n dup2\n /* \"#utility.yul\":717:755 */\n sub\n /* \"#utility.yul\":714:798 */\n tag_47\n jumpi\n /* \"#utility.yul\":770:788 */\n tag_48\n tag_20\n jump\t// in\ntag_48:\n /* \"#utility.yul\":714:798 */\ntag_47:\n /* \"#utility.yul\":535:804 */\n pop\n /* \"#utility.yul\":484:804 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":810:951 */\ntag_22:\n /* \"#utility.yul\":859:863 */\n 0x00\n /* \"#utility.yul\":882:885 */\n dup2\n /* \"#utility.yul\":874:885 */\n swap1\n pop\n /* \"#utility.yul\":905:908 */\n dup2\n /* \"#utility.yul\":902:903 */\n 0x00\n /* \"#utility.yul\":895:909 */\n mstore\n /* \"#utility.yul\":939:943 */\n 0x20\n /* \"#utility.yul\":936:937 */\n 0x00\n /* \"#utility.yul\":926:944 */\n keccak256\n /* \"#utility.yul\":918:944 */\n swap1\n pop\n /* \"#utility.yul\":810:951 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":957:1050 */\ntag_23:\n /* \"#utility.yul\":994:1000 */\n 0x00\n /* \"#utility.yul\":1041:1043 */\n 0x20\n /* \"#utility.yul\":1036:1038 */\n 0x1f\n /* \"#utility.yul\":1029:1034 */\n dup4\n /* \"#utility.yul\":1025:1039 */\n add\n /* \"#utility.yul\":1021:1044 */\n div\n /* \"#utility.yul\":1011:1044 */\n swap1\n pop\n /* \"#utility.yul\":957:1050 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1056:1163 */\ntag_24:\n /* \"#utility.yul\":1100:1108 */\n 0x00\n /* \"#utility.yul\":1150:1155 */\n dup3\n /* \"#utility.yul\":1144:1148 */\n dup3\n /* \"#utility.yul\":1140:1156 */\n shl\n /* \"#utility.yul\":1119:1156 */\n swap1\n pop\n /* \"#utility.yul\":1056:1163 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1169:1562 */\ntag_25:\n /* \"#utility.yul\":1238:1244 */\n 0x00\n /* \"#utility.yul\":1288:1289 */\n 0x08\n /* \"#utility.yul\":1276:1286 */\n dup4\n /* \"#utility.yul\":1272:1290 */\n mul\n /* \"#utility.yul\":1311:1408 */\n tag_53\n /* \"#utility.yul\":1341:1407 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1330:1339 */\n dup3\n /* \"#utility.yul\":1311:1408 */\n tag_24\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1429:1468 */\n tag_54\n /* \"#utility.yul\":1459:1467 */\n dup7\n /* \"#utility.yul\":1448:1457 */\n dup4\n /* \"#utility.yul\":1429:1468 */\n tag_24\n jump\t// in\ntag_54:\n /* \"#utility.yul\":1417:1468 */\n swap6\n pop\n /* \"#utility.yul\":1501:1505 */\n dup1\n /* \"#utility.yul\":1497:1506 */\n not\n /* \"#utility.yul\":1490:1495 */\n dup5\n /* \"#utility.yul\":1486:1507 */\n and\n /* \"#utility.yul\":1477:1507 */\n swap4\n pop\n /* \"#utility.yul\":1550:1554 */\n dup1\n /* \"#utility.yul\":1540:1548 */\n dup7\n /* \"#utility.yul\":1536:1555 */\n and\n /* \"#utility.yul\":1529:1534 */\n dup5\n /* \"#utility.yul\":1526:1556 */\n or\n /* \"#utility.yul\":1516:1556 */\n swap3\n pop\n /* \"#utility.yul\":1245:1562 */\n pop\n pop\n /* \"#utility.yul\":1169:1562 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1568:1645 */\ntag_26:\n /* \"#utility.yul\":1605:1612 */\n 0x00\n /* \"#utility.yul\":1634:1639 */\n dup2\n /* \"#utility.yul\":1623:1639 */\n swap1\n pop\n /* \"#utility.yul\":1568:1645 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1651:1711 */\ntag_27:\n /* \"#utility.yul\":1679:1682 */\n 0x00\n /* \"#utility.yul\":1700:1705 */\n dup2\n /* \"#utility.yul\":1693:1705 */\n swap1\n pop\n /* \"#utility.yul\":1651:1711 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1717:1859 */\ntag_28:\n /* \"#utility.yul\":1767:1776 */\n 0x00\n /* \"#utility.yul\":1800:1853 */\n tag_58\n /* \"#utility.yul\":1818:1852 */\n tag_59\n /* \"#utility.yul\":1827:1851 */\n tag_60\n /* \"#utility.yul\":1845:1850 */\n dup5\n /* \"#utility.yul\":1827:1851 */\n tag_26\n jump\t// in\ntag_60:\n /* \"#utility.yul\":1818:1852 */\n tag_27\n jump\t// in\ntag_59:\n /* \"#utility.yul\":1800:1853 */\n tag_26\n jump\t// in\ntag_58:\n /* \"#utility.yul\":1787:1853 */\n swap1\n pop\n /* \"#utility.yul\":1717:1859 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1865:1940 */\ntag_29:\n /* \"#utility.yul\":1908:1911 */\n 0x00\n /* \"#utility.yul\":1929:1934 */\n dup2\n /* \"#utility.yul\":1922:1934 */\n swap1\n pop\n /* \"#utility.yul\":1865:1940 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1946:2215 */\ntag_30:\n /* \"#utility.yul\":2056:2095 */\n tag_63\n /* \"#utility.yul\":2087:2094 */\n dup4\n /* \"#utility.yul\":2056:2095 */\n tag_28\n jump\t// in\ntag_63:\n /* \"#utility.yul\":2117:2208 */\n tag_64\n /* \"#utility.yul\":2166:2207 */\n tag_65\n /* \"#utility.yul\":2190:2206 */\n dup3\n /* \"#utility.yul\":2166:2207 */\n tag_29\n jump\t// in\ntag_65:\n /* \"#utility.yul\":2158:2164 */\n dup5\n /* \"#utility.yul\":2151:2155 */\n dup5\n /* \"#utility.yul\":2145:2156 */\n sload\n /* \"#utility.yul\":2117:2208 */\n tag_25\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2111:2115 */\n dup3\n /* \"#utility.yul\":2104:2209 */\n sstore\n /* \"#utility.yul\":2022:2215 */\n pop\n /* \"#utility.yul\":1946:2215 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2221:2294 */\ntag_31:\n /* \"#utility.yul\":2266:2269 */\n 0x00\n /* \"#utility.yul\":2221:2294 */\n swap1\n jump\t// out\n /* \"#utility.yul\":2300:2489 */\ntag_32:\n /* \"#utility.yul\":2377:2409 */\n tag_68\n tag_31\n jump\t// in\ntag_68:\n /* \"#utility.yul\":2418:2483 */\n tag_69\n /* \"#utility.yul\":2476:2482 */\n dup2\n /* \"#utility.yul\":2468:2474 */\n dup5\n /* \"#utility.yul\":2462:2466 */\n dup5\n /* \"#utility.yul\":2418:2483 */\n tag_30\n jump\t// in\ntag_69:\n /* \"#utility.yul\":2353:2489 */\n pop\n /* \"#utility.yul\":2300:2489 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2495:2681 */\ntag_33:\n /* \"#utility.yul\":2555:2675 */\ntag_71:\n /* \"#utility.yul\":2572:2575 */\n dup2\n /* \"#utility.yul\":2565:2570 */\n dup2\n /* \"#utility.yul\":2562:2576 */\n lt\n /* \"#utility.yul\":2555:2675 */\n iszero\n tag_73\n jumpi\n /* \"#utility.yul\":2626:2665 */\n tag_74\n /* \"#utility.yul\":2663:2664 */\n 0x00\n /* \"#utility.yul\":2656:2661 */\n dup3\n /* \"#utility.yul\":2626:2665 */\n tag_32\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2599:2600 */\n 0x01\n /* \"#utility.yul\":2592:2597 */\n dup2\n /* \"#utility.yul\":2588:2601 */\n add\n /* \"#utility.yul\":2579:2601 */\n swap1\n pop\n /* \"#utility.yul\":2555:2675 */\n jump(tag_71)\ntag_73:\n /* \"#utility.yul\":2495:2681 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2687:3230 */\ntag_34:\n /* \"#utility.yul\":2788:2790 */\n 0x1f\n /* \"#utility.yul\":2783:2786 */\n dup3\n /* \"#utility.yul\":2780:2791 */\n gt\n /* \"#utility.yul\":2777:3223 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":2822:2860 */\n tag_77\n /* \"#utility.yul\":2854:2859 */\n dup2\n /* \"#utility.yul\":2822:2860 */\n tag_22\n jump\t// in\ntag_77:\n /* \"#utility.yul\":2906:2935 */\n tag_78\n /* \"#utility.yul\":2924:2934 */\n dup5\n /* \"#utility.yul\":2906:2935 */\n tag_23\n jump\t// in\ntag_78:\n /* \"#utility.yul\":2896:2904 */\n dup2\n /* \"#utility.yul\":2892:2936 */\n add\n /* \"#utility.yul\":3089:3091 */\n 0x20\n /* \"#utility.yul\":3077:3087 */\n dup6\n /* \"#utility.yul\":3074:3092 */\n lt\n /* \"#utility.yul\":3071:3120 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":3110:3118 */\n dup2\n /* \"#utility.yul\":3095:3118 */\n swap1\n pop\n /* \"#utility.yul\":3071:3120 */\ntag_79:\n /* \"#utility.yul\":3133:3213 */\n tag_80\n /* \"#utility.yul\":3189:3211 */\n tag_81\n /* \"#utility.yul\":3207:3210 */\n dup6\n /* \"#utility.yul\":3189:3211 */\n tag_23\n jump\t// in\ntag_81:\n /* \"#utility.yul\":3179:3187 */\n dup4\n /* \"#utility.yul\":3175:3212 */\n add\n /* \"#utility.yul\":3162:3173 */\n dup3\n /* \"#utility.yul\":3133:3213 */\n tag_33\n jump\t// in\ntag_80:\n /* \"#utility.yul\":2792:3223 */\n pop\n pop\n /* \"#utility.yul\":2777:3223 */\ntag_76:\n /* \"#utility.yul\":2687:3230 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3236:3353 */\ntag_35:\n /* \"#utility.yul\":3290:3298 */\n 0x00\n /* \"#utility.yul\":3340:3345 */\n dup3\n /* \"#utility.yul\":3334:3338 */\n dup3\n /* \"#utility.yul\":3330:3346 */\n shr\n /* \"#utility.yul\":3309:3346 */\n swap1\n pop\n /* \"#utility.yul\":3236:3353 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3359:3528 */\ntag_36:\n /* \"#utility.yul\":3403:3409 */\n 0x00\n /* \"#utility.yul\":3436:3487 */\n tag_84\n /* \"#utility.yul\":3484:3485 */\n 0x00\n /* \"#utility.yul\":3480:3486 */\n not\n /* \"#utility.yul\":3472:3477 */\n dup5\n /* \"#utility.yul\":3469:3470 */\n 0x08\n /* \"#utility.yul\":3465:3478 */\n mul\n /* \"#utility.yul\":3436:3487 */\n tag_35\n jump\t// in\ntag_84:\n /* \"#utility.yul\":3432:3488 */\n not\n /* \"#utility.yul\":3517:3521 */\n dup1\n /* \"#utility.yul\":3511:3515 */\n dup4\n /* \"#utility.yul\":3507:3522 */\n and\n /* \"#utility.yul\":3497:3522 */\n swap2\n pop\n /* \"#utility.yul\":3410:3528 */\n pop\n /* \"#utility.yul\":3359:3528 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3533:3828 */\ntag_37:\n /* \"#utility.yul\":3609:3613 */\n 0x00\n /* \"#utility.yul\":3755:3784 */\n tag_86\n /* \"#utility.yul\":3780:3783 */\n dup4\n /* \"#utility.yul\":3774:3778 */\n dup4\n /* \"#utility.yul\":3755:3784 */\n tag_36\n jump\t// in\ntag_86:\n /* \"#utility.yul\":3747:3784 */\n swap2\n pop\n /* \"#utility.yul\":3817:3820 */\n dup3\n /* \"#utility.yul\":3814:3815 */\n 0x02\n /* \"#utility.yul\":3810:3821 */\n mul\n /* \"#utility.yul\":3804:3808 */\n dup3\n /* \"#utility.yul\":3801:3822 */\n or\n /* \"#utility.yul\":3793:3822 */\n swap1\n pop\n /* \"#utility.yul\":3533:3828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3833:5228 */\ntag_7:\n /* \"#utility.yul\":3950:3987 */\n tag_88\n /* \"#utility.yul\":3983:3986 */\n dup3\n /* \"#utility.yul\":3950:3987 */\n tag_18\n jump\t// in\ntag_88:\n /* \"#utility.yul\":4052:4070 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4044:4050 */\n dup2\n /* \"#utility.yul\":4041:4071 */\n gt\n /* \"#utility.yul\":4038:4094 */\n iszero\n tag_89\n jumpi\n /* \"#utility.yul\":4074:4092 */\n tag_90\n tag_19\n jump\t// in\ntag_90:\n /* \"#utility.yul\":4038:4094 */\ntag_89:\n /* \"#utility.yul\":4118:4156 */\n tag_91\n /* \"#utility.yul\":4150:4154 */\n dup3\n /* \"#utility.yul\":4144:4155 */\n sload\n /* \"#utility.yul\":4118:4156 */\n tag_21\n jump\t// in\ntag_91:\n /* \"#utility.yul\":4203:4270 */\n tag_92\n /* \"#utility.yul\":4263:4269 */\n dup3\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4249:4253 */\n dup6\n /* \"#utility.yul\":4203:4270 */\n tag_34\n jump\t// in\ntag_92:\n /* \"#utility.yul\":4297:4298 */\n 0x00\n /* \"#utility.yul\":4321:4325 */\n 0x20\n /* \"#utility.yul\":4308:4325 */\n swap1\n pop\n /* \"#utility.yul\":4353:4355 */\n 0x1f\n /* \"#utility.yul\":4345:4351 */\n dup4\n /* \"#utility.yul\":4342:4356 */\n gt\n /* \"#utility.yul\":4370:4371 */\n 0x01\n /* \"#utility.yul\":4365:4983 */\n dup2\n eq\n tag_94\n jumpi\n /* \"#utility.yul\":5027:5028 */\n 0x00\n /* \"#utility.yul\":5044:5050 */\n dup5\n /* \"#utility.yul\":5041:5118 */\n iszero\n tag_95\n jumpi\n /* \"#utility.yul\":5093:5102 */\n dup3\n /* \"#utility.yul\":5088:5091 */\n dup8\n /* \"#utility.yul\":5084:5103 */\n add\n /* \"#utility.yul\":5078:5104 */\n mload\n /* \"#utility.yul\":5069:5104 */\n swap1\n pop\n /* \"#utility.yul\":5041:5118 */\ntag_95:\n /* \"#utility.yul\":5144:5211 */\n tag_96\n /* \"#utility.yul\":5204:5210 */\n dup6\n /* \"#utility.yul\":5197:5202 */\n dup3\n /* \"#utility.yul\":5144:5211 */\n tag_37\n jump\t// in\ntag_96:\n /* \"#utility.yul\":5138:5142 */\n dup7\n /* \"#utility.yul\":5131:5212 */\n sstore\n /* \"#utility.yul\":5000:5222 */\n pop\n /* \"#utility.yul\":4335:5222 */\n jump(tag_93)\n /* \"#utility.yul\":4365:4983 */\ntag_94:\n /* \"#utility.yul\":4417:4421 */\n 0x1f\n /* \"#utility.yul\":4413:4422 */\n not\n /* \"#utility.yul\":4405:4411 */\n dup5\n /* \"#utility.yul\":4401:4423 */\n and\n /* \"#utility.yul\":4451:4488 */\n tag_97\n /* \"#utility.yul\":4483:4487 */\n dup7\n /* \"#utility.yul\":4451:4488 */\n tag_22\n jump\t// in\ntag_97:\n /* \"#utility.yul\":4510:4511 */\n 0x00\n /* \"#utility.yul\":4524:4732 */\ntag_98:\n /* \"#utility.yul\":4538:4545 */\n dup3\n /* \"#utility.yul\":4535:4536 */\n dup2\n /* \"#utility.yul\":4532:4546 */\n lt\n /* \"#utility.yul\":4524:4732 */\n iszero\n tag_100\n jumpi\n /* \"#utility.yul\":4617:4626 */\n dup5\n /* \"#utility.yul\":4612:4615 */\n dup10\n /* \"#utility.yul\":4608:4627 */\n add\n /* \"#utility.yul\":4602:4628 */\n mload\n /* \"#utility.yul\":4594:4600 */\n dup3\n /* \"#utility.yul\":4587:4629 */\n sstore\n /* \"#utility.yul\":4668:4669 */\n 0x01\n /* \"#utility.yul\":4660:4666 */\n dup3\n /* \"#utility.yul\":4656:4670 */\n add\n /* \"#utility.yul\":4646:4670 */\n swap2\n pop\n /* \"#utility.yul\":4715:4717 */\n 0x20\n /* \"#utility.yul\":4704:4713 */\n dup6\n /* \"#utility.yul\":4700:4718 */\n add\n /* \"#utility.yul\":4687:4718 */\n swap5\n pop\n /* \"#utility.yul\":4561:4565 */\n 0x20\n /* \"#utility.yul\":4558:4559 */\n dup2\n /* \"#utility.yul\":4554:4566 */\n add\n /* \"#utility.yul\":4549:4566 */\n swap1\n pop\n /* \"#utility.yul\":4524:4732 */\n jump(tag_98)\ntag_100:\n /* \"#utility.yul\":4760:4766 */\n dup7\n /* \"#utility.yul\":4751:4758 */\n dup4\n /* \"#utility.yul\":4748:4767 */\n lt\n /* \"#utility.yul\":4745:4924 */\n iszero\n tag_101\n jumpi\n /* \"#utility.yul\":4818:4827 */\n dup5\n /* \"#utility.yul\":4813:4816 */\n dup10\n /* \"#utility.yul\":4809:4828 */\n add\n /* \"#utility.yul\":4803:4829 */\n mload\n /* \"#utility.yul\":4861:4909 */\n tag_102\n /* \"#utility.yul\":4903:4907 */\n 0x1f\n /* \"#utility.yul\":4895:4901 */\n dup10\n /* \"#utility.yul\":4891:4908 */\n and\n /* \"#utility.yul\":4880:4889 */\n dup3\n /* \"#utility.yul\":4861:4909 */\n tag_36\n jump\t// in\ntag_102:\n /* \"#utility.yul\":4853:4859 */\n dup4\n /* \"#utility.yul\":4846:4910 */\n sstore\n /* \"#utility.yul\":4768:4924 */\n pop\n /* \"#utility.yul\":4745:4924 */\ntag_101:\n /* \"#utility.yul\":4970:4971 */\n 0x01\n /* \"#utility.yul\":4966:4967 */\n 0x02\n /* \"#utility.yul\":4958:4964 */\n dup9\n /* \"#utility.yul\":4954:4968 */\n mul\n /* \"#utility.yul\":4950:4972 */\n add\n /* \"#utility.yul\":4944:4948 */\n dup9\n /* \"#utility.yul\":4937:4973 */\n sstore\n /* \"#utility.yul\":4372:4983 */\n pop\n pop\n pop\n /* \"#utility.yul\":4335:5222 */\ntag_93:\n pop\n /* \"#utility.yul\":3925:5228 */\n pop\n pop\n pop\n /* \"#utility.yul\":3833:5228 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5234:5360 */\ntag_38:\n /* \"#utility.yul\":5271:5278 */\n 0x00\n /* \"#utility.yul\":5311:5353 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5304:5309 */\n dup3\n /* \"#utility.yul\":5300:5354 */\n and\n /* \"#utility.yul\":5289:5354 */\n swap1\n pop\n /* \"#utility.yul\":5234:5360 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5366:5462 */\ntag_39:\n /* \"#utility.yul\":5403:5410 */\n 0x00\n /* \"#utility.yul\":5432:5456 */\n tag_105\n /* \"#utility.yul\":5450:5455 */\n dup3\n /* \"#utility.yul\":5432:5456 */\n tag_38\n jump\t// in\ntag_105:\n /* \"#utility.yul\":5421:5456 */\n swap1\n pop\n /* \"#utility.yul\":5366:5462 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5468:5586 */\ntag_40:\n /* \"#utility.yul\":5555:5579 */\n tag_107\n /* \"#utility.yul\":5573:5578 */\n dup2\n /* \"#utility.yul\":5555:5579 */\n tag_39\n jump\t// in\ntag_107:\n /* \"#utility.yul\":5550:5553 */\n dup3\n /* \"#utility.yul\":5543:5580 */\n mstore\n /* \"#utility.yul\":5468:5586 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5592:5814 */\ntag_12:\n /* \"#utility.yul\":5685:5689 */\n 0x00\n /* \"#utility.yul\":5723:5725 */\n 0x20\n /* \"#utility.yul\":5712:5721 */\n dup3\n /* \"#utility.yul\":5708:5726 */\n add\n /* \"#utility.yul\":5700:5726 */\n swap1\n pop\n /* \"#utility.yul\":5736:5807 */\n tag_109\n /* \"#utility.yul\":5804:5805 */\n 0x00\n /* \"#utility.yul\":5793:5802 */\n dup4\n /* \"#utility.yul\":5789:5806 */\n add\n /* \"#utility.yul\":5780:5786 */\n dup5\n /* \"#utility.yul\":5736:5807 */\n tag_40\n jump\t// in\ntag_109:\n /* \"#utility.yul\":5592:5814 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/MyToken.sol\":167:1876 contract GameOracleCoin is ERC20, Ownable {... */\ntag_16:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/MyToken.sol\":167:1876 contract GameOracleCoin is ERC20, Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x8da5cb5b\n gt\n tag_23\n jumpi\n dup1\n 0xdd62ed3e\n gt\n tag_24\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_18\n jumpi\n dup1\n 0xe2c07263\n eq\n tag_19\n jumpi\n dup1\n 0xe621ecec\n eq\n tag_20\n jumpi\n dup1\n 0xeca272bb\n eq\n tag_21\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_22\n jumpi\n jump(tag_2)\n tag_24:\n dup1\n 0x8da5cb5b\n eq\n tag_13\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_14\n jumpi\n dup1\n 0xa451910c\n eq\n tag_15\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_16\n jumpi\n dup1\n 0xc3e55ba7\n eq\n tag_17\n jumpi\n jump(tag_2)\n tag_23:\n dup1\n 0x50297416\n gt\n tag_25\n jumpi\n dup1\n 0x50297416\n eq\n tag_8\n jumpi\n dup1\n 0x697c9959\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x715018a6\n eq\n tag_11\n jumpi\n dup1\n 0x805dd212\n eq\n tag_12\n jumpi\n jump(tag_2)\n tag_25:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2074:2163 function name() public view virtual returns (string memory) {... */\n tag_3:\n tag_26\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n tag_28\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4293:4479 function approve(address spender, uint256 value) public virtual returns (bool) {... */\n tag_4:\n tag_30\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n tag_33\n jump\t// in\n tag_30:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3144:3241 function totalSupply() public view virtual returns (uint256) {... */\n tag_5:\n tag_36\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n tag_38\n swap2\n swap1\n tag_39\n jump\t// in\n tag_38:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5039:5283 function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {... */\n tag_6:\n tag_40\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_41\n swap2\n swap1\n tag_42\n jump\t// in\n tag_41:\n tag_43\n jump\t// in\n tag_40:\n mload(0x40)\n tag_44\n swap2\n swap1\n tag_35\n jump\t// in\n tag_44:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3002:3084 function decimals() public view virtual returns (uint8) {... */\n tag_7:\n tag_45\n tag_46\n jump\t// in\n tag_45:\n mload(0x40)\n tag_47\n swap2\n swap1\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyToken.sol\":407:460 uint256 public constant SHOP_DISCOUNT_PERCENTAGE = 10 */\n tag_8:\n tag_49\n tag_50\n jump\t// in\n tag_49:\n mload(0x40)\n tag_51\n swap2\n swap1\n tag_39\n jump\t// in\n tag_51:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyToken.sol\":1042:1155 function isPredictionNode(address node) external view returns (bool) {... */\n tag_9:\n tag_52\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n tag_55\n jump\t// in\n tag_52:\n mload(0x40)\n tag_56\n swap2\n swap1\n tag_35\n jump\t// in\n tag_56:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3299:3415 function balanceOf(address account) public view virtual returns (uint256) {... */\n tag_10:\n tag_57\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_58\n swap2\n swap1\n tag_54\n jump\t// in\n tag_58:\n tag_59\n jump\t// in\n tag_57:\n mload(0x40)\n tag_60\n swap2\n swap1\n tag_39\n jump\t// in\n tag_60:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2293:2394 function renounceOwnership() public virtual onlyOwner {... */\n tag_11:\n tag_61\n tag_62\n jump\t// in\n tag_61:\n stop\n /* \"contracts/MyToken.sol\":638:929 function claimGameReward() external {... */\n tag_12:\n tag_63\n tag_64\n jump\t// in\n tag_63:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1638:1723 function owner() public view virtual returns (address) {... */\n tag_13:\n tag_65\n tag_66\n jump\t// in\n tag_65:\n mload(0x40)\n tag_67\n swap2\n swap1\n tag_68\n jump\t// in\n tag_67:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2276:2369 function symbol() public view virtual returns (string memory) {... */\n tag_14:\n tag_69\n tag_70\n jump\t// in\n tag_69:\n mload(0x40)\n tag_71\n swap2\n swap1\n tag_29\n jump\t// in\n tag_71:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyToken.sol\":1161:1377 function providePredictionData(uint256 /* data */) external view {... */\n tag_15:\n tag_72\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_73\n swap2\n swap1\n tag_74\n jump\t// in\n tag_73:\n tag_75\n jump\t// in\n tag_72:\n stop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3610:3788 function transfer(address to, uint256 value) public virtual returns (bool) {... */\n tag_16:\n tag_76\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_77\n swap2\n swap1\n tag_32\n jump\t// in\n tag_77:\n tag_78\n jump\t// in\n tag_76:\n mload(0x40)\n tag_79\n swap2\n swap1\n tag_35\n jump\t// in\n tag_79:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyToken.sol\":322:370 uint256 public constant PREDICTION_REWARD = 1000 */\n tag_17:\n tag_80\n tag_81\n jump\t// in\n tag_80:\n mload(0x40)\n tag_82\n swap2\n swap1\n tag_39\n jump\t// in\n tag_82:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3846:3986 function allowance(address owner, address spender) public view virtual returns (uint256) {... */\n tag_18:\n tag_83\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_84\n swap2\n swap1\n tag_85\n jump\t// in\n tag_84:\n tag_86\n jump\t// in\n tag_83:\n mload(0x40)\n tag_87\n swap2\n swap1\n tag_39\n jump\t// in\n tag_87:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyToken.sol\":1759:1874 function addGameReward(address player) external onlyOwner {... */\n tag_19:\n tag_88\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_89\n swap2\n swap1\n tag_54\n jump\t// in\n tag_89:\n tag_90\n jump\t// in\n tag_88:\n stop\n /* \"contracts/MyToken.sol\":1383:1753 function purchaseWithDiscount(uint256 amount) external {... */\n tag_20:\n tag_91\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_92\n swap2\n swap1\n tag_74\n jump\t// in\n tag_92:\n tag_93\n jump\t// in\n tag_91:\n stop\n /* \"contracts/MyToken.sol\":935:1036 function becomePredictionNode() external onlyOwner {... */\n tag_21:\n tag_94\n tag_95\n jump\t// in\n tag_94:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2543:2758 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_22:\n tag_96\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_97\n swap2\n swap1\n tag_54\n jump\t// in\n tag_97:\n tag_98\n jump\t// in\n tag_96:\n stop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2074:2163 function name() public view virtual returns (string memory) {... */\n tag_27:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2119:2132 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2151:2156 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2144:2156 return _name */\n dup1\n sload\n tag_100\n swap1\n tag_101\n jump\t// in\n tag_100:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_102\n swap1\n tag_101\n jump\t// in\n tag_102:\n dup1\n iszero\n tag_103\n jumpi\n dup1\n 0x1f\n lt\n tag_104\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_103)\n tag_104:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_105:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_105\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_103:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2074:2163 function name() public view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4293:4479 function approve(address spender, uint256 value) public virtual returns (bool) {... */\n tag_33:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4366:4370 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4382:4395 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4398:4410 _msgSender() */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4398:4408 _msgSender */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4398:4410 _msgSender() */\n jump\t// in\n tag_107:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4382:4410 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4420:4451 _approve(owner, spender, value) */\n tag_109\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4429:4434 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4436:4443 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4445:4450 value */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4420:4428 _approve */\n tag_110\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4420:4451 _approve(owner, spender, value) */\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4468:4472 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4461:4472 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4293:4479 function approve(address spender, uint256 value) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3144:3241 function totalSupply() public view virtual returns (uint256) {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3196:3203 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3222:3234 _totalSupply */\n sload(0x02)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3215:3234 return _totalSupply */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3144:3241 function totalSupply() public view virtual returns (uint256) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5039:5283 function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {... */\n tag_43:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5126:5130 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5142:5157 address spender */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5160:5172 _msgSender() */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5160:5170 _msgSender */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5160:5172 _msgSender() */\n jump\t// in\n tag_113:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5142:5172 address spender = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5182:5219 _spendAllowance(from, spender, value) */\n tag_114\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5198:5202 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5204:5211 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5213:5218 value */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5182:5197 _spendAllowance */\n tag_115\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5182:5219 _spendAllowance(from, spender, value) */\n jump\t// in\n tag_114:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5229:5255 _transfer(from, to, value) */\n tag_116\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5239:5243 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5245:5247 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5249:5254 value */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5229:5238 _transfer */\n tag_117\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5229:5255 _transfer(from, to, value) */\n jump\t// in\n tag_116:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5272:5276 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5265:5276 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5039:5283 function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3002:3084 function decimals() public view virtual returns (uint8) {... */\n tag_46:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3051:3056 uint8 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3075:3077 18 */\n 0x12\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3068:3077 return 18 */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3002:3084 function decimals() public view virtual returns (uint8) {... */\n swap1\n jump\t// out\n /* \"contracts/MyToken.sol\":407:460 uint256 public constant SHOP_DISCOUNT_PERCENTAGE = 10 */\n tag_50:\n /* \"contracts/MyToken.sol\":458:460 10 */\n 0x0a\n /* \"contracts/MyToken.sol\":407:460 uint256 public constant SHOP_DISCOUNT_PERCENTAGE = 10 */\n dup2\n jump\t// out\n /* \"contracts/MyToken.sol\":1042:1155 function isPredictionNode(address node) external view returns (bool) {... */\n tag_55:\n /* \"contracts/MyToken.sol\":1105:1109 bool */\n 0x00\n /* \"contracts/MyToken.sol\":1128:1142 predictionNode */\n 0x07\n /* \"contracts/MyToken.sol\":1128:1148 predictionNode[node] */\n 0x00\n /* \"contracts/MyToken.sol\":1143:1147 node */\n dup4\n /* \"contracts/MyToken.sol\":1128:1148 predictionNode[node] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/MyToken.sol\":1121:1148 return predictionNode[node] */\n swap1\n pop\n /* \"contracts/MyToken.sol\":1042:1155 function isPredictionNode(address node) external view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3299:3415 function balanceOf(address account) public view virtual returns (uint256) {... */\n tag_59:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3364:3371 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3390:3399 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3390:3408 _balances[account] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3400:3407 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3390:3408 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3383:3408 return _balances[account] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3299:3415 function balanceOf(address account) public view virtual returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2293:2394 function renounceOwnership() public virtual onlyOwner {... */\n tag_62:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n tag_122\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1542 _checkOwner */\n tag_123\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n jump\t// in\n tag_122:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2357:2387 _transferOwnership(address(0)) */\n tag_125\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2384:2385 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2357:2375 _transferOwnership */\n tag_126\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2357:2387 _transferOwnership(address(0)) */\n jump\t// in\n tag_125:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2293:2394 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"contracts/MyToken.sol\":638:929 function claimGameReward() external {... */\n tag_64:\n /* \"contracts/MyToken.sol\":718:719 0 */\n 0x00\n /* \"contracts/MyToken.sol\":692:703 gameRewards */\n 0x06\n /* \"contracts/MyToken.sol\":692:715 gameRewards[msg.sender] */\n 0x00\n /* \"contracts/MyToken.sol\":704:714 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":692:715 gameRewards[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"contracts/MyToken.sol\":692:719 gameRewards[msg.sender] > 0 */\n gt\n /* \"contracts/MyToken.sol\":684:748 require(gameRewards[msg.sender] > 0, \"No game rewards to claim\") */\n tag_128\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_129\n swap1\n tag_130\n jump\t// in\n tag_129:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_128:\n /* \"contracts/MyToken.sol\":758:772 uint256 reward */\n 0x00\n /* \"contracts/MyToken.sol\":775:786 gameRewards */\n 0x06\n /* \"contracts/MyToken.sol\":775:798 gameRewards[msg.sender] */\n 0x00\n /* \"contracts/MyToken.sol\":787:797 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":775:798 gameRewards[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"contracts/MyToken.sol\":758:798 uint256 reward = gameRewards[msg.sender] */\n swap1\n pop\n /* \"contracts/MyToken.sol\":834:835 0 */\n 0x00\n /* \"contracts/MyToken.sol\":808:819 gameRewards */\n 0x06\n /* \"contracts/MyToken.sol\":808:831 gameRewards[msg.sender] */\n 0x00\n /* \"contracts/MyToken.sol\":820:830 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":808:831 gameRewards[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/MyToken.sol\":808:835 gameRewards[msg.sender] = 0 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/MyToken.sol\":845:870 _mint(msg.sender, reward) */\n tag_131\n /* \"contracts/MyToken.sol\":851:861 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":863:869 reward */\n dup3\n /* \"contracts/MyToken.sol\":845:850 _mint */\n tag_132\n /* \"contracts/MyToken.sol\":845:870 _mint(msg.sender, reward) */\n jump\t// in\n tag_131:\n /* \"contracts/MyToken.sol\":903:913 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":885:922 GameRewardClaimed(msg.sender, reward) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8ca22a21a0ae28f0bdef2150ae70b453d899dac6c11446823295ff67e7efa011\n /* \"contracts/MyToken.sol\":915:921 reward */\n dup3\n /* \"contracts/MyToken.sol\":885:922 GameRewardClaimed(msg.sender, reward) */\n mload(0x40)\n tag_133\n swap2\n swap1\n tag_39\n jump\t// in\n tag_133:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log2\n /* \"contracts/MyToken.sol\":674:929 {... */\n pop\n /* \"contracts/MyToken.sol\":638:929 function claimGameReward() external {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1638:1723 function owner() public view virtual returns (address) {... */\n tag_66:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1684:1691 address */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1710:1716 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1703:1716 return _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1638:1723 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2276:2369 function symbol() public view virtual returns (string memory) {... */\n tag_70:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2323:2336 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2355:2362 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2348:2362 return _symbol */\n dup1\n sload\n tag_136\n swap1\n tag_101\n jump\t// in\n tag_136:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_137\n swap1\n tag_101\n jump\t// in\n tag_137:\n dup1\n iszero\n tag_138\n jumpi\n dup1\n 0x1f\n lt\n tag_139\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_138)\n tag_139:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_140:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_140\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_138:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2276:2369 function symbol() public view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"contracts/MyToken.sol\":1161:1377 function providePredictionData(uint256 /* data */) external view {... */\n tag_75:\n /* \"contracts/MyToken.sol\":1244:1258 predictionNode */\n 0x07\n /* \"contracts/MyToken.sol\":1244:1270 predictionNode[msg.sender] */\n 0x00\n /* \"contracts/MyToken.sol\":1259:1269 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":1244:1270 predictionNode[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/MyToken.sol\":1236:1313 require(predictionNode[msg.sender], \"Only prediction nodes can provide data\") */\n tag_142\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_143\n swap1\n tag_144\n jump\t// in\n tag_143:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_142:\n /* \"contracts/MyToken.sol\":1161:1377 function providePredictionData(uint256 /* data */) external view {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3610:3788 function transfer(address to, uint256 value) public virtual returns (bool) {... */\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3679:3683 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3695:3708 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3711:3723 _msgSender() */\n tag_146\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3711:3721 _msgSender */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3711:3723 _msgSender() */\n jump\t// in\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3695:3723 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3733:3760 _transfer(owner, to, value) */\n tag_147\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3743:3748 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3750:3752 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3754:3759 value */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3733:3742 _transfer */\n tag_117\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3733:3760 _transfer(owner, to, value) */\n jump\t// in\n tag_147:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3777:3781 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3770:3781 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3610:3788 function transfer(address to, uint256 value) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/MyToken.sol\":322:370 uint256 public constant PREDICTION_REWARD = 1000 */\n tag_81:\n /* \"contracts/MyToken.sol\":366:370 1000 */\n 0x03e8\n /* \"contracts/MyToken.sol\":322:370 uint256 public constant PREDICTION_REWARD = 1000 */\n dup2\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3846:3986 function allowance(address owner, address spender) public view virtual returns (uint256) {... */\n tag_86:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3926:3933 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3952:3963 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3952:3970 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3964:3969 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3952:3970 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3952:3979 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3971:3978 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3952:3979 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3945:3979 return _allowances[owner][spender] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3846:3986 function allowance(address owner, address spender) public view virtual returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/MyToken.sol\":1759:1874 function addGameReward(address player) external onlyOwner {... */\n tag_90:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n tag_150\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1542 _checkOwner */\n tag_123\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n jump\t// in\n tag_150:\n /* \"contracts/MyToken.sol\":366:370 1000 */\n 0x03e8\n /* \"contracts/MyToken.sol\":1827:1838 gameRewards */\n 0x06\n /* \"contracts/MyToken.sol\":1827:1846 gameRewards[player] */\n 0x00\n /* \"contracts/MyToken.sol\":1839:1845 player */\n dup4\n /* \"contracts/MyToken.sol\":1827:1846 gameRewards[player] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/MyToken.sol\":1827:1867 gameRewards[player] += PREDICTION_REWARD */\n dup3\n dup3\n sload\n tag_152\n swap2\n swap1\n tag_153\n jump\t// in\n tag_152:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/MyToken.sol\":1759:1874 function addGameReward(address player) external onlyOwner {... */\n pop\n jump\t// out\n /* \"contracts/MyToken.sol\":1383:1753 function purchaseWithDiscount(uint256 amount) external {... */\n tag_93:\n /* \"contracts/MyToken.sol\":1481:1487 amount */\n dup1\n /* \"contracts/MyToken.sol\":1456:1477 balanceOf(msg.sender) */\n tag_155\n /* \"contracts/MyToken.sol\":1466:1476 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":1456:1465 balanceOf */\n tag_59\n /* \"contracts/MyToken.sol\":1456:1477 balanceOf(msg.sender) */\n jump\t// in\n tag_155:\n /* \"contracts/MyToken.sol\":1456:1487 balanceOf(msg.sender) >= amount */\n lt\n iszero\n /* \"contracts/MyToken.sol\":1448:1512 require(balanceOf(msg.sender) >= amount, \"Insufficient balance\") */\n tag_156\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_157\n swap1\n tag_158\n jump\t// in\n tag_157:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_156:\n /* \"contracts/MyToken.sol\":1522:1546 uint256 discountedAmount */\n 0x00\n /* \"contracts/MyToken.sol\":1595:1598 100 */\n 0x64\n /* \"contracts/MyToken.sol\":458:460 10 */\n 0x0a\n /* \"contracts/MyToken.sol\":1560:1563 100 */\n 0x64\n /* \"contracts/MyToken.sol\":1560:1590 100 - SHOP_DISCOUNT_PERCENTAGE */\n tag_159\n swap2\n swap1\n tag_160\n jump\t// in\n tag_159:\n /* \"contracts/MyToken.sol\":1550:1556 amount */\n dup4\n /* \"contracts/MyToken.sol\":1550:1591 amount * (100 - SHOP_DISCOUNT_PERCENTAGE) */\n tag_161\n swap2\n swap1\n tag_162\n jump\t// in\n tag_161:\n /* \"contracts/MyToken.sol\":1549:1598 (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100 */\n tag_163\n swap2\n swap1\n tag_164\n jump\t// in\n tag_163:\n /* \"contracts/MyToken.sol\":1522:1598 uint256 discountedAmount = (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100 */\n swap1\n pop\n /* \"contracts/MyToken.sol\":1608:1676 _burn(msg.sender, (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100) */\n tag_165\n /* \"contracts/MyToken.sol\":1614:1624 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":1672:1675 100 */\n 0x64\n /* \"contracts/MyToken.sol\":458:460 10 */\n 0x0a\n /* \"contracts/MyToken.sol\":1637:1640 100 */\n 0x64\n /* \"contracts/MyToken.sol\":1637:1667 100 - SHOP_DISCOUNT_PERCENTAGE */\n tag_166\n swap2\n swap1\n tag_160\n jump\t// in\n tag_166:\n /* \"contracts/MyToken.sol\":1627:1633 amount */\n dup6\n /* \"contracts/MyToken.sol\":1627:1668 amount * (100 - SHOP_DISCOUNT_PERCENTAGE) */\n tag_167\n swap2\n swap1\n tag_162\n jump\t// in\n tag_167:\n /* \"contracts/MyToken.sol\":1626:1675 (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100 */\n tag_168\n swap2\n swap1\n tag_164\n jump\t// in\n tag_168:\n /* \"contracts/MyToken.sol\":1608:1613 _burn */\n tag_169\n /* \"contracts/MyToken.sol\":1608:1676 _burn(msg.sender, (amount * (100 - SHOP_DISCOUNT_PERCENTAGE)) / 100) */\n jump\t// in\n tag_165:\n /* \"contracts/MyToken.sol\":1438:1753 {... */\n pop\n /* \"contracts/MyToken.sol\":1383:1753 function purchaseWithDiscount(uint256 amount) external {... */\n pop\n jump\t// out\n /* \"contracts/MyToken.sol\":935:1036 function becomePredictionNode() external onlyOwner {... */\n tag_95:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n tag_171\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1542 _checkOwner */\n tag_123\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n jump\t// in\n tag_171:\n /* \"contracts/MyToken.sol\":1025:1029 true */\n 0x01\n /* \"contracts/MyToken.sol\":996:1010 predictionNode */\n 0x07\n /* \"contracts/MyToken.sol\":996:1022 predictionNode[msg.sender] */\n 0x00\n /* \"contracts/MyToken.sol\":1011:1021 msg.sender */\n caller\n /* \"contracts/MyToken.sol\":996:1022 predictionNode[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/MyToken.sol\":996:1029 predictionNode[msg.sender] = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/MyToken.sol\":935:1036 function becomePredictionNode() external onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2543:2758 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_98:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n tag_174\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1542 _checkOwner */\n tag_123\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1531:1544 _checkOwner() */\n jump\t// in\n tag_174:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2647:2648 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2627:2649 newOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2627:2635 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2627:2649 newOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2623:2714 if (newOwner == address(0)) {... */\n tag_176\n jumpi\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2700:2701 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2672:2703 OwnableInvalidOwner(address(0)) */\n mload(0x40)\n 0x1e4fbdf700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_177\n swap2\n swap1\n tag_68\n jump\t// in\n tag_177:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2623:2714 if (newOwner == address(0)) {... */\n tag_176:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2723:2751 _transferOwnership(newOwner) */\n tag_178\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2742:2750 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2723:2741 _transferOwnership */\n tag_126\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2723:2751 _transferOwnership(newOwner) */\n jump\t// in\n tag_178:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2543:2758 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":656:752 function _msgSender() internal view virtual returns (address) {... */\n tag_108:\n /* \"@openzeppelin/contracts/utils/Context.sol\":709:716 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":735:745 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":728:745 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":656:752 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8989:9117 function _approve(address owner, address spender, uint256 value) internal {... */\n tag_110:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9073:9110 _approve(owner, spender, value, true) */\n tag_181\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9082:9087 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9089:9096 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9098:9103 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9105:9109 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9073:9081 _approve */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9073:9110 _approve(owner, spender, value, true) */\n jump\t// in\n tag_181:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8989:9117 function _approve(address owner, address spender, uint256 value) internal {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10663:11140 function _spendAllowance(address owner, address spender, uint256 value) internal virtual {... */\n tag_115:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10762:10786 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10789:10814 allowance(owner, spender) */\n tag_184\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10799:10804 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10806:10813 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10789:10798 allowance */\n tag_86\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10789:10814 allowance(owner, spender) */\n jump\t// in\n tag_184:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10762:10814 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10848:10865 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10828:10844 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10828:10865 currentAllowance != type(uint256).max */\n eq\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10824:11134 if (currentAllowance != type(uint256).max) {... */\n tag_185\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10904:10909 value */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10885:10901 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10885:10909 currentAllowance < value */\n lt\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10881:11011 if (currentAllowance < value) {... */\n iszero\n tag_186\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10963:10970 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10972:10988 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10990:10995 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10936:10996 ERC20InsufficientAllowance(spender, currentAllowance, value) */\n mload(0x40)\n 0xfb8f41b200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_187\n swap4\n swap3\n swap2\n swap1\n tag_188\n jump\t// in\n tag_187:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10881:11011 if (currentAllowance < value) {... */\n tag_186:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11052:11109 _approve(owner, spender, currentAllowance - value, false) */\n tag_189\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11061:11066 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11068:11075 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11096:11101 value */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11077:11093 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11077:11101 currentAllowance - value */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11103:11108 false */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11052:11060 _approve */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11052:11109 _approve(owner, spender, currentAllowance - value, false) */\n jump\t// in\n tag_189:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10824:11134 if (currentAllowance != type(uint256).max) {... */\n tag_185:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10752:11140 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10663:11140 function _spendAllowance(address owner, address spender, uint256 value) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5656:5956 function _transfer(address from, address to, uint256 value) internal {... */\n tag_117:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5755:5756 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5739:5757 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5739:5743 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5739:5757 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5735:5821 if (from == address(0)) {... */\n tag_191\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5807:5808 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5780:5810 ERC20InvalidSender(address(0)) */\n mload(0x40)\n 0x96c6fd1e00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_192\n swap2\n swap1\n tag_68\n jump\t// in\n tag_192:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5735:5821 if (from == address(0)) {... */\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5848:5849 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5834:5850 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5834:5836 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5834:5850 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5830:5916 if (to == address(0)) {... */\n tag_193\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5902:5903 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5873:5905 ERC20InvalidReceiver(address(0)) */\n mload(0x40)\n 0xec442f0500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_194\n swap2\n swap1\n tag_68\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5830:5916 if (to == address(0)) {... */\n tag_193:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5925:5949 _update(from, to, value) */\n tag_195\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5933:5937 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5939:5941 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5943:5948 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5925:5932 _update */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5925:5949 _update(from, to, value) */\n jump\t// in\n tag_195:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5656:5956 function _transfer(address from, address to, uint256 value) internal {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1796:1958 function _checkOwner() internal view virtual {... */\n tag_123:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1866:1878 _msgSender() */\n tag_198\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1866:1876 _msgSender */\n tag_108\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1866:1878 _msgSender() */\n jump\t// in\n tag_198:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1855:1878 owner() != _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1855:1862 owner() */\n tag_199\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1855:1860 owner */\n tag_66\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1855:1862 owner() */\n jump\t// in\n tag_199:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1855:1878 owner() != _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1851:1952 if (owner() != _msgSender()) {... */\n tag_200\n jumpi\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1928:1940 _msgSender() */\n tag_201\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1928:1938 _msgSender */\n tag_108\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1928:1940 _msgSender() */\n jump\t// in\n tag_201:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1901:1941 OwnableUnauthorizedAccount(_msgSender()) */\n mload(0x40)\n 0x118cdaa700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_202\n swap2\n swap1\n tag_68\n jump\t// in\n tag_202:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1851:1952 if (owner() != _msgSender()) {... */\n tag_200:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1796:1958 function _checkOwner() internal view virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\n tag_126:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3001 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3004:3010 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3010 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3029:3037 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3026 _owner */\n 0x05\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3037 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3083:3091 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3073:3081 oldOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2975:3099 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7721:7929 function _mint(address account, uint256 value) internal {... */\n tag_132:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7810:7811 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7812 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7798 account */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7812 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7787:7878 if (account == address(0)) {... */\n tag_205\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7864:7865 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7835:7867 ERC20InvalidReceiver(address(0)) */\n mload(0x40)\n 0xec442f0500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_206\n swap2\n swap1\n tag_68\n jump\t// in\n tag_206:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7787:7878 if (account == address(0)) {... */\n tag_205:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7922 _update(address(0), account, value) */\n tag_207\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7903:7904 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7907:7914 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7916:7921 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7894 _update */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7922 _update(address(0), account, value) */\n jump\t// in\n tag_207:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7721:7929 function _mint(address account, uint256 value) internal {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8247:8453 function _burn(address account, uint256 value) internal {... */\n tag_169:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8336:8337 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8317:8338 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8317:8324 account */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8317:8338 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8313:8402 if (account == address(0)) {... */\n tag_209\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8388:8389 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8361:8391 ERC20InvalidSender(address(0)) */\n mload(0x40)\n 0x96c6fd1e00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_210\n swap2\n swap1\n tag_68\n jump\t// in\n tag_210:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8313:8402 if (account == address(0)) {... */\n tag_209:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8411:8446 _update(account, address(0), value) */\n tag_211\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8419:8426 account */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8436:8437 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8440:8445 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8411:8418 _update */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8411:8446 _update(account, address(0), value) */\n jump\t// in\n tag_211:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8247:8453 function _burn(address account, uint256 value) internal {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9949:10381 function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {... */\n tag_182:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10078:10079 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10061:10080 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10061:10066 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10061:10080 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10057:10146 if (owner == address(0)) {... */\n tag_213\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10132:10133 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10103:10135 ERC20InvalidApprover(address(0)) */\n mload(0x40)\n 0xe602df0500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_214\n swap2\n swap1\n tag_68\n jump\t// in\n tag_214:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10057:10146 if (owner == address(0)) {... */\n tag_213:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10178:10179 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10159:10180 spender == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10159:10166 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10159:10180 spender == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10155:10245 if (spender == address(0)) {... */\n tag_215\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10231:10232 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10203:10234 ERC20InvalidSpender(address(0)) */\n mload(0x40)\n 0x94280d6200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_216\n swap2\n swap1\n tag_68\n jump\t// in\n tag_216:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10155:10245 if (spender == address(0)) {... */\n tag_215:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10284:10289 value */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10265 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10272 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10266:10271 owner */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10272 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10281 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10273:10280 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10281 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10254:10289 _allowances[owner][spender] = value */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10303:10312 emitEvent */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10299:10375 if (emitEvent) {... */\n iszero\n tag_217\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10349:10356 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10333:10364 Approval(owner, spender, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10342:10347 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10333:10364 Approval(owner, spender, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10358:10363 value */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10333:10364 Approval(owner, spender, value) */\n mload(0x40)\n tag_218\n swap2\n swap1\n tag_39\n jump\t// in\n tag_218:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10299:10375 if (emitEvent) {... */\n tag_217:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9949:10381 function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6271:7378 function _update(address from, address to, uint256 value) internal virtual {... */\n tag_196:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6376:6377 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6378 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6364 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6378 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6356:6896 if (from == address(0)) {... */\n tag_220\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6512:6517 value */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6496:6508 _totalSupply */\n 0x02\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6496:6517 _totalSupply += value */\n dup3\n dup3\n sload\n tag_221\n swap2\n swap1\n tag_153\n jump\t// in\n tag_221:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6356:6896 if (from == address(0)) {... */\n jump(tag_222)\n tag_220:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6548:6567 uint256 fromBalance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6570:6579 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6570:6585 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6580:6584 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6570:6585 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6548:6585 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6617:6622 value */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6603:6614 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6603:6622 fromBalance < value */\n lt\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6599:6714 if (fromBalance < value) {... */\n iszero\n tag_223\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6674:6678 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6680:6691 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6693:6698 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6649:6699 ERC20InsufficientBalance(from, fromBalance, value) */\n mload(0x40)\n 0xe450d38c00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_224\n swap4\n swap3\n swap2\n swap1\n tag_188\n jump\t// in\n tag_224:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6599:6714 if (fromBalance < value) {... */\n tag_223:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6866:6871 value */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6852:6863 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6852:6871 fromBalance - value */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6834:6843 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6834:6849 _balances[from] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6844:6848 from */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6834:6849 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6834:6871 _balances[from] = fromBalance - value */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6534:6896 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6356:6896 if (from == address(0)) {... */\n tag_222:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6924:6925 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6910:6926 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6910:6912 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6910:6926 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6906:7331 if (to == address(0)) {... */\n tag_225\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7089:7094 value */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7073:7085 _totalSupply */\n 0x02\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7073:7094 _totalSupply -= value */\n dup3\n dup3\n sload\n sub\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6906:7331 if (to == address(0)) {... */\n jump(tag_226)\n tag_225:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7301:7306 value */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7284:7293 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7284:7297 _balances[to] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7294:7296 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7284:7297 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7284:7306 _balances[to] += value */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6906:7331 if (to == address(0)) {... */\n tag_226:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7361:7363 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7346:7371 Transfer(from, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7355:7359 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7346:7371 Transfer(from, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7365:7370 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7346:7371 Transfer(from, to, value) */\n mload(0x40)\n tag_227\n swap2\n swap1\n tag_39\n jump\t// in\n tag_227:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6271:7378 function _update(address from, address to, uint256 value) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_228:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\n tag_229:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:533 */\n tag_230:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_262:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_264\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_262)\n tag_264:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_231:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_232:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_267\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_228\n jump\t// in\n tag_267:\n /* \"#utility.yul\":818:889 */\n tag_268\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_229\n jump\t// in\n tag_268:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_269\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_230\n jump\t// in\n tag_269:\n /* \"#utility.yul\":988:1017 */\n tag_270\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_231\n jump\t// in\n tag_270:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_29:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_272\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_232\n jump\t// in\n tag_272:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_234:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1676:1802 */\n tag_236:\n /* \"#utility.yul\":1713:1720 */\n 0x00\n /* \"#utility.yul\":1753:1795 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1746:1751 */\n dup3\n /* \"#utility.yul\":1742:1796 */\n and\n /* \"#utility.yul\":1731:1796 */\n swap1\n pop\n /* \"#utility.yul\":1676:1802 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1808:1904 */\n tag_237:\n /* \"#utility.yul\":1845:1852 */\n 0x00\n /* \"#utility.yul\":1874:1898 */\n tag_278\n /* \"#utility.yul\":1892:1897 */\n dup3\n /* \"#utility.yul\":1874:1898 */\n tag_236\n jump\t// in\n tag_278:\n /* \"#utility.yul\":1863:1898 */\n swap1\n pop\n /* \"#utility.yul\":1808:1904 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1910:2032 */\n tag_238:\n /* \"#utility.yul\":1983:2007 */\n tag_280\n /* \"#utility.yul\":2001:2006 */\n dup2\n /* \"#utility.yul\":1983:2007 */\n tag_237\n jump\t// in\n tag_280:\n /* \"#utility.yul\":1976:1981 */\n dup2\n /* \"#utility.yul\":1973:2008 */\n eq\n /* \"#utility.yul\":1963:2026 */\n tag_281\n jumpi\n /* \"#utility.yul\":2022:2023 */\n 0x00\n /* \"#utility.yul\":2019:2020 */\n dup1\n /* \"#utility.yul\":2012:2024 */\n revert\n /* \"#utility.yul\":1963:2026 */\n tag_281:\n /* \"#utility.yul\":1910:2032 */\n pop\n jump\t// out\n /* \"#utility.yul\":2038:2177 */\n tag_239:\n /* \"#utility.yul\":2084:2089 */\n 0x00\n /* \"#utility.yul\":2122:2128 */\n dup2\n /* \"#utility.yul\":2109:2129 */\n calldataload\n /* \"#utility.yul\":2100:2129 */\n swap1\n pop\n /* \"#utility.yul\":2138:2171 */\n tag_283\n /* \"#utility.yul\":2165:2170 */\n dup2\n /* \"#utility.yul\":2138:2171 */\n tag_238\n jump\t// in\n tag_283:\n /* \"#utility.yul\":2038:2177 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2183:2260 */\n tag_240:\n /* \"#utility.yul\":2220:2227 */\n 0x00\n /* \"#utility.yul\":2249:2254 */\n dup2\n /* \"#utility.yul\":2238:2254 */\n swap1\n pop\n /* \"#utility.yul\":2183:2260 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2266:2388 */\n tag_241:\n /* \"#utility.yul\":2339:2363 */\n tag_286\n /* \"#utility.yul\":2357:2362 */\n dup2\n /* \"#utility.yul\":2339:2363 */\n tag_240\n jump\t// in\n tag_286:\n /* \"#utility.yul\":2332:2337 */\n dup2\n /* \"#utility.yul\":2329:2364 */\n eq\n /* \"#utility.yul\":2319:2382 */\n tag_287\n jumpi\n /* \"#utility.yul\":2378:2379 */\n 0x00\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2368:2380 */\n revert\n /* \"#utility.yul\":2319:2382 */\n tag_287:\n /* \"#utility.yul\":2266:2388 */\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2533 */\n tag_242:\n /* \"#utility.yul\":2440:2445 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup2\n /* \"#utility.yul\":2465:2485 */\n calldataload\n /* \"#utility.yul\":2456:2485 */\n swap1\n pop\n /* \"#utility.yul\":2494:2527 */\n tag_289\n /* \"#utility.yul\":2521:2526 */\n dup2\n /* \"#utility.yul\":2494:2527 */\n tag_241\n jump\t// in\n tag_289:\n /* \"#utility.yul\":2394:2533 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2539:3013 */\n tag_32:\n /* \"#utility.yul\":2607:2613 */\n 0x00\n /* \"#utility.yul\":2615:2621 */\n dup1\n /* \"#utility.yul\":2664:2666 */\n 0x40\n /* \"#utility.yul\":2652:2661 */\n dup4\n /* \"#utility.yul\":2643:2650 */\n dup6\n /* \"#utility.yul\":2639:2662 */\n sub\n /* \"#utility.yul\":2635:2667 */\n slt\n /* \"#utility.yul\":2632:2751 */\n iszero\n tag_291\n jumpi\n /* \"#utility.yul\":2670:2749 */\n tag_292\n tag_234\n jump\t// in\n tag_292:\n /* \"#utility.yul\":2632:2751 */\n tag_291:\n /* \"#utility.yul\":2790:2791 */\n 0x00\n /* \"#utility.yul\":2815:2868 */\n tag_293\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2851:2857 */\n dup3\n /* \"#utility.yul\":2840:2849 */\n dup7\n /* \"#utility.yul\":2836:2858 */\n add\n /* \"#utility.yul\":2815:2868 */\n tag_239\n jump\t// in\n tag_293:\n /* \"#utility.yul\":2805:2868 */\n swap3\n pop\n /* \"#utility.yul\":2761:2878 */\n pop\n /* \"#utility.yul\":2917:2919 */\n 0x20\n /* \"#utility.yul\":2943:2996 */\n tag_294\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2943:2996 */\n tag_242\n jump\t// in\n tag_294:\n /* \"#utility.yul\":2933:2996 */\n swap2\n pop\n /* \"#utility.yul\":2888:3006 */\n pop\n /* \"#utility.yul\":2539:3013 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3019:3109 */\n tag_243:\n /* \"#utility.yul\":3053:3060 */\n 0x00\n /* \"#utility.yul\":3096:3101 */\n dup2\n /* \"#utility.yul\":3089:3102 */\n iszero\n /* \"#utility.yul\":3082:3103 */\n iszero\n /* \"#utility.yul\":3071:3103 */\n swap1\n pop\n /* \"#utility.yul\":3019:3109 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3115:3224 */\n tag_244:\n /* \"#utility.yul\":3196:3217 */\n tag_297\n /* \"#utility.yul\":3211:3216 */\n dup2\n /* \"#utility.yul\":3196:3217 */\n tag_243\n jump\t// in\n tag_297:\n /* \"#utility.yul\":3191:3194 */\n dup3\n /* \"#utility.yul\":3184:3218 */\n mstore\n /* \"#utility.yul\":3115:3224 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3230:3440 */\n tag_35:\n /* \"#utility.yul\":3317:3321 */\n 0x00\n /* \"#utility.yul\":3355:3357 */\n 0x20\n /* \"#utility.yul\":3344:3353 */\n dup3\n /* \"#utility.yul\":3340:3358 */\n add\n /* \"#utility.yul\":3332:3358 */\n swap1\n pop\n /* \"#utility.yul\":3368:3433 */\n tag_299\n /* \"#utility.yul\":3430:3431 */\n 0x00\n /* \"#utility.yul\":3419:3428 */\n dup4\n /* \"#utility.yul\":3415:3432 */\n add\n /* \"#utility.yul\":3406:3412 */\n dup5\n /* \"#utility.yul\":3368:3433 */\n tag_244\n jump\t// in\n tag_299:\n /* \"#utility.yul\":3230:3440 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3564 */\n tag_245:\n /* \"#utility.yul\":3533:3557 */\n tag_301\n /* \"#utility.yul\":3551:3556 */\n dup2\n /* \"#utility.yul\":3533:3557 */\n tag_240\n jump\t// in\n tag_301:\n /* \"#utility.yul\":3528:3531 */\n dup3\n /* \"#utility.yul\":3521:3558 */\n mstore\n /* \"#utility.yul\":3446:3564 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3570:3792 */\n tag_39:\n /* \"#utility.yul\":3663:3667 */\n 0x00\n /* \"#utility.yul\":3701:3703 */\n 0x20\n /* \"#utility.yul\":3690:3699 */\n dup3\n /* \"#utility.yul\":3686:3704 */\n add\n /* \"#utility.yul\":3678:3704 */\n swap1\n pop\n /* \"#utility.yul\":3714:3785 */\n tag_303\n /* \"#utility.yul\":3782:3783 */\n 0x00\n /* \"#utility.yul\":3771:3780 */\n dup4\n /* \"#utility.yul\":3767:3784 */\n add\n /* \"#utility.yul\":3758:3764 */\n dup5\n /* \"#utility.yul\":3714:3785 */\n tag_245\n jump\t// in\n tag_303:\n /* \"#utility.yul\":3570:3792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3798:4417 */\n tag_42:\n /* \"#utility.yul\":3875:3881 */\n 0x00\n /* \"#utility.yul\":3883:3889 */\n dup1\n /* \"#utility.yul\":3891:3897 */\n 0x00\n /* \"#utility.yul\":3940:3942 */\n 0x60\n /* \"#utility.yul\":3928:3937 */\n dup5\n /* \"#utility.yul\":3919:3926 */\n dup7\n /* \"#utility.yul\":3915:3938 */\n sub\n /* \"#utility.yul\":3911:3943 */\n slt\n /* \"#utility.yul\":3908:4027 */\n iszero\n tag_305\n jumpi\n /* \"#utility.yul\":3946:4025 */\n tag_306\n tag_234\n jump\t// in\n tag_306:\n /* \"#utility.yul\":3908:4027 */\n tag_305:\n /* \"#utility.yul\":4066:4067 */\n 0x00\n /* \"#utility.yul\":4091:4144 */\n tag_307\n /* \"#utility.yul\":4136:4143 */\n dup7\n /* \"#utility.yul\":4127:4133 */\n dup3\n /* \"#utility.yul\":4116:4125 */\n dup8\n /* \"#utility.yul\":4112:4134 */\n add\n /* \"#utility.yul\":4091:4144 */\n tag_239\n jump\t// in\n tag_307:\n /* \"#utility.yul\":4081:4144 */\n swap4\n pop\n /* \"#utility.yul\":4037:4154 */\n pop\n /* \"#utility.yul\":4193:4195 */\n 0x20\n /* \"#utility.yul\":4219:4272 */\n tag_308\n /* \"#utility.yul\":4264:4271 */\n dup7\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4244:4253 */\n dup8\n /* \"#utility.yul\":4240:4262 */\n add\n /* \"#utility.yul\":4219:4272 */\n tag_239\n jump\t// in\n tag_308:\n /* \"#utility.yul\":4209:4272 */\n swap3\n pop\n /* \"#utility.yul\":4164:4282 */\n pop\n /* \"#utility.yul\":4321:4323 */\n 0x40\n /* \"#utility.yul\":4347:4400 */\n tag_309\n /* \"#utility.yul\":4392:4399 */\n dup7\n /* \"#utility.yul\":4383:4389 */\n dup3\n /* \"#utility.yul\":4372:4381 */\n dup8\n /* \"#utility.yul\":4368:4390 */\n add\n /* \"#utility.yul\":4347:4400 */\n tag_242\n jump\t// in\n tag_309:\n /* \"#utility.yul\":4337:4400 */\n swap2\n pop\n /* \"#utility.yul\":4292:4410 */\n pop\n /* \"#utility.yul\":3798:4417 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4423:4509 */\n tag_246:\n /* \"#utility.yul\":4458:4465 */\n 0x00\n /* \"#utility.yul\":4498:4502 */\n 0xff\n /* \"#utility.yul\":4491:4496 */\n dup3\n /* \"#utility.yul\":4487:4503 */\n and\n /* \"#utility.yul\":4476:4503 */\n swap1\n pop\n /* \"#utility.yul\":4423:4509 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4515:4627 */\n tag_247:\n /* \"#utility.yul\":4598:4620 */\n tag_312\n /* \"#utility.yul\":4614:4619 */\n dup2\n /* \"#utility.yul\":4598:4620 */\n tag_246\n jump\t// in\n tag_312:\n /* \"#utility.yul\":4593:4596 */\n dup3\n /* \"#utility.yul\":4586:4621 */\n mstore\n /* \"#utility.yul\":4515:4627 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4847 */\n tag_48:\n /* \"#utility.yul\":4722:4726 */\n 0x00\n /* \"#utility.yul\":4760:4762 */\n 0x20\n /* \"#utility.yul\":4749:4758 */\n dup3\n /* \"#utility.yul\":4745:4763 */\n add\n /* \"#utility.yul\":4737:4763 */\n swap1\n pop\n /* \"#utility.yul\":4773:4840 */\n tag_314\n /* \"#utility.yul\":4837:4838 */\n 0x00\n /* \"#utility.yul\":4826:4835 */\n dup4\n /* \"#utility.yul\":4822:4839 */\n add\n /* \"#utility.yul\":4813:4819 */\n dup5\n /* \"#utility.yul\":4773:4840 */\n tag_247\n jump\t// in\n tag_314:\n /* \"#utility.yul\":4633:4847 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4853:5182 */\n tag_54:\n /* \"#utility.yul\":4912:4918 */\n 0x00\n /* \"#utility.yul\":4961:4963 */\n 0x20\n /* \"#utility.yul\":4949:4958 */\n dup3\n /* \"#utility.yul\":4940:4947 */\n dup5\n /* \"#utility.yul\":4936:4959 */\n sub\n /* \"#utility.yul\":4932:4964 */\n slt\n /* \"#utility.yul\":4929:5048 */\n iszero\n tag_316\n jumpi\n /* \"#utility.yul\":4967:5046 */\n tag_317\n tag_234\n jump\t// in\n tag_317:\n /* \"#utility.yul\":4929:5048 */\n tag_316:\n /* \"#utility.yul\":5087:5088 */\n 0x00\n /* \"#utility.yul\":5112:5165 */\n tag_318\n /* \"#utility.yul\":5157:5164 */\n dup5\n /* \"#utility.yul\":5148:5154 */\n dup3\n /* \"#utility.yul\":5137:5146 */\n dup6\n /* \"#utility.yul\":5133:5155 */\n add\n /* \"#utility.yul\":5112:5165 */\n tag_239\n jump\t// in\n tag_318:\n /* \"#utility.yul\":5102:5165 */\n swap2\n pop\n /* \"#utility.yul\":5058:5175 */\n pop\n /* \"#utility.yul\":4853:5182 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5188:5306 */\n tag_248:\n /* \"#utility.yul\":5275:5299 */\n tag_320\n /* \"#utility.yul\":5293:5298 */\n dup2\n /* \"#utility.yul\":5275:5299 */\n tag_237\n jump\t// in\n tag_320:\n /* \"#utility.yul\":5270:5273 */\n dup3\n /* \"#utility.yul\":5263:5300 */\n mstore\n /* \"#utility.yul\":5188:5306 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5312:5534 */\n tag_68:\n /* \"#utility.yul\":5405:5409 */\n 0x00\n /* \"#utility.yul\":5443:5445 */\n 0x20\n /* \"#utility.yul\":5432:5441 */\n dup3\n /* \"#utility.yul\":5428:5446 */\n add\n /* \"#utility.yul\":5420:5446 */\n swap1\n pop\n /* \"#utility.yul\":5456:5527 */\n tag_322\n /* \"#utility.yul\":5524:5525 */\n 0x00\n /* \"#utility.yul\":5513:5522 */\n dup4\n /* \"#utility.yul\":5509:5526 */\n add\n /* \"#utility.yul\":5500:5506 */\n dup5\n /* \"#utility.yul\":5456:5527 */\n tag_248\n jump\t// in\n tag_322:\n /* \"#utility.yul\":5312:5534 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5540:5869 */\n tag_74:\n /* \"#utility.yul\":5599:5605 */\n 0x00\n /* \"#utility.yul\":5648:5650 */\n 0x20\n /* \"#utility.yul\":5636:5645 */\n dup3\n /* \"#utility.yul\":5627:5634 */\n dup5\n /* \"#utility.yul\":5623:5646 */\n sub\n /* \"#utility.yul\":5619:5651 */\n slt\n /* \"#utility.yul\":5616:5735 */\n iszero\n tag_324\n jumpi\n /* \"#utility.yul\":5654:5733 */\n tag_325\n tag_234\n jump\t// in\n tag_325:\n /* \"#utility.yul\":5616:5735 */\n tag_324:\n /* \"#utility.yul\":5774:5775 */\n 0x00\n /* \"#utility.yul\":5799:5852 */\n tag_326\n /* \"#utility.yul\":5844:5851 */\n dup5\n /* \"#utility.yul\":5835:5841 */\n dup3\n /* \"#utility.yul\":5824:5833 */\n dup6\n /* \"#utility.yul\":5820:5842 */\n add\n /* \"#utility.yul\":5799:5852 */\n tag_242\n jump\t// in\n tag_326:\n /* \"#utility.yul\":5789:5852 */\n swap2\n pop\n /* \"#utility.yul\":5745:5862 */\n pop\n /* \"#utility.yul\":5540:5869 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5875:6349 */\n tag_85:\n /* \"#utility.yul\":5943:5949 */\n 0x00\n /* \"#utility.yul\":5951:5957 */\n dup1\n /* \"#utility.yul\":6000:6002 */\n 0x40\n /* \"#utility.yul\":5988:5997 */\n dup4\n /* \"#utility.yul\":5979:5986 */\n dup6\n /* \"#utility.yul\":5975:5998 */\n sub\n /* \"#utility.yul\":5971:6003 */\n slt\n /* \"#utility.yul\":5968:6087 */\n iszero\n tag_328\n jumpi\n /* \"#utility.yul\":6006:6085 */\n tag_329\n tag_234\n jump\t// in\n tag_329:\n /* \"#utility.yul\":5968:6087 */\n tag_328:\n /* \"#utility.yul\":6126:6127 */\n 0x00\n /* \"#utility.yul\":6151:6204 */\n tag_330\n /* \"#utility.yul\":6196:6203 */\n dup6\n /* \"#utility.yul\":6187:6193 */\n dup3\n /* \"#utility.yul\":6176:6185 */\n dup7\n /* \"#utility.yul\":6172:6194 */\n add\n /* \"#utility.yul\":6151:6204 */\n tag_239\n jump\t// in\n tag_330:\n /* \"#utility.yul\":6141:6204 */\n swap3\n pop\n /* \"#utility.yul\":6097:6214 */\n pop\n /* \"#utility.yul\":6253:6255 */\n 0x20\n /* \"#utility.yul\":6279:6332 */\n tag_331\n /* \"#utility.yul\":6324:6331 */\n dup6\n /* \"#utility.yul\":6315:6321 */\n dup3\n /* \"#utility.yul\":6304:6313 */\n dup7\n /* \"#utility.yul\":6300:6322 */\n add\n /* \"#utility.yul\":6279:6332 */\n tag_239\n jump\t// in\n tag_331:\n /* \"#utility.yul\":6269:6332 */\n swap2\n pop\n /* \"#utility.yul\":6224:6342 */\n pop\n /* \"#utility.yul\":5875:6349 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6355:6535 */\n tag_249:\n /* \"#utility.yul\":6403:6480 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6400:6401 */\n 0x00\n /* \"#utility.yul\":6393:6481 */\n mstore\n /* \"#utility.yul\":6500:6504 */\n 0x22\n /* \"#utility.yul\":6497:6498 */\n 0x04\n /* \"#utility.yul\":6490:6505 */\n mstore\n /* \"#utility.yul\":6524:6528 */\n 0x24\n /* \"#utility.yul\":6521:6522 */\n 0x00\n /* \"#utility.yul\":6514:6529 */\n revert\n /* \"#utility.yul\":6541:6861 */\n tag_101:\n /* \"#utility.yul\":6585:6591 */\n 0x00\n /* \"#utility.yul\":6622:6623 */\n 0x02\n /* \"#utility.yul\":6616:6620 */\n dup3\n /* \"#utility.yul\":6612:6624 */\n div\n /* \"#utility.yul\":6602:6624 */\n swap1\n pop\n /* \"#utility.yul\":6669:6670 */\n 0x01\n /* \"#utility.yul\":6663:6667 */\n dup3\n /* \"#utility.yul\":6659:6671 */\n and\n /* \"#utility.yul\":6690:6708 */\n dup1\n /* \"#utility.yul\":6680:6761 */\n tag_334\n jumpi\n /* \"#utility.yul\":6746:6750 */\n 0x7f\n /* \"#utility.yul\":6738:6744 */\n dup3\n /* \"#utility.yul\":6734:6751 */\n and\n /* \"#utility.yul\":6724:6751 */\n swap2\n pop\n /* \"#utility.yul\":6680:6761 */\n tag_334:\n /* \"#utility.yul\":6808:6810 */\n 0x20\n /* \"#utility.yul\":6800:6806 */\n dup3\n /* \"#utility.yul\":6797:6811 */\n lt\n /* \"#utility.yul\":6777:6795 */\n dup2\n /* \"#utility.yul\":6774:6812 */\n sub\n /* \"#utility.yul\":6771:6855 */\n tag_335\n jumpi\n /* \"#utility.yul\":6827:6845 */\n tag_336\n tag_249\n jump\t// in\n tag_336:\n /* \"#utility.yul\":6771:6855 */\n tag_335:\n /* \"#utility.yul\":6592:6861 */\n pop\n /* \"#utility.yul\":6541:6861 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6867:7041 */\n tag_250:\n /* \"#utility.yul\":7007:7033 */\n 0x4e6f2067616d65207265776172647320746f20636c61696d0000000000000000\n /* \"#utility.yul\":7003:7004 */\n 0x00\n /* \"#utility.yul\":6995:7001 */\n dup3\n /* \"#utility.yul\":6991:7005 */\n add\n /* \"#utility.yul\":6984:7034 */\n mstore\n /* \"#utility.yul\":6867:7041 */\n pop\n jump\t// out\n /* \"#utility.yul\":7047:7413 */\n tag_251:\n /* \"#utility.yul\":7189:7192 */\n 0x00\n /* \"#utility.yul\":7210:7277 */\n tag_339\n /* \"#utility.yul\":7274:7276 */\n 0x18\n /* \"#utility.yul\":7269:7272 */\n dup4\n /* \"#utility.yul\":7210:7277 */\n tag_229\n jump\t// in\n tag_339:\n /* \"#utility.yul\":7203:7277 */\n swap2\n pop\n /* \"#utility.yul\":7286:7379 */\n tag_340\n /* \"#utility.yul\":7375:7378 */\n dup3\n /* \"#utility.yul\":7286:7379 */\n tag_250\n jump\t// in\n tag_340:\n /* \"#utility.yul\":7404:7406 */\n 0x20\n /* \"#utility.yul\":7399:7402 */\n dup3\n /* \"#utility.yul\":7395:7407 */\n add\n /* \"#utility.yul\":7388:7407 */\n swap1\n pop\n /* \"#utility.yul\":7047:7413 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7419:7838 */\n tag_130:\n /* \"#utility.yul\":7585:7589 */\n 0x00\n /* \"#utility.yul\":7623:7625 */\n 0x20\n /* \"#utility.yul\":7612:7621 */\n dup3\n /* \"#utility.yul\":7608:7626 */\n add\n /* \"#utility.yul\":7600:7626 */\n swap1\n pop\n /* \"#utility.yul\":7672:7681 */\n dup2\n /* \"#utility.yul\":7666:7670 */\n dup2\n /* \"#utility.yul\":7662:7682 */\n sub\n /* \"#utility.yul\":7658:7659 */\n 0x00\n /* \"#utility.yul\":7647:7656 */\n dup4\n /* \"#utility.yul\":7643:7660 */\n add\n /* \"#utility.yul\":7636:7683 */\n mstore\n /* \"#utility.yul\":7700:7831 */\n tag_342\n /* \"#utility.yul\":7826:7830 */\n dup2\n /* \"#utility.yul\":7700:7831 */\n tag_251\n jump\t// in\n tag_342:\n /* \"#utility.yul\":7692:7831 */\n swap1\n pop\n /* \"#utility.yul\":7419:7838 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7844:8069 */\n tag_252:\n /* \"#utility.yul\":7984:8018 */\n 0x4f6e6c792070726564696374696f6e206e6f6465732063616e2070726f766964\n /* \"#utility.yul\":7980:7981 */\n 0x00\n /* \"#utility.yul\":7972:7978 */\n dup3\n /* \"#utility.yul\":7968:7982 */\n add\n /* \"#utility.yul\":7961:8019 */\n mstore\n /* \"#utility.yul\":8053:8061 */\n 0x6520646174610000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":8048:8050 */\n 0x20\n /* \"#utility.yul\":8040:8046 */\n dup3\n /* \"#utility.yul\":8036:8051 */\n add\n /* \"#utility.yul\":8029:8062 */\n mstore\n /* \"#utility.yul\":7844:8069 */\n pop\n jump\t// out\n /* \"#utility.yul\":8075:8441 */\n tag_253:\n /* \"#utility.yul\":8217:8220 */\n 0x00\n /* \"#utility.yul\":8238:8305 */\n tag_345\n /* \"#utility.yul\":8302:8304 */\n 0x26\n /* \"#utility.yul\":8297:8300 */\n dup4\n /* \"#utility.yul\":8238:8305 */\n tag_229\n jump\t// in\n tag_345:\n /* \"#utility.yul\":8231:8305 */\n swap2\n pop\n /* \"#utility.yul\":8314:8407 */\n tag_346\n /* \"#utility.yul\":8403:8406 */\n dup3\n /* \"#utility.yul\":8314:8407 */\n tag_252\n jump\t// in\n tag_346:\n /* \"#utility.yul\":8432:8434 */\n 0x40\n /* \"#utility.yul\":8427:8430 */\n dup3\n /* \"#utility.yul\":8423:8435 */\n add\n /* \"#utility.yul\":8416:8435 */\n swap1\n pop\n /* \"#utility.yul\":8075:8441 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8447:8866 */\n tag_144:\n /* \"#utility.yul\":8613:8617 */\n 0x00\n /* \"#utility.yul\":8651:8653 */\n 0x20\n /* \"#utility.yul\":8640:8649 */\n dup3\n /* \"#utility.yul\":8636:8654 */\n add\n /* \"#utility.yul\":8628:8654 */\n swap1\n pop\n /* \"#utility.yul\":8700:8709 */\n dup2\n /* \"#utility.yul\":8694:8698 */\n dup2\n /* \"#utility.yul\":8690:8710 */\n sub\n /* \"#utility.yul\":8686:8687 */\n 0x00\n /* \"#utility.yul\":8675:8684 */\n dup4\n /* \"#utility.yul\":8671:8688 */\n add\n /* \"#utility.yul\":8664:8711 */\n mstore\n /* \"#utility.yul\":8728:8859 */\n tag_348\n /* \"#utility.yul\":8854:8858 */\n dup2\n /* \"#utility.yul\":8728:8859 */\n tag_253\n jump\t// in\n tag_348:\n /* \"#utility.yul\":8720:8859 */\n swap1\n pop\n /* \"#utility.yul\":8447:8866 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8872:9052 */\n tag_254:\n /* \"#utility.yul\":8920:8997 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":8917:8918 */\n 0x00\n /* \"#utility.yul\":8910:8998 */\n mstore\n /* \"#utility.yul\":9017:9021 */\n 0x11\n /* \"#utility.yul\":9014:9015 */\n 0x04\n /* \"#utility.yul\":9007:9022 */\n mstore\n /* \"#utility.yul\":9041:9045 */\n 0x24\n /* \"#utility.yul\":9038:9039 */\n 0x00\n /* \"#utility.yul\":9031:9046 */\n revert\n /* \"#utility.yul\":9058:9249 */\n tag_153:\n /* \"#utility.yul\":9098:9101 */\n 0x00\n /* \"#utility.yul\":9117:9137 */\n tag_351\n /* \"#utility.yul\":9135:9136 */\n dup3\n /* \"#utility.yul\":9117:9137 */\n tag_240\n jump\t// in\n tag_351:\n /* \"#utility.yul\":9112:9137 */\n swap2\n pop\n /* \"#utility.yul\":9151:9171 */\n tag_352\n /* \"#utility.yul\":9169:9170 */\n dup4\n /* \"#utility.yul\":9151:9171 */\n tag_240\n jump\t// in\n tag_352:\n /* \"#utility.yul\":9146:9171 */\n swap3\n pop\n /* \"#utility.yul\":9194:9195 */\n dup3\n /* \"#utility.yul\":9191:9192 */\n dup3\n /* \"#utility.yul\":9187:9196 */\n add\n /* \"#utility.yul\":9180:9196 */\n swap1\n pop\n /* \"#utility.yul\":9215:9218 */\n dup1\n /* \"#utility.yul\":9212:9213 */\n dup3\n /* \"#utility.yul\":9209:9219 */\n gt\n /* \"#utility.yul\":9206:9242 */\n iszero\n tag_353\n jumpi\n /* \"#utility.yul\":9222:9240 */\n tag_354\n tag_254\n jump\t// in\n tag_354:\n /* \"#utility.yul\":9206:9242 */\n tag_353:\n /* \"#utility.yul\":9058:9249 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9255:9425 */\n tag_255:\n /* \"#utility.yul\":9395:9417 */\n 0x496e73756666696369656e742062616c616e6365000000000000000000000000\n /* \"#utility.yul\":9391:9392 */\n 0x00\n /* \"#utility.yul\":9383:9389 */\n dup3\n /* \"#utility.yul\":9379:9393 */\n add\n /* \"#utility.yul\":9372:9418 */\n mstore\n /* \"#utility.yul\":9255:9425 */\n pop\n jump\t// out\n /* \"#utility.yul\":9431:9797 */\n tag_256:\n /* \"#utility.yul\":9573:9576 */\n 0x00\n /* \"#utility.yul\":9594:9661 */\n tag_357\n /* \"#utility.yul\":9658:9660 */\n 0x14\n /* \"#utility.yul\":9653:9656 */\n dup4\n /* \"#utility.yul\":9594:9661 */\n tag_229\n jump\t// in\n tag_357:\n /* \"#utility.yul\":9587:9661 */\n swap2\n pop\n /* \"#utility.yul\":9670:9763 */\n tag_358\n /* \"#utility.yul\":9759:9762 */\n dup3\n /* \"#utility.yul\":9670:9763 */\n tag_255\n jump\t// in\n tag_358:\n /* \"#utility.yul\":9788:9790 */\n 0x20\n /* \"#utility.yul\":9783:9786 */\n dup3\n /* \"#utility.yul\":9779:9791 */\n add\n /* \"#utility.yul\":9772:9791 */\n swap1\n pop\n /* \"#utility.yul\":9431:9797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9803:10222 */\n tag_158:\n /* \"#utility.yul\":9969:9973 */\n 0x00\n /* \"#utility.yul\":10007:10009 */\n 0x20\n /* \"#utility.yul\":9996:10005 */\n dup3\n /* \"#utility.yul\":9992:10010 */\n add\n /* \"#utility.yul\":9984:10010 */\n swap1\n pop\n /* \"#utility.yul\":10056:10065 */\n dup2\n /* \"#utility.yul\":10050:10054 */\n dup2\n /* \"#utility.yul\":10046:10066 */\n sub\n /* \"#utility.yul\":10042:10043 */\n 0x00\n /* \"#utility.yul\":10031:10040 */\n dup4\n /* \"#utility.yul\":10027:10044 */\n add\n /* \"#utility.yul\":10020:10067 */\n mstore\n /* \"#utility.yul\":10084:10215 */\n tag_360\n /* \"#utility.yul\":10210:10214 */\n dup2\n /* \"#utility.yul\":10084:10215 */\n tag_256\n jump\t// in\n tag_360:\n /* \"#utility.yul\":10076:10215 */\n swap1\n pop\n /* \"#utility.yul\":9803:10222 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10228:10422 */\n tag_160:\n /* \"#utility.yul\":10268:10272 */\n 0x00\n /* \"#utility.yul\":10288:10308 */\n tag_362\n /* \"#utility.yul\":10306:10307 */\n dup3\n /* \"#utility.yul\":10288:10308 */\n tag_240\n jump\t// in\n tag_362:\n /* \"#utility.yul\":10283:10308 */\n swap2\n pop\n /* \"#utility.yul\":10322:10342 */\n tag_363\n /* \"#utility.yul\":10340:10341 */\n dup4\n /* \"#utility.yul\":10322:10342 */\n tag_240\n jump\t// in\n tag_363:\n /* \"#utility.yul\":10317:10342 */\n swap3\n pop\n /* \"#utility.yul\":10366:10367 */\n dup3\n /* \"#utility.yul\":10363:10364 */\n dup3\n /* \"#utility.yul\":10359:10368 */\n sub\n /* \"#utility.yul\":10351:10368 */\n swap1\n pop\n /* \"#utility.yul\":10390:10391 */\n dup2\n /* \"#utility.yul\":10384:10388 */\n dup2\n /* \"#utility.yul\":10381:10392 */\n gt\n /* \"#utility.yul\":10378:10415 */\n iszero\n tag_364\n jumpi\n /* \"#utility.yul\":10395:10413 */\n tag_365\n tag_254\n jump\t// in\n tag_365:\n /* \"#utility.yul\":10378:10415 */\n tag_364:\n /* \"#utility.yul\":10228:10422 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10428:10838 */\n tag_162:\n /* \"#utility.yul\":10468:10475 */\n 0x00\n /* \"#utility.yul\":10491:10511 */\n tag_367\n /* \"#utility.yul\":10509:10510 */\n dup3\n /* \"#utility.yul\":10491:10511 */\n tag_240\n jump\t// in\n tag_367:\n /* \"#utility.yul\":10486:10511 */\n swap2\n pop\n /* \"#utility.yul\":10525:10545 */\n tag_368\n /* \"#utility.yul\":10543:10544 */\n dup4\n /* \"#utility.yul\":10525:10545 */\n tag_240\n jump\t// in\n tag_368:\n /* \"#utility.yul\":10520:10545 */\n swap3\n pop\n /* \"#utility.yul\":10580:10581 */\n dup3\n /* \"#utility.yul\":10577:10578 */\n dup3\n /* \"#utility.yul\":10573:10582 */\n mul\n /* \"#utility.yul\":10602:10632 */\n tag_369\n /* \"#utility.yul\":10620:10631 */\n dup2\n /* \"#utility.yul\":10602:10632 */\n tag_240\n jump\t// in\n tag_369:\n /* \"#utility.yul\":10591:10632 */\n swap2\n pop\n /* \"#utility.yul\":10781:10782 */\n dup3\n /* \"#utility.yul\":10772:10779 */\n dup3\n /* \"#utility.yul\":10768:10783 */\n div\n /* \"#utility.yul\":10765:10766 */\n dup5\n /* \"#utility.yul\":10762:10784 */\n eq\n /* \"#utility.yul\":10742:10743 */\n dup4\n /* \"#utility.yul\":10735:10744 */\n iszero\n /* \"#utility.yul\":10715:10798 */\n or\n /* \"#utility.yul\":10692:10831 */\n tag_370\n jumpi\n /* \"#utility.yul\":10811:10829 */\n tag_371\n tag_254\n jump\t// in\n tag_371:\n /* \"#utility.yul\":10692:10831 */\n tag_370:\n /* \"#utility.yul\":10476:10838 */\n pop\n /* \"#utility.yul\":10428:10838 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10844:11024 */\n tag_257:\n /* \"#utility.yul\":10892:10969 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10889:10890 */\n 0x00\n /* \"#utility.yul\":10882:10970 */\n mstore\n /* \"#utility.yul\":10989:10993 */\n 0x12\n /* \"#utility.yul\":10986:10987 */\n 0x04\n /* \"#utility.yul\":10979:10994 */\n mstore\n /* \"#utility.yul\":11013:11017 */\n 0x24\n /* \"#utility.yul\":11010:11011 */\n 0x00\n /* \"#utility.yul\":11003:11018 */\n revert\n /* \"#utility.yul\":11030:11215 */\n tag_164:\n /* \"#utility.yul\":11070:11071 */\n 0x00\n /* \"#utility.yul\":11087:11107 */\n tag_374\n /* \"#utility.yul\":11105:11106 */\n dup3\n /* \"#utility.yul\":11087:11107 */\n tag_240\n jump\t// in\n tag_374:\n /* \"#utility.yul\":11082:11107 */\n swap2\n pop\n /* \"#utility.yul\":11121:11141 */\n tag_375\n /* \"#utility.yul\":11139:11140 */\n dup4\n /* \"#utility.yul\":11121:11141 */\n tag_240\n jump\t// in\n tag_375:\n /* \"#utility.yul\":11116:11141 */\n swap3\n pop\n /* \"#utility.yul\":11160:11161 */\n dup3\n /* \"#utility.yul\":11150:11185 */\n tag_376\n jumpi\n /* \"#utility.yul\":11165:11183 */\n tag_377\n tag_257\n jump\t// in\n tag_377:\n /* \"#utility.yul\":11150:11185 */\n tag_376:\n /* \"#utility.yul\":11207:11208 */\n dup3\n /* \"#utility.yul\":11204:11205 */\n dup3\n /* \"#utility.yul\":11200:11209 */\n div\n /* \"#utility.yul\":11195:11209 */\n swap1\n pop\n /* \"#utility.yul\":11030:11215 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11221:11663 */\n tag_188:\n /* \"#utility.yul\":11370:11374 */\n 0x00\n /* \"#utility.yul\":11408:11410 */\n 0x60\n /* \"#utility.yul\":11397:11406 */\n dup3\n /* \"#utility.yul\":11393:11411 */\n add\n /* \"#utility.yul\":11385:11411 */\n swap1\n pop\n /* \"#utility.yul\":11421:11492 */\n tag_379\n /* \"#utility.yul\":11489:11490 */\n 0x00\n /* \"#utility.yul\":11478:11487 */\n dup4\n /* \"#utility.yul\":11474:11491 */\n add\n /* \"#utility.yul\":11465:11471 */\n dup7\n /* \"#utility.yul\":11421:11492 */\n tag_248\n jump\t// in\n tag_379:\n /* \"#utility.yul\":11502:11574 */\n tag_380\n /* \"#utility.yul\":11570:11572 */\n 0x20\n /* \"#utility.yul\":11559:11568 */\n dup4\n /* \"#utility.yul\":11555:11573 */\n add\n /* \"#utility.yul\":11546:11552 */\n dup6\n /* \"#utility.yul\":11502:11574 */\n tag_245\n jump\t// in\n tag_380:\n /* \"#utility.yul\":11584:11656 */\n tag_381\n /* \"#utility.yul\":11652:11654 */\n 0x40\n /* \"#utility.yul\":11641:11650 */\n dup4\n /* \"#utility.yul\":11637:11655 */\n add\n /* \"#utility.yul\":11628:11634 */\n dup5\n /* \"#utility.yul\":11584:11656 */\n tag_245\n jump\t// in\n tag_381:\n /* \"#utility.yul\":11221:11663 */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122091caa53e0689b2f9a296255f1d5be9e8e4f9697d8b1b97551e61d407649f0bb564736f6c63430008140033\n}\n",
"bytecode": {
"functionDebugData": {
"@_336": {
"entryPoint": null,
"id": 336,
"parameterSlots": 2,
"returnSlots": 0
},
"@_50": {
"entryPoint": null,
"id": 50,
"parameterSlots": 1,
"returnSlots": 0
},
"@_965": {
"entryPoint": null,
"id": 965,
"parameterSlots": 0,
"returnSlots": 0
},
"@_transferOwnership_146": {
"entryPoint": 303,
"id": 146,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1405,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 959,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 1369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1338,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 921,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 798,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1110,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1081,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1051,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 553,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 508,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 683,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1039,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 893,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 695,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 846,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 889,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5817:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:7"
},
"nodeType": "YulFunctionCall",
"src": "87:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:7"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:7",
"type": ""
}
],
"src": "7:99:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:7"
},
"nodeType": "YulFunctionCall",
"src": "150:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:7",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:7"
},
"nodeType": "YulFunctionCall",
"src": "247:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:7"
},
"nodeType": "YulFunctionCall",
"src": "271:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:7"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:7",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:7",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:7"
},
"nodeType": "YulFunctionCall",
"src": "336:88:7"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:7",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:7",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:7"
},
"nodeType": "YulFunctionCall",
"src": "433:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:7"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:7",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:7"
},
"nodeType": "YulFunctionCall",
"src": "457:15:7"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:7"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:7"
},
"nodeType": "YulFunctionCall",
"src": "555:12:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:7"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:7"
},
"nodeType": "YulFunctionCall",
"src": "602:12:7"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:7",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:7",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:7"
},
"nodeType": "YulFunctionCall",
"src": "677:17:7"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:7"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:7"
},
"nodeType": "YulFunctionCall",
"src": "626:26:7"
},
"nodeType": "YulIf",
"src": "623:81:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:7"
},
"nodeType": "YulFunctionCall",
"src": "770:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:7"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:7"
},
"nodeType": "YulFunctionCall",
"src": "740:14:7"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:7"
},
"nodeType": "YulFunctionCall",
"src": "717:38:7"
},
"nodeType": "YulIf",
"src": "714:84:7"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:7",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:7",
"type": ""
}
],
"src": "484:320:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:7",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:7",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:7"
},
"nodeType": "YulFunctionCall",
"src": "895:14:7"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:7"
},
{
"nodeType": "YulAssignment",
"src": "918:26:7",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:7",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:7"
},
"nodeType": "YulFunctionCall",
"src": "926:18:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:7"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:7",
"type": ""
}
],
"src": "810:141:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:7"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:7",
"type": ""
}
],
"src": "957:93:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:7"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:7"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:7",
"type": ""
}
],
"src": "1056:107:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:7",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:7",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:7"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:7",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:7"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:7"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:7"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:7"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:7"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:7"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:7"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:7"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:7"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:7",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:7",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:7",
"type": ""
}
],
"src": "1169:393:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:7"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:7",
"type": ""
}
],
"src": "1568:77:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:7"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:7",
"type": ""
}
],
"src": "1651:60:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:7"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:7"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:7"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:7"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:7"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:7"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:7",
"type": ""
}
],
"src": "1717:142:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:7",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:7"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:7"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:7",
"type": ""
}
],
"src": "1865:75:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:7",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:7"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:7"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:7"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:7"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:7"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:7"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:7"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:7"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:7"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:7"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:7"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:7",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:7",
"type": ""
}
],
"src": "1946:269:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:7",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:7"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:7",
"type": ""
}
],
"src": "2221:73:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:7",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:7"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:7"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:7"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:7"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:7"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:7"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:7"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:7"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:7",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:7",
"type": ""
}
],
"src": "2300:189:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:7"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:7"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:7"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:7"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:7",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:7"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:7",
"statements": []
},
"src": "2555:120:7"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:7",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:7",
"type": ""
}
],
"src": "2495:186:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:7",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:7",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:7"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:7"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:7",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:7"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:7"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:7"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:7"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:7",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:7"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:7"
},
"nodeType": "YulIf",
"src": "3071:49:7"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:7"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:7"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:7"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:7"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:7"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:7"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:7"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:7"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:7"
},
"nodeType": "YulIf",
"src": "2777:446:7"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:7",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:7",
"type": ""
}
],
"src": "2687:543:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:7",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:7"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:7"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:7"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:7",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:7",
"type": ""
}
],
"src": "3236:117:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:7",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:7",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:7"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:7"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:7"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:7"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:7"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:7"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:7"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:7",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:7",
"type": ""
}
],
"src": "3359:169:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:7"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:7"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:7"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:7",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:7",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:7"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:7"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:7"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:7"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:7"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:7"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:7",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:7",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:7",
"type": ""
}
],
"src": "3533:295:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:7",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:7"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:7"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:7"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:7",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:7"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:7"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:7"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:7",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:7"
},
"nodeType": "YulIf",
"src": "4038:56:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:7"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:7"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:7"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:7"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:7"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:7"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:7"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:7"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:7"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:7",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:7",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:7"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:7",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:7"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:7"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:7"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:7",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:7"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:7"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:7"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:7",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:7"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:7"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:7",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:7"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:7"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:7",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:7"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:7"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:7"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:7"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:7",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:7",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:7"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:7"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:7",
"statements": []
},
"src": "4524:208:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:7"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:7"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:7",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:7"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:7"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:7",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:7"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:7"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:7"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:7"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:7"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:7"
},
"nodeType": "YulIf",
"src": "4745:179:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:7"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:7",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:7",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:7"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:7"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:7"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:7"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:7",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:7",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:7",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:7",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:7",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:7",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:7"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:7"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:7"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:7"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:7"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:7"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:7"
},
"nodeType": "YulIf",
"src": "5041:77:7"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:7"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:7"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:7"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:7"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:7"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:7"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:7",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:7",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:7"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:7"
},
"nodeType": "YulSwitch",
"src": "4335:887:7"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:7",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:7",
"type": ""
}
],
"src": "3833:1395:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5279:81:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5289:65:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5304:5:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5311:42:7",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5300:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5300:54:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5289:7:7"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5261:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5271:7:7",
"type": ""
}
],
"src": "5234:126:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5411:51:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5421:35:7",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5450:5:7"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5432:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5432:24:7"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5421:7:7"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5393:5:7",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5403:7:7",
"type": ""
}
],
"src": "5366:96:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5533:53:7",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5550:3:7"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5573:5:7"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5555:17:7"
},
"nodeType": "YulFunctionCall",
"src": "5555:24:7"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5543:6:7"
},
"nodeType": "YulFunctionCall",
"src": "5543:37:7"
},
"nodeType": "YulExpressionStatement",
"src": "5543:37:7"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5521:5:7",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5528:3:7",
"type": ""
}
],
"src": "5468:118:7"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5690:124:7",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5700:26:7",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5712:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5723:2:7",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5708:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5708:18:7"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5700:4:7"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5780:6:7"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5793:9:7"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:1:7",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5789:3:7"
},
"nodeType": "YulFunctionCall",
"src": "5789:17:7"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "5736:43:7"
},
"nodeType": "YulFunctionCall",
"src": "5736:71:7"
},
"nodeType": "YulExpressionStatement",
"src": "5736:71:7"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5662:9:7",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5674:6:7",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5685:4:7",
"type": ""
}
],
"src": "5592:222:7"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 7,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801562000010575f80fd5b50336040518060400160405280600e81526020017f47616d654f7261636c65436f696e0000000000000000000000000000000000008152506040518060400160405280600381526020017f474f43000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000456565b508060049081620000a1919062000456565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e91906200057d565b60405180910390fd5b62000128816200012f60201b60201c565b5062000598565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026e57607f821691505b60208210810362000284576200028362000229565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ab565b620002f48683620002ab565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033e6200033862000332846200030c565b62000315565b6200030c565b9050919050565b5f819050919050565b62000359836200031e565b62000371620003688262000345565b848454620002b7565b825550505050565b5f90565b6200038762000379565b620003948184846200034e565b505050565b5b81811015620003bb57620003af5f826200037d565b6001810190506200039a565b5050565b601f8211156200040a57620003d4816200028a565b620003df846200029c565b81016020851015620003ef578190505b62000407620003fe856200029c565b83018262000399565b50505b505050565b5f82821c905092915050565b5f6200042c5f19846008026200040f565b1980831691505092915050565b5f6200044683836200041b565b9150826002028217905092915050565b6200046182620001f2565b67ffffffffffffffff8111156200047d576200047c620001fc565b5b62000489825462000256565b62000496828285620003bf565b5f60209050601f831160018114620004cc575f8415620004b7578287015190505b620004c3858262000439565b86555062000532565b601f198416620004dc866200028a565b5f5b828110156200050557848901518255600182019150602085019450602081019050620004de565b8683101562000525578489015162000521601f8916826200041b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000565826200053a565b9050919050565b620005778162000559565b82525050565b5f602082019050620005925f8301846200056c565b92915050565b6118b780620005a65f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063dd62ed3e1161006f578063dd62ed3e14610320578063e2c0726314610350578063e621ecec1461036c578063eca272bb14610388578063f2fde38b146103925761012a565b80638da5cb5b1461027a57806395d89b4114610298578063a451910c146102b6578063a9059cbb146102d2578063c3e55ba7146103025761012a565b806350297416116100f257806350297416146101e8578063697c99591461020657806370a0823114610236578063715018a614610266578063805dd212146102705761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b6101366103ae565b60405161014391906112d6565b60405180910390f35b61016660048036038101906101619190611387565b61043e565b60405161017391906113df565b60405180910390f35b610184610460565b6040516101919190611407565b60405180910390f35b6101b460048036038101906101af9190611420565b610469565b6040516101c191906113df565b60405180910390f35b6101d2610497565b6040516101df919061148b565b60405180910390f35b6101f061049f565b6040516101fd9190611407565b60405180910390f35b610220600480360381019061021b91906114a4565b6104a4565b60405161022d91906113df565b60405180910390f35b610250600480360381019061024b91906114a4565b6104f6565b60405161025d9190611407565b60405180910390f35b61026e61053b565b005b61027861054e565b005b6102826106ab565b60405161028f91906114de565b60405180910390f35b6102a06106d3565b6040516102ad91906112d6565b60405180910390f35b6102d060048036038101906102cb91906114f7565b610763565b005b6102ec60048036038101906102e79190611387565b6107ef565b6040516102f991906113df565b60405180910390f35b61030a610811565b6040516103179190611407565b60405180910390f35b61033a60048036038101906103359190611522565b610817565b6040516103479190611407565b60405180910390f35b61036a600480360381019061036591906114a4565b610899565b005b610386600480360381019061038191906114f7565b6108f9565b005b61039061099e565b005b6103ac60048036038101906103a791906114a4565b6109fd565b005b6060600380546103bd9061158d565b80601f01602080910402602001604051908101604052809291908181526020018280546103e99061158d565b80156104345780601f1061040b57610100808354040283529160200191610434565b820191905f5260205f20905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b5f80610448610a81565b9050610455818585610a88565b600191505092915050565b5f600254905090565b5f80610473610a81565b9050610480858285610a9a565b61048b858585610b2c565b60019150509392505050565b5f6012905090565b600a81565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610543610c1c565b61054c5f610ca3565b565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054116105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c490611607565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061065a3382610d66565b3373ffffffffffffffffffffffffffffffffffffffff167f8ca22a21a0ae28f0bdef2150ae70b453d899dac6c11446823295ff67e7efa011826040516106a09190611407565b60405180910390a250565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e29061158d565b80601f016020809104026020016040519081016040528092919081815260200182805461070e9061158d565b80156107595780601f1061073057610100808354040283529160200191610759565b820191905f5260205f20905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611695565b60405180910390fd5b50565b5f806107f9610a81565b9050610806818585610b2c565b600191505092915050565b6103e881565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a1610c1c565b6103e860065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546108ef91906116e0565b9250508190555050565b80610903336104f6565b1015610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b9061175d565b60405180910390fd5b5f6064600a6064610955919061177b565b8361096091906117ae565b61096a919061181c565b905061099a336064600a6064610980919061177b565b8561098b91906117ae565b610995919061181c565b610de5565b5050565b6109a6610c1c565b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b610a05610c1c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a75575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a6c91906114de565b60405180910390fd5b610a7e81610ca3565b50565b5f33905090565b610a958383836001610e64565b505050565b5f610aa58484610817565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b17578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b0e9392919061184c565b60405180910390fd5b610b2584848484035f610e64565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b9391906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c0c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c0391906114de565b60405180910390fd5b610c17838383611033565b505050565b610c24610a81565b73ffffffffffffffffffffffffffffffffffffffff16610c426106ab565b73ffffffffffffffffffffffffffffffffffffffff1614610ca157610c65610a81565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c9891906114de565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610dcd91906114de565b60405180910390fd5b610de15f8383611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e55575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e4c91906114de565b60405180910390fd5b610e60825f83611033565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ed4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ecb91906114de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f44575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f3b91906114de565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561102d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110249190611407565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611083578060025f82825461107791906116e0565b92505081905550611151565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561110c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111039392919061184c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611198578060025f82825403925050819055506111e2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161123f9190611407565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611283578082015181840152602081019050611268565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112a88261124c565b6112b28185611256565b93506112c2818560208601611266565b6112cb8161128e565b840191505092915050565b5f6020820190508181035f8301526112ee818461129e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611323826112fa565b9050919050565b61133381611319565b811461133d575f80fd5b50565b5f8135905061134e8161132a565b92915050565b5f819050919050565b61136681611354565b8114611370575f80fd5b50565b5f813590506113818161135d565b92915050565b5f806040838503121561139d5761139c6112f6565b5b5f6113aa85828601611340565b92505060206113bb85828601611373565b9150509250929050565b5f8115159050919050565b6113d9816113c5565b82525050565b5f6020820190506113f25f8301846113d0565b92915050565b61140181611354565b82525050565b5f60208201905061141a5f8301846113f8565b92915050565b5f805f60608486031215611437576114366112f6565b5b5f61144486828701611340565b935050602061145586828701611340565b925050604061146686828701611373565b9150509250925092565b5f60ff82169050919050565b61148581611470565b82525050565b5f60208201905061149e5f83018461147c565b92915050565b5f602082840312156114b9576114b86112f6565b5b5f6114c684828501611340565b91505092915050565b6114d881611319565b82525050565b5f6020820190506114f15f8301846114cf565b92915050565b5f6020828403121561150c5761150b6112f6565b5b5f61151984828501611373565b91505092915050565b5f8060408385031215611538576115376112f6565b5b5f61154585828601611340565b925050602061155685828601611340565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115a457607f821691505b6020821081036115b7576115b6611560565b5b50919050565b7f4e6f2067616d65207265776172647320746f20636c61696d00000000000000005f82015250565b5f6115f1601883611256565b91506115fc826115bd565b602082019050919050565b5f6020820190508181035f83015261161e816115e5565b9050919050565b7f4f6e6c792070726564696374696f6e206e6f6465732063616e2070726f7669645f8201527f6520646174610000000000000000000000000000000000000000000000000000602082015250565b5f61167f602683611256565b915061168a82611625565b604082019050919050565b5f6020820190508181035f8301526116ac81611673565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6116ea82611354565b91506116f583611354565b925082820190508082111561170d5761170c6116b3565b5b92915050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611747601483611256565b915061175282611713565b602082019050919050565b5f6020820190508181035f8301526117748161173b565b9050919050565b5f61178582611354565b915061179083611354565b92508282039050818111156117a8576117a76116b3565b5b92915050565b5f6117b882611354565b91506117c383611354565b92508282026117d181611354565b915082820484148315176117e8576117e76116b3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61182682611354565b915061183183611354565b925082611841576118406117ef565b5b828204905092915050565b5f60608201905061185f5f8301866114cf565b61186c60208301856113f8565b61187960408301846113f8565b94935050505056fea264697066735822122091caa53e0689b2f9a296255f1d5be9e8e4f9697d8b1b97551e61d407649f0bb564736f6c63430008140033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x47616D654F7261636C65436F696E000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x474F430000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x456 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x456 JUMP JUMPDEST POP POP POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x117 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x10E SWAP2 SWAP1 PUSH3 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x128 DUP2 PUSH3 0x12F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x598 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x26E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x284 JUMPI PUSH3 0x283 PUSH3 0x229 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x2E8 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x2AB JUMP JUMPDEST PUSH3 0x2F4 DUP7 DUP4 PUSH3 0x2AB JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x33E PUSH3 0x338 PUSH3 0x332 DUP5 PUSH3 0x30C JUMP JUMPDEST PUSH3 0x315 JUMP JUMPDEST PUSH3 0x30C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x359 DUP4 PUSH3 0x31E JUMP JUMPDEST PUSH3 0x371 PUSH3 0x368 DUP3 PUSH3 0x345 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x2B7 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x387 PUSH3 0x379 JUMP JUMPDEST PUSH3 0x394 DUP2 DUP5 DUP5 PUSH3 0x34E JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3BB JUMPI PUSH3 0x3AF PUSH0 DUP3 PUSH3 0x37D JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x39A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x40A JUMPI PUSH3 0x3D4 DUP2 PUSH3 0x28A JUMP JUMPDEST PUSH3 0x3DF DUP5 PUSH3 0x29C JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3EF JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x407 PUSH3 0x3FE DUP6 PUSH3 0x29C JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x399 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x42C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x40F JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x446 DUP4 DUP4 PUSH3 0x41B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x461 DUP3 PUSH3 0x1F2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x47D JUMPI PUSH3 0x47C PUSH3 0x1FC JUMP JUMPDEST JUMPDEST PUSH3 0x489 DUP3 SLOAD PUSH3 0x256 JUMP JUMPDEST PUSH3 0x496 DUP3 DUP3 DUP6 PUSH3 0x3BF JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x4CC JUMPI PUSH0 DUP5 ISZERO PUSH3 0x4B7 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x4C3 DUP6 DUP3 PUSH3 0x439 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x532 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x4DC DUP7 PUSH3 0x28A JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x505 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x4DE JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x525 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x521 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x41B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x565 DUP3 PUSH3 0x53A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x577 DUP2 PUSH3 0x559 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x592 PUSH0 DUP4 ADD DUP5 PUSH3 0x56C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x18B7 DUP1 PUSH3 0x5A6 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12A JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xAB JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xE2C07263 EQ PUSH2 0x350 JUMPI DUP1 PUSH4 0xE621ECEC EQ PUSH2 0x36C JUMPI DUP1 PUSH4 0xECA272BB EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x392 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0xA451910C EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xC3E55BA7 EQ PUSH2 0x302 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x50297416 GT PUSH2 0xF2 JUMPI DUP1 PUSH4 0x50297416 EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0x697C9959 EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x236 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0x805DD212 EQ PUSH2 0x270 JUMPI PUSH2 0x12A JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1CA JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x136 PUSH2 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x143 SWAP2 SWAP1 PUSH2 0x12D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x43E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x184 PUSH2 0x460 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x191 SWAP2 SWAP1 PUSH2 0x1407 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AF SWAP2 SWAP1 PUSH2 0x1420 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x13DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D2 PUSH2 0x497 JUMP JUMPDEST PUSH1 0x4
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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