Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sandywall26/08896f40b4e1cd7fac6bbedf1722cb66 to your computer and use it in GitHub Desktop.
Save sandywall26/08896f40b4e1cd7fac6bbedf1722cb66 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=builtin&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private immutable _PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @dev See {IERC20Permit-permit}.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual override {
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_approve(owner, spender, value);
}
/**
* @dev See {IERC20Permit-nonces}.
*/
function nonces(address owner) public view virtual override returns (uint256) {
return _nonces[owner].current();
}
/**
* @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
/**
* @dev "Consume a nonce": return the current value and increment.
*
* _Available since v4.1._
*/
function _useNonce(address owner) internal virtual returns (uint256 current) {
Counters.Counter storage nonce = _nonces[owner];
current = nonce.current();
nonce.increment();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./draft-ERC20Permit.sol";
import "../../../utils/math/Math.sol";
import "../../../utils/math/SafeCast.sol";
import "../../../utils/cryptography/ECDSA.sol";
/**
* @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
* and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
*
* NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
*
* This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
* by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
* power can be queried through the public accessors {getVotes} and {getPastVotes}.
*
* By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
* requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
* Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this
* will significantly increase the base gas cost of transfers.
*
* _Available since v4.2._
*/
abstract contract ERC20Votes is ERC20Permit {
struct Checkpoint {
uint32 fromBlock;
uint224 votes;
}
bytes32 private constant _DELEGATION_TYPEHASH =
keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
mapping(address => address) private _delegates;
mapping(address => Checkpoint[]) private _checkpoints;
Checkpoint[] private _totalSupplyCheckpoints;
/**
* @dev Emitted when an account changes their delegate.
*/
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/**
* @dev Emitted when a token transfer or delegate change results in changes to an account's voting power.
*/
event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);
/**
* @dev Get the `pos`-th checkpoint for `account`.
*/
function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
return _checkpoints[account][pos];
}
/**
* @dev Get number of checkpoints for `account`.
*/
function numCheckpoints(address account) public view virtual returns (uint32) {
return SafeCast.toUint32(_checkpoints[account].length);
}
/**
* @dev Get the address `account` is currently delegating to.
*/
function delegates(address account) public view virtual returns (address) {
return _delegates[account];
}
/**
* @dev Gets the current votes balance for `account`
*/
function getVotes(address account) public view returns (uint256) {
uint256 pos = _checkpoints[account].length;
return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
}
/**
* @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
*
* Requirements:
*
* - `blockNumber` must have been already mined
*/
function getPastVotes(address account, uint256 blockNumber) public view returns (uint256) {
require(blockNumber < block.number, "ERC20Votes: block not yet mined");
return _checkpointsLookup(_checkpoints[account], blockNumber);
}
/**
* @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
* It is but NOT the sum of all the delegated votes!
*
* Requirements:
*
* - `blockNumber` must have been already mined
*/
function getPastTotalSupply(uint256 blockNumber) public view returns (uint256) {
require(blockNumber < block.number, "ERC20Votes: block not yet mined");
return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
}
/**
* @dev Lookup a value in a list of (sorted) checkpoints.
*/
function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
// We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
//
// During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
// With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
// - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
// - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
// Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
// out of bounds (in which case we're looking too far in the past and the result is 0).
// Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
// past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
// the same.
uint256 high = ckpts.length;
uint256 low = 0;
while (low < high) {
uint256 mid = Math.average(low, high);
if (ckpts[mid].fromBlock > blockNumber) {
high = mid;
} else {
low = mid + 1;
}
}
return high == 0 ? 0 : ckpts[high - 1].votes;
}
/**
* @dev Delegate votes from the sender to `delegatee`.
*/
function delegate(address delegatee) public virtual {
return _delegate(_msgSender(), delegatee);
}
/**
* @dev Delegates votes from signer to `delegatee`
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(block.timestamp <= expiry, "ERC20Votes: signature expired");
address signer = ECDSA.recover(
_hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
v,
r,
s
);
require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
return _delegate(signer, delegatee);
}
/**
* @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
*/
function _maxSupply() internal view virtual returns (uint224) {
return type(uint224).max;
}
/**
* @dev Snapshots the totalSupply after it has been increased.
*/
function _mint(address account, uint256 amount) internal virtual override {
super._mint(account, amount);
require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");
_writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
}
/**
* @dev Snapshots the totalSupply after it has been decreased.
*/
function _burn(address account, uint256 amount) internal virtual override {
super._burn(account, amount);
_writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
}
/**
* @dev Move voting power when tokens are transferred.
*
* Emits a {DelegateVotesChanged} event.
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._afterTokenTransfer(from, to, amount);
_moveVotingPower(delegates(from), delegates(to), amount);
}
/**
* @dev Change delegation for `delegator` to `delegatee`.
*
* Emits events {DelegateChanged} and {DelegateVotesChanged}.
*/
function _delegate(address delegator, address delegatee) internal virtual {
address currentDelegate = delegates(delegator);
uint256 delegatorBalance = balanceOf(delegator);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveVotingPower(currentDelegate, delegatee, delegatorBalance);
}
function _moveVotingPower(
address src,
address dst,
uint256 amount
) private {
if (src != dst && amount > 0) {
if (src != address(0)) {
(uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
emit DelegateVotesChanged(src, oldWeight, newWeight);
}
if (dst != address(0)) {
(uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
emit DelegateVotesChanged(dst, oldWeight, newWeight);
}
}
}
function _writeCheckpoint(
Checkpoint[] storage ckpts,
function(uint256, uint256) view returns (uint256) op,
uint256 delta
) private returns (uint256 oldWeight, uint256 newWeight) {
uint256 pos = ckpts.length;
oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
newWeight = op(oldWeight, delta);
if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
} else {
ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
}
}
function _add(uint256 a, uint256 b) private pure returns (uint256) {
return a + b;
}
function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
return a - b;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ECDSA.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712 {
/* solhint-disable var-name-mixedcase */
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
uint256 private immutable _CACHED_CHAIN_ID;
bytes32 private immutable _HASHED_NAME;
bytes32 private immutable _HASHED_VERSION;
bytes32 private immutable _TYPE_HASH;
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
bytes32 typeHash = keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
);
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
_CACHED_CHAIN_ID = block.chainid;
_CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
_TYPE_HASH = typeHash;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (block.chainid == _CACHED_CHAIN_ID) {
return _CACHED_DOMAIN_SEPARATOR;
} else {
return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
}
}
function _buildDomainSeparator(
bytes32 typeHash,
bytes32 nameHash,
bytes32 versionHash
) private view returns (bytes32) {
return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a / b + (a % b == 0 ? 0 : 1);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits.
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128) {
require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
return int128(value);
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64) {
require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
return int64(value);
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32) {
require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
return int32(value);
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16) {
require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
return int16(value);
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits.
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8) {
require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
return int8(value);
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_130": {
"entryPoint": null,
"id": 130,
"parameterSlots": 0,
"returnSlots": 0
},
"@_1591": {
"entryPoint": null,
"id": 1591,
"parameterSlots": 1,
"returnSlots": 0
},
"@_2292": {
"entryPoint": null,
"id": 2292,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_240": {
"entryPoint": null,
"id": 240,
"parameterSlots": 2,
"returnSlots": 0
},
"@_2881": {
"entryPoint": null,
"id": 2881,
"parameterSlots": 0,
"returnSlots": 0
},
"@_add_1512": {
"entryPoint": 992,
"id": 1512,
"parameterSlots": 2,
"returnSlots": 1
},
"@_afterTokenTransfer_1294": {
"entryPoint": 1788,
"id": 1294,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_2941": {
"entryPoint": 1550,
"id": 2941,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_740": {
"entryPoint": null,
"id": 740,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_2920": {
"entryPoint": 1449,
"id": 2920,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_729": {
"entryPoint": null,
"id": 729,
"parameterSlots": 3,
"returnSlots": 0
},
"@_buildDomainSeparator_2341": {
"entryPoint": null,
"id": 2341,
"parameterSlots": 3,
"returnSlots": 1
},
"@_maxSupply_1209": {
"entryPoint": null,
"id": 1209,
"parameterSlots": 0,
"returnSlots": 1
},
"@_mint_1241": {
"entryPoint": 550,
"id": 1241,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_2959": {
"entryPoint": 523,
"id": 2959,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_601": {
"entryPoint": 733,
"id": 601,
"parameterSlots": 2,
"returnSlots": 0
},
"@_moveVotingPower_1404": {
"entryPoint": null,
"id": 1404,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_1769": {
"entryPoint": null,
"id": 1769,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_102": {
"entryPoint": 433,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@_subtract_1526": {
"entryPoint": 2155,
"id": 1526,
"parameterSlots": 2,
"returnSlots": 1
},
"@_writeCheckpoint_1498": {
"entryPoint": 1015,
"id": 1498,
"parameterSlots": 3,
"returnSlots": 2
},
"@decimals_270": {
"entryPoint": null,
"id": 270,
"parameterSlots": 0,
"returnSlots": 1
},
"@delegates_980": {
"entryPoint": null,
"id": 980,
"parameterSlots": 1,
"returnSlots": 1
},
"@paused_139": {
"entryPoint": null,
"id": 139,
"parameterSlots": 0,
"returnSlots": 1
},
"@toUint224_2474": {
"entryPoint": 1574,
"id": 2474,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUint32_2574": {
"entryPoint": 1685,
"id": 2574,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_280": {
"entryPoint": 986,
"id": 280,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2325,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 2352,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 2425,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 2616,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 2650,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 2676,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2737,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 2759,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5345:16",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:16",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "227:276:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "237:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "249:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:3:16",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "245:3:16"
},
"nodeType": "YulFunctionCall",
"src": "245:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "237:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "280:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "291:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "273:6:16"
},
"nodeType": "YulFunctionCall",
"src": "273:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "273:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "318:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "329:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "314:3:16"
},
"nodeType": "YulFunctionCall",
"src": "314:18:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "334:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "307:6:16"
},
"nodeType": "YulFunctionCall",
"src": "307:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "307:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "361:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "372:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "357:3:16"
},
"nodeType": "YulFunctionCall",
"src": "357:18:16"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "377:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "350:6:16"
},
"nodeType": "YulFunctionCall",
"src": "350:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "350:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "404:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "415:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "400:3:16"
},
"nodeType": "YulFunctionCall",
"src": "400:18:16"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "420:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "393:6:16"
},
"nodeType": "YulFunctionCall",
"src": "393:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "393:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "447:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "458:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "443:3:16"
},
"nodeType": "YulFunctionCall",
"src": "443:19:16"
},
{
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "468:6:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "484:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "489:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "480:3:16"
},
"nodeType": "YulFunctionCall",
"src": "480:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "493:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "476:3:16"
},
"nodeType": "YulFunctionCall",
"src": "476:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "464:3:16"
},
"nodeType": "YulFunctionCall",
"src": "464:32:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "436:6:16"
},
"nodeType": "YulFunctionCall",
"src": "436:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "436:61:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "164:9:16",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "175:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "183:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "191:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "199:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "207:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "218:4:16",
"type": ""
}
],
"src": "14:489:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "682:166:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "699:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "710:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "692:6:16"
},
"nodeType": "YulFunctionCall",
"src": "692:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "692:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "733:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "744:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "729:3:16"
},
"nodeType": "YulFunctionCall",
"src": "729:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:2:16",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "722:6:16"
},
"nodeType": "YulFunctionCall",
"src": "722:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "722:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "772:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "783:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "768:3:16"
},
"nodeType": "YulFunctionCall",
"src": "768:18:16"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "788:18:16",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "761:6:16"
},
"nodeType": "YulFunctionCall",
"src": "761:46:16"
},
"nodeType": "YulExpressionStatement",
"src": "761:46:16"
},
{
"nodeType": "YulAssignment",
"src": "816:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "828:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "839:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "824:3:16"
},
"nodeType": "YulFunctionCall",
"src": "824:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "816:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "659:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "673:4:16",
"type": ""
}
],
"src": "508:340:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1027:238:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1044:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1055:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1037:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1037:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "1037:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1078:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1089:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1074:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1074:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1094:2:16",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1067:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1067:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "1067:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1117:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1128:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1113:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1113:18:16"
},
{
"hexValue": "4552433230566f7465733a20746f74616c20737570706c79207269736b73206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1133:34:16",
"type": "",
"value": "ERC20Votes: total supply risks o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1106:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1106:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "1106:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1188:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1199:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1184:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1184:18:16"
},
{
"hexValue": "766572666c6f77696e6720766f746573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1204:18:16",
"type": "",
"value": "verflowing votes"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1177:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1177:46:16"
},
"nodeType": "YulExpressionStatement",
"src": "1177:46:16"
},
{
"nodeType": "YulAssignment",
"src": "1232:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1244:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1255:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1240:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1240:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1232:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1004:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1018:4:16",
"type": ""
}
],
"src": "853:412:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1444:229:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1461:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1472:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1454:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1454:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "1454:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1495:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1506:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1491:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1491:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1511:2:16",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1484:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1484:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "1484:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1534:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1545:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1530:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1530:18:16"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1550:34:16",
"type": "",
"value": "SafeCast: value doesn't fit in 2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1523:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1523:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "1523:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1605:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1616:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1601:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1601:18:16"
},
{
"hexValue": "32342062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1621:9:16",
"type": "",
"value": "24 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1594:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1594:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "1594:37:16"
},
{
"nodeType": "YulAssignment",
"src": "1640:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1652:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1663:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1648:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1648:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1640:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1421:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1435:4:16",
"type": ""
}
],
"src": "1270:403:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1852:228:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1869:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1880:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1862:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1862:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "1862:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1903:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1899:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1899:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1919:2:16",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1892:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1892:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "1892:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1942:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1953:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1938:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1938:18:16"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1958:34:16",
"type": "",
"value": "SafeCast: value doesn't fit in 3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1931:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1931:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "1931:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2013:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2024:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2009:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2009:18:16"
},
{
"hexValue": "322062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2029:8:16",
"type": "",
"value": "2 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2002:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2002:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "2002:36:16"
},
{
"nodeType": "YulAssignment",
"src": "2047:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2059:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2055:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2055:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2047:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1829:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1843:4:16",
"type": ""
}
],
"src": "1678:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2259:181:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2276:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2269:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2269:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "2269:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2310:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2321:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2306:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2306:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2326:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2299:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2299:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "2299:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2349:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2360:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2345:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2345:18:16"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2365:33:16",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2338:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2338:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "2338:61:16"
},
{
"nodeType": "YulAssignment",
"src": "2408:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2420:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2431:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2416:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2416:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2408:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2236:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2250:4:16",
"type": ""
}
],
"src": "2085:355:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2546:76:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2556:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2568:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2564:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2564:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2556:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2598:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2609:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2591:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2591:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "2591:25:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2515:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2526:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2537:4:16",
"type": ""
}
],
"src": "2445:177:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2756:119:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2766:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2778:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2789:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2774:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2774:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2766:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2808:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2819:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2801:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2801:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "2801:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2846:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2857:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2842:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2842:18:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2862:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2835:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2835:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "2835:34:16"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2717:9:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2728:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2736:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2747:4:16",
"type": ""
}
],
"src": "2627:248:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2928:80:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2955:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2957:16:16"
},
"nodeType": "YulFunctionCall",
"src": "2957:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "2957:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2944:1:16"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2951:1:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2947:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2947:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2941:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2941:13:16"
},
"nodeType": "YulIf",
"src": "2938:39:16"
},
{
"nodeType": "YulAssignment",
"src": "2986:16:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2997:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3000:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2993:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2993:9:16"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2986:3:16"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2911:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2914:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2920:3:16",
"type": ""
}
],
"src": "2880:128:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3077:358:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3087:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3102:1:16",
"type": "",
"value": "1"
},
"variables": [
{
"name": "power_1",
"nodeType": "YulTypedName",
"src": "3091:7:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3112:16:16",
"value": {
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "3121:7:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3112:5:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3137:13:16",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "3145:5:16"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3137:4:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3201:228:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3246:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3248:16:16"
},
"nodeType": "YulFunctionCall",
"src": "3248:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "3248:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3221:4:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3235:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3231:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3231:6:16"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3239:4:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3227:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3227:17:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3218:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3218:27:16"
},
"nodeType": "YulIf",
"src": "3215:53:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3307:29:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:25:16",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3322:5:16"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3329:4:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3318:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3318:16:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3309:5:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3288:8:16"
},
{
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "3298:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3284:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3284:22:16"
},
"nodeType": "YulIf",
"src": "3281:55:16"
},
{
"nodeType": "YulAssignment",
"src": "3349:23:16",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3361:4:16"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3367:4:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3357:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3357:15:16"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3349:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3385:34:16",
"value": {
"arguments": [
{
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "3401:7:16"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3410:8:16"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3397:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3397:22:16"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3385:8:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3170:8:16"
},
{
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "3180:7:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3167:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3167:21:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3189:3:16",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "3163:3:16",
"statements": []
},
"src": "3159:270:16"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "3041:5:16",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3048:8:16",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3061:5:16",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3068:4:16",
"type": ""
}
],
"src": "3013:422:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3508:72:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3518:56:16",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3548:4:16"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3558:8:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3568:4:16",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3554:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3554:19:16"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3527:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3527:47:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3518:5:16"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3479:4:16",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3485:8:16",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3498:5:16",
"type": ""
}
],
"src": "3440:140:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:747:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3682:52:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3696:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3705:1:16",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3696:5:16"
}
]
},
{
"nodeType": "YulLeave",
"src": "3719:5:16"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3664:8:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3657:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3657:16:16"
},
"nodeType": "YulIf",
"src": "3654:80:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3767:52:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3781:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3790:1:16",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3781:5:16"
}
]
},
{
"nodeType": "YulLeave",
"src": "3804:5:16"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3753:4:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3746:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3746:12:16"
},
"nodeType": "YulIf",
"src": "3743:76:16"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3855:52:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3869:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3878:1:16",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3869:5:16"
}
]
},
{
"nodeType": "YulLeave",
"src": "3892:5:16"
}
]
},
"nodeType": "YulCase",
"src": "3848:59:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3853:1:16",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3923:123:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3958:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3960:16:16"
},
"nodeType": "YulFunctionCall",
"src": "3960:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "3960:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3943:8:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3953:3:16",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3940:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3940:17:16"
},
"nodeType": "YulIf",
"src": "3937:43:16"
},
{
"nodeType": "YulAssignment",
"src": "3993:25:16",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4006:8:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4016:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4002:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4002:16:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3993:5:16"
}
]
},
{
"nodeType": "YulLeave",
"src": "4031:5:16"
}
]
},
"nodeType": "YulCase",
"src": "3916:130:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3921:1:16",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3835:4:16"
},
"nodeType": "YulSwitch",
"src": "3828:218:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4144:70:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4158:28:16",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4171:4:16"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4177:8:16"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4167:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4167:19:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4158:5:16"
}
]
},
{
"nodeType": "YulLeave",
"src": "4199:5:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4068:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4074:2:16",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4065:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4065:12:16"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4082:8:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4092:2:16",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4079:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4079:16:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4061:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4061:35:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4105:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4111:3:16",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4102:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4102:13:16"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4120:8:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4130:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4117:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4117:16:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4098:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4098:36:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4058:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4058:77:16"
},
"nodeType": "YulIf",
"src": "4055:159:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4223:57:16",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4265:4:16"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4271:8:16"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "4246:18:16"
},
"nodeType": "YulFunctionCall",
"src": "4246:34:16"
},
"variables": [
{
"name": "power_1",
"nodeType": "YulTypedName",
"src": "4227:7:16",
"type": ""
},
{
"name": "base_1",
"nodeType": "YulTypedName",
"src": "4236:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4325:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4327:16:16"
},
"nodeType": "YulFunctionCall",
"src": "4327:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "4327:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "4295:7:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4312:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4308:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4308:6:16"
},
{
"name": "base_1",
"nodeType": "YulIdentifier",
"src": "4316:6:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4304:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4304:19:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4292:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4292:32:16"
},
"nodeType": "YulIf",
"src": "4289:58:16"
},
{
"nodeType": "YulAssignment",
"src": "4356:29:16",
"value": {
"arguments": [
{
"name": "power_1",
"nodeType": "YulIdentifier",
"src": "4369:7:16"
},
{
"name": "base_1",
"nodeType": "YulIdentifier",
"src": "4378:6:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4365:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4365:20:16"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4356:5:16"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3615:4:16",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3621:8:16",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3634:5:16",
"type": ""
}
],
"src": "3585:806:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4448:116:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4507:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4509:16:16"
},
"nodeType": "YulFunctionCall",
"src": "4509:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "4509:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4479:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4472:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4472:9:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4465:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4465:17:16"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4487:1:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4498:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4494:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4494:6:16"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4502:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4490:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4490:14:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4484:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4484:21:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4461:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4461:45:16"
},
"nodeType": "YulIf",
"src": "4458:71:16"
},
{
"nodeType": "YulAssignment",
"src": "4538:20:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4553:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4556:1:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4549:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4549:9:16"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4538:7:16"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4427:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4430:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4436:7:16",
"type": ""
}
],
"src": "4396:168:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4618:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4640:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4642:16:16"
},
"nodeType": "YulFunctionCall",
"src": "4642:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "4642:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4634:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4637:1:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4631:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4631:8:16"
},
"nodeType": "YulIf",
"src": "4628:34:16"
},
{
"nodeType": "YulAssignment",
"src": "4671:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4683:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4686:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4679:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4679:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "4671:4:16"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4600:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4603:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4609:4:16",
"type": ""
}
],
"src": "4569:125:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4754:325:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4764:22:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4778:1:16",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4781:4:16"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "4774:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4774:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4764:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4795:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4825:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4831:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4821:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4821:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4799:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4872:31:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4874:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4888:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4896:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4884:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4884:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4874:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4852:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4845:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4845:26:16"
},
"nodeType": "YulIf",
"src": "4842:61:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4962:111:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4983:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4990:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4995:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4986:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4986:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4976:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4976:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "4976:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5030:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5020:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5020:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5020:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5055:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5058:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5048:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5048:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5048:15:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4918:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4941:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4949:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4938:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4938:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4915:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4915:38:16"
},
"nodeType": "YulIf",
"src": "4912:161:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4734:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4743:6:16",
"type": ""
}
],
"src": "4699:380:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5116:95:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5133:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5140:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5145:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5136:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5136:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5126:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5126:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "5126:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5173:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5176:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5166:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5166:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5166:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5197:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5200:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5190:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5190:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5190:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5084:127:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5248:95:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5265:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5272:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5277:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5268:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5268:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5258:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5258:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "5258:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5305:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5308:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5298:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5298:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5298:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5329:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5332:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5322:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5322:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "5322:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "5216:127:16"
}
]
},
"contents": "{\n { }\n function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 160)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 16)\n mstore(add(headStart, 64), \"Pausable: paused\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 48)\n mstore(add(headStart, 64), \"ERC20Votes: total supply risks o\")\n mstore(add(headStart, 96), \"verflowing votes\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 39)\n mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n mstore(add(headStart, 96), \"24 bits\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 3\")\n mstore(add(headStart, 96), \"2 bits\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_exp_helper(_base, exponent) -> power, base\n {\n let power_1 := 1\n power := power_1\n base := _base\n for { } gt(exponent, power_1) { }\n {\n if gt(base, div(not(0), base)) { panic_error_0x11() }\n if and(exponent, power_1) { power := mul(power, base) }\n base := mul(base, base)\n exponent := shr(power_1, exponent)\n }\n }\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n {\n power := checked_exp_unsigned(base, and(exponent, 0xff))\n }\n function checked_exp_unsigned(base, exponent) -> power\n {\n if iszero(exponent)\n {\n power := 1\n leave\n }\n if iszero(base)\n {\n power := 0\n leave\n }\n switch base\n case 1 {\n power := 1\n leave\n }\n case 2 {\n if gt(exponent, 255) { panic_error_0x11() }\n power := shl(exponent, 1)\n leave\n }\n if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n {\n power := exp(base, exponent)\n leave\n }\n let power_1, base_1 := checked_exp_helper(base, exponent)\n if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n power := mul(power_1, base_1)\n }\n function checked_mul_t_uint256(x, y) -> product\n {\n if and(iszero(iszero(x)), gt(y, div(not(0), x))) { panic_error_0x11() }\n product := mul(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n}",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b50604051806040016040528060098152602001680a09e98b2a48a9ab2b60bb1b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060098152602001680a09e98b2a48a9ab2b60bb1b815250604051806040016040528060038152602001620a0a4b60eb1b8152508160039080519060200190620000cb92919062000879565b508051620000e190600490602084019062000879565b50506005805460ff1916905550620000f933620001b1565b815160209283012081519183019190912060c082815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8189018190528183019790975260608101959095526080808601939093523085830152805180860390920182529390920190925280519301929092209091526101005250620001ab33620001966012600a62000979565b620001a590620f424062000a38565b6200020b565b62000add565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200022282826200022660201b62000da01760201c565b5050565b6200023d8282620002dd60201b62000e301760201c565b6001600160e01b0362000251620003da8216565b1115620002be5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084015b60405180910390fd5b620002d7600962000f27620003e060201b1783620003f7565b50505050565b6001600160a01b038216620003355760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002b5565b6200034360008383620005a9565b806002600082825462000357919062000915565b90915550506001600160a01b038216600090815260208190526040812080548392906200038690849062000915565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000222600083836200060e565b60025490565b6000620003ee828462000915565b90505b92915050565b8254600090819080156200044957856200041360018362000a5a565b8154811062000426576200042662000ac7565b60009182526020909120015464010000000090046001600160e01b03166200044c565b60005b6001600160e01b031692506200046383858760201c565b9150600081118015620004a7575043866200048060018462000a5a565b8154811062000493576200049362000ac7565b60009182526020909120015463ffffffff16145b156200051b57620004c3826200062660201b62000f331760201c565b86620004d160018462000a5a565b81548110620004e457620004e462000ac7565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550620005a0565b8560405180604001604052806200053d436200069560201b62000fa01760201c565b63ffffffff1681526020016200055e856200062660201b62000f331760201c565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60055460ff1615620005f15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620002b5565b620006098383836200060960201b620007f11760201c565b505050565b62000609838383620006fc60201b620010051760201c565b60006001600160e01b03821115620006915760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401620002b5565b5090565b600063ffffffff821115620006915760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401620002b5565b620007148383836200060960201b620007f11760201c565b6001600160a01b038381166000908152600760205260408082205485841683529120546200060992918216911683818314801590620007535750600081115b1562000609576001600160a01b03831615620007e0576001600160a01b0383166000908152600860209081526040822082916200079d91906200086b901b620010371785620003f7565b91509150846001600160a01b031660008051602062002d738339815191528383604051620007d5929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161562000609576001600160a01b038216600090815260086020908152604082208291620008249190620003e0901b62000f271785620003f7565b91509150836001600160a01b031660008051602062002d7383398151915283836040516200085c929190918252602082015260400190565b60405180910390a25050505050565b6000620003ee828462000a5a565b828054620008879062000a74565b90600052602060002090601f016020900481019282620008ab5760008555620008f6565b82601f10620008c657805160ff1916838001178555620008f6565b82800160010185558215620008f6579182015b82811115620008f6578251825591602001919060010190620008d9565b50620006919291505b80821115620006915760008155600101620008ff565b600082198211156200092b576200092b62000ab1565b500190565b600181815b808511156200097157816000190482111562000955576200095562000ab1565b808516156200096357918102915b93841c939080029062000935565b509250929050565b6000620003ee60ff8416836000826200099557506001620003f1565b81620009a457506000620003f1565b8160018114620009bd5760028114620009c857620009e8565b6001915050620003f1565b60ff841115620009dc57620009dc62000ab1565b50506001821b620003f1565b5060208310610133831016604e8410600b841016171562000a0d575081810a620003f1565b62000a19838362000930565b806000190482111562000a305762000a3062000ab1565b029392505050565b600081600019048311821515161562000a555762000a5562000ab1565b500290565b60008282101562000a6f5762000a6f62000ab1565b500390565b600181811c9082168062000a8957607f821691505b6020821081141562000aab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60805160a05160c05160e051610100516101205161224662000b2d6000396000610b6e0152600061139c015260006113eb015260006113c60152600061134a0152600061137301526122466000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a6116101045780639ab24eb0116100a2578063d505accf11610071578063d505accf14610405578063dd62ed3e14610418578063f1127ed814610451578063f2fde38b1461048e57600080fd5b80639ab24eb0146103b9578063a457c2d7146103cc578063a9059cbb146103df578063c3cda520146103f257600080fd5b80638456cb59116100de5780638456cb59146103805780638da5cb5b146103885780638e539e8c1461039e57806395d89b41146103b157600080fd5b8063715018a61461035257806379cc67901461035a5780637ecebe001461036d57600080fd5b80633a46b1a81161017c5780635c19a95c1161014b5780635c19a95c146102e35780635c975abb146102f65780636fcfff451461030157806370a082311461032957600080fd5b80633a46b1a81461026f5780633f4ba83a1461028257806342966c681461028c578063587cde1e1461029f57600080fd5b806323b872dd116101b857806323b872dd14610232578063313ce567146102455780633644e51514610254578063395093511461025c57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806318160ddd14610220575b600080fd5b6101e76104a1565b6040516101f491906120be565b60405180910390f35b61021061020b366004611fe3565b610533565b60405190151581526020016101f4565b6002545b6040519081526020016101f4565b610210610240366004611f3d565b610549565b604051601281526020016101f4565b6102246105f8565b61021061026a366004611fe3565b610607565b61022461027d366004611fe3565b610643565b61028a6106bd565b005b61028a61029a3660046120a5565b6106f7565b6102cb6102ad366004611eef565b6001600160a01b039081166000908152600760205260409020541690565b6040516001600160a01b0390911681526020016101f4565b61028a6102f1366004611eef565b610704565b60055460ff16610210565b61031461030f366004611eef565b61070e565b60405163ffffffff90911681526020016101f4565b610224610337366004611eef565b6001600160a01b031660009081526020819052604090205490565b61028a610736565b61028a610368366004611fe3565b610770565b61022461037b366004611eef565b6107f6565b61028a610814565b60055461010090046001600160a01b03166102cb565b6102246103ac3660046120a5565b61084c565b6101e76108a8565b6102246103c7366004611eef565b6108b7565b6102106103da366004611fe3565b61093e565b6102106103ed366004611fe3565b6109d7565b61028a61040036600461200d565b6109e4565b61028a610413366004611f79565b610b1a565b610224610426366004611f0a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61046461045f366004612065565b610c7e565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016101f4565b61028a61049c366004611eef565b610d02565b6060600380546104b090612199565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90612199565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000610540338484611043565b50600192915050565b6000610556848484611167565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105e05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105ed8533858403611043565b506001949350505050565b6000610602611346565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054091859061063e908690612148565b611043565b60004382106106945760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105d7565b6001600160a01b03831660009081526008602052604090206106b69083611439565b9392505050565b6005546001600160a01b036101009091041633146106ed5760405162461bcd60e51b81526004016105d790612113565b6106f56114f6565b565b6107013382611589565b50565b6107013382611593565b6001600160a01b03811660009081526008602052604081205461073090610fa0565b92915050565b6005546001600160a01b036101009091041633146107665760405162461bcd60e51b81526004016105d790612113565b6106f5600061160c565b600061077c8333610426565b9050818110156107da5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105d7565b6107e78333848403611043565b6107f18383611589565b505050565b6001600160a01b038116600090815260066020526040812054610730565b6005546001600160a01b036101009091041633146108445760405162461bcd60e51b81526004016105d790612113565b6106f5611666565b600043821061089d5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105d7565b610730600983611439565b6060600480546104b090612199565b6001600160a01b038116600090815260086020526040812054801561092b576001600160a01b03831660009081526008602052604090206108f9600183612182565b81548110610909576109096121fa565b60009182526020909120015464010000000090046001600160e01b031661092e565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d7565b6109cd3385858403611043565b5060019392505050565b6000610540338484611167565b83421115610a345760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016105d7565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610aae90610aa69060a001604051602081830303815290604052805190602001206116e1565b85858561172f565b9050610ab981611757565b8614610b075760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016105d7565b610b118188611593565b50505050505050565b83421115610b6a5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016105d7565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610b998c611757565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610bf4826116e1565b90506000610c048287878761172f565b9050896001600160a01b0316816001600160a01b031614610c675760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016105d7565b610c728a8a8a611043565b50505050505050505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600860205260409020805463ffffffff8416908110610cc257610cc26121fa565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6005546001600160a01b03610100909104163314610d325760405162461bcd60e51b81526004016105d790612113565b6001600160a01b038116610d975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b6107018161160c565b610daa8282610e30565b6002546001600160e01b031015610e1c5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016105d7565b610e2a6009610f278361177f565b50505050565b6001600160a01b038216610e865760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b610e92600083836118f8565b8060026000828254610ea49190612148565b90915550506001600160a01b03821660009081526020819052604081208054839290610ed1908490612148565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610f236000838361193e565b5050565b60006106b68284612148565b60006001600160e01b03821115610f9c5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016105d7565b5090565b600063ffffffff821115610f9c5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016105d7565b6001600160a01b038381166000908152600760205260408082205485841683529120546107f192918216911683611949565b60006106b68284612182565b6001600160a01b0383166110a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b0382166111065760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b03821661122d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6112388383836118f8565b6001600160a01b038316600090815260208190526040902054818110156112b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112e7908490612148565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133391815260200190565b60405180910390a3610e2a84848461193e565b60007f000000000000000000000000000000000000000000000000000000000000000046141561139557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b8181101561149d5760006114548284611a86565b905084868281548110611469576114696121fa565b60009182526020909120015463ffffffff16111561148957809250611497565b611494816001612148565b91505b50611440565b81156114e157846114af600184612182565b815481106114bf576114bf6121fa565b60009182526020909120015464010000000090046001600160e01b03166114e4565b60005b6001600160e01b031695945050505050565b60055460ff1661153f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105d7565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f238282611aa1565b6001600160a01b038281166000818152600760208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610e2a828483611949565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156116ac5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d7565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861156c3390565b60006107306116ee611346565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061174087878787611ab9565b9150915061174d81611ba6565b5095945050505050565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b8254600090819080156117ca5785611798600183612182565b815481106117a8576117a86121fa565b60009182526020909120015464010000000090046001600160e01b03166117cd565b60005b6001600160e01b031692506117e683858763ffffffff16565b915060008111801561182457504386611800600184612182565b81548110611810576118106121fa565b60009182526020909120015463ffffffff16145b156118845761183282610f33565b8661183e600184612182565b8154811061184e5761184e6121fa565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b031602179055506118ef565b85604051806040016040528061189943610fa0565b63ffffffff1681526020016118ad85610f33565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60055460ff16156107f15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d7565b6107f1838383611005565b816001600160a01b0316836001600160a01b03161415801561196b5750600081115b156107f1576001600160a01b038316156119f9576001600160a01b038316600090815260086020526040812081906119a6906110378561177f565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516119ee929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156107f1576001600160a01b03821660009081526008602052604081208190611a2f90610f278561177f565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611a77929190918252602082015260400190565b60405180910390a25050505050565b6000611a956002848418612160565b6106b690848416612148565b611aab8282611d61565b610e2a60096110378361177f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611af05750600090506003611b9d565b8460ff16601b14158015611b0857508460ff16601c14155b15611b195750600090506004611b9d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b6d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b9657600060019250925050611b9d565b9150600090505b94509492505050565b6000816004811115611bba57611bba6121e4565b1415611bc35750565b6001816004811115611bd757611bd76121e4565b1415611c255760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105d7565b6002816004811115611c3957611c396121e4565b1415611c875760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105d7565b6003816004811115611c9b57611c9b6121e4565b1415611cf45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105d7565b6004816004811115611d0857611d086121e4565b14156107015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105d7565b6001600160a01b038216611dc15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b611dcd826000836118f8565b6001600160a01b03821660009081526020819052604090205481811015611e415760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e70908490612182565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36107f18360008461193e565b80356001600160a01b0381168114611ed957600080fd5b919050565b803560ff81168114611ed957600080fd5b600060208284031215611f0157600080fd5b6106b682611ec2565b60008060408385031215611f1d57600080fd5b611f2683611ec2565b9150611f3460208401611ec2565b90509250929050565b600080600060608486031215611f5257600080fd5b611f5b84611ec2565b9250611f6960208501611ec2565b9150604084013590509250925092565b600080600080600080600060e0888a031215611f9457600080fd5b611f9d88611ec2565b9650611fab60208901611ec2565b95506040880135945060608801359350611fc760808901611ede565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215611ff657600080fd5b611fff83611ec2565b946020939093013593505050565b60008060008060008060c0878903121561202657600080fd5b61202f87611ec2565b9550602087013594506040870135935061204b60608801611ede565b92506080870135915060a087013590509295509295509295565b6000806040838503121561207857600080fd5b61208183611ec2565b9150602083013563ffffffff8116811461209a57600080fd5b809150509250929050565b6000602082840312156120b757600080fd5b5035919050565b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b818111156120fd576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561215b5761215b6121ce565b500190565b60008261217d57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612194576121946121ce565b500390565b600181811c908216806121ad57607f821691505b6020821081141561177957634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d8649fe86927be52b8cbb9e697ca1b524e8c467ed8cac19222ce66551a9bc91c64736f6c63430008070033dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724",
"opcodes": "PUSH2 0x140 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH9 0xA09E98B2A48A9AB2B PUSH1 0xBB SHL DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH9 0xA09E98B2A48A9AB2B PUSH1 0xBB SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xA0A4B PUSH1 0xEB SHL DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xCB SWAP3 SWAP2 SWAP1 PUSH3 0x879 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xE1 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x879 JUMP JUMPDEST POP POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE POP PUSH3 0xF9 CALLER PUSH3 0x1B1 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x20 SWAP3 DUP4 ADD KECCAK256 DUP2 MLOAD SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 KECCAK256 PUSH1 0xC0 DUP3 DUP2 MSTORE PUSH1 0xE0 DUP3 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP10 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD SWAP8 SWAP1 SWAP8 MSTORE PUSH1 0x60 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x80 DUP1 DUP7 ADD SWAP4 SWAP1 SWAP4 MSTORE ADDRESS DUP6 DUP4 ADD MSTORE DUP1 MLOAD DUP1 DUP7 SUB SWAP1 SWAP3 ADD DUP3 MSTORE SWAP4 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP4 ADD SWAP3 SWAP1 SWAP3 KECCAK256 SWAP1 SWAP2 MSTORE PUSH2 0x100 MSTORE POP PUSH3 0x1AB CALLER PUSH3 0x196 PUSH1 0x12 PUSH1 0xA PUSH3 0x979 JUMP JUMPDEST PUSH3 0x1A5 SWAP1 PUSH3 0xF4240 PUSH3 0xA38 JUMP JUMPDEST PUSH3 0x20B JUMP JUMPDEST PUSH3 0xADD JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH2 0x100 DUP2 DUP2 MUL PUSH2 0x100 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT DUP6 AND OR SWAP1 SWAP5 SSTORE PUSH1 0x40 MLOAD SWAP4 SWAP1 SWAP3 DIV AND SWAP2 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x222 DUP3 DUP3 PUSH3 0x226 PUSH1 0x20 SHL PUSH3 0xDA0 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x23D DUP3 DUP3 PUSH3 0x2DD PUSH1 0x20 SHL PUSH3 0xE30 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH3 0x251 PUSH3 0x3DA DUP3 AND JUMP JUMPDEST GT ISZERO PUSH3 0x2BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x30 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20746F74616C20737570706C79207269736B73206F PUSH1 0x44 DUP3 ADD MSTORE PUSH16 0x766572666C6F77696E6720766F746573 PUSH1 0x80 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x2D7 PUSH1 0x9 PUSH3 0xF27 PUSH3 0x3E0 PUSH1 0x20 SHL OR DUP4 PUSH3 0x3F7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x335 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x2B5 JUMP JUMPDEST PUSH3 0x343 PUSH1 0x0 DUP4 DUP4 PUSH3 0x5A9 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x357 SWAP2 SWAP1 PUSH3 0x915 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH3 0x386 SWAP1 DUP5 SWAP1 PUSH3 0x915 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x222 PUSH1 0x0 DUP4 DUP4 PUSH3 0x60E JUMP JUMPDEST PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3EE DUP3 DUP5 PUSH3 0x915 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP1 ISZERO PUSH3 0x449 JUMPI DUP6 PUSH3 0x413 PUSH1 0x1 DUP4 PUSH3 0xA5A JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x426 JUMPI PUSH3 0x426 PUSH3 0xAC7 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH3 0x44C JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP3 POP PUSH3 0x463 DUP4 DUP6 DUP8 PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH3 0x4A7 JUMPI POP NUMBER DUP7 PUSH3 0x480 PUSH1 0x1 DUP5 PUSH3 0xA5A JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x493 JUMPI PUSH3 0x493 PUSH3 0xAC7 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH4 0xFFFFFFFF AND EQ JUMPDEST ISZERO PUSH3 0x51B JUMPI PUSH3 0x4C3 DUP3 PUSH3 0x626 PUSH1 0x20 SHL PUSH3 0xF33 OR PUSH1 0x20 SHR JUMP JUMPDEST DUP7 PUSH3 0x4D1 PUSH1 0x1 DUP5 PUSH3 0xA5A JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x4E4 JUMPI PUSH3 0x4E4 PUSH3 0xAC7 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH3 0x5A0 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH3 0x53D NUMBER PUSH3 0x695 PUSH1 0x20 SHL PUSH3 0xFA0 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x55E DUP6 PUSH3 0x626 PUSH1 0x20 SHL PUSH3 0xF33 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE DUP3 SLOAD PUSH1 0x1 DUP2 ADD DUP5 SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 SWAP1 KECCAK256 DUP4 MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD SWAP1 SWAP2 AND PUSH5 0x100000000 MUL PUSH4 0xFFFFFFFF SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH3 0x5F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x2B5 JUMP JUMPDEST PUSH3 0x609 DUP4 DUP4 DUP4 PUSH3 0x609 PUSH1 0x20 SHL PUSH3 0x7F1 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x609 DUP4 DUP4 DUP4 PUSH3 0x6FC PUSH1 0x20 SHL PUSH3 0x1005 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP3 GT ISZERO PUSH3 0x691 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x32342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x2B5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH3 0x691 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2033 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x322062697473 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x2B5 JUMP JUMPDEST PUSH3 0x714 DUP4 DUP4 DUP4 PUSH3 0x609 PUSH1 0x20 SHL PUSH3 0x7F1 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP6 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD PUSH3 0x609 SWAP3 SWAP2 DUP3 AND SWAP2 AND DUP4 DUP2 DUP4 EQ DUP1 ISZERO SWAP1 PUSH3 0x753 JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH3 0x609 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH3 0x7E0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP3 KECCAK256 DUP3 SWAP2 PUSH3 0x79D SWAP2 SWAP1 PUSH3 0x86B SWAP1 SHL PUSH3 0x1037 OR DUP6 PUSH3 0x3F7 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2D73 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP4 DUP4 PUSH1 0x40 MLOAD PUSH3 0x7D5 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH3 0x609 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP3 KECCAK256 DUP3 SWAP2 PUSH3 0x824 SWAP2 SWAP1 PUSH3 0x3E0 SWAP1 SHL PUSH3 0xF27 OR DUP6 PUSH3 0x3F7 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2D73 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP4 DUP4 PUSH1 0x40 MLOAD PUSH3 0x85C SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3EE DUP3 DUP5 PUSH3 0xA5A JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x887 SWAP1 PUSH3 0xA74 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x8AB JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x8F6 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x8C6 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x8F6 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x8F6 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x8F6 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x8D9 JUMP JUMPDEST POP PUSH3 0x691 SWAP3 SWAP2 POP JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x691 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x8FF JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH3 0x92B JUMPI PUSH3 0x92B PUSH3 0xAB1 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH3 0x971 JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH3 0x955 JUMPI PUSH3 0x955 PUSH3 0xAB1 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH3 0x963 JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH3 0x935 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3EE PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH3 0x995 JUMPI POP PUSH1 0x1 PUSH3 0x3F1 JUMP JUMPDEST DUP2 PUSH3 0x9A4 JUMPI POP PUSH1 0x0 PUSH3 0x3F1 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x9BD JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x9C8 JUMPI PUSH3 0x9E8 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x3F1 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x9DC JUMPI PUSH3 0x9DC PUSH3 0xAB1 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH3 0x3F1 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0xA0D JUMPI POP DUP2 DUP2 EXP PUSH3 0x3F1 JUMP JUMPDEST PUSH3 0xA19 DUP4 DUP4 PUSH3 0x930 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH3 0xA30 JUMPI PUSH3 0xA30 PUSH3 0xAB1 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0xA55 JUMPI PUSH3 0xA55 PUSH3 0xAB1 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH3 0xA6F JUMPI PUSH3 0xA6F PUSH3 0xAB1 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0xA89 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xAAB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x2246 PUSH3 0xB2D PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xB6E ADD MSTORE PUSH1 0x0 PUSH2 0x139C ADD MSTORE PUSH1 0x0 PUSH2 0x13EB ADD MSTORE PUSH1 0x0 PUSH2 0x13C6 ADD MSTORE PUSH1 0x0 PUSH2 0x134A ADD MSTORE PUSH1 0x0 PUSH2 0x1373 ADD MSTORE PUSH2 0x2246 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0x9AB24EB0 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x405 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x451 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x48E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x3B9 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3DF JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x3F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8456CB59 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x352 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x36D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3A46B1A8 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2F6 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x29F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x232 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x25C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1FD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x220 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x4A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x20BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x210 PUSH2 0x20B CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x240 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F3D JUMP JUMPDEST PUSH2 0x549 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x5F8 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x607 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x27D CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x643 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x6BD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x20A5 JUMP JUMPDEST PUSH2 0x6F7 JUMP JUMPDEST PUSH2 0x2CB PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x2F1 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x704 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x210 JUMP JUMPDEST PUSH2 0x314 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x70E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x736 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x7F6 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x814 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2CB JUMP JUMPDEST PUSH2 0x224 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x20A5 JUMP JUMPDEST PUSH2 0x84C JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x8A8 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x3C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x8B7 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x3DA CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x93E JUMP JUMPDEST PUSH2 0x210 PUSH2 0x3ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x9D7 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x400 CALLDATASIZE PUSH1 0x4 PUSH2 0x200D JUMP JUMPDEST PUSH2 0x9E4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x413 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F79 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH2 0x224 PUSH2 0x426 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x464 PUSH2 0x45F CALLDATASIZE PUSH1 0x4 PUSH2 0x2065 JUMP JUMPDEST PUSH2 0xC7E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x49C CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0xD02 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4B0 SWAP1 PUSH2 0x2199 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 0x4DC SWAP1 PUSH2 0x2199 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x529 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4FE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x529 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x50C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x540 CALLER DUP5 DUP5 PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x556 DUP5 DUP5 DUP5 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x5E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x6C6C6F77616E6365 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5ED DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x1346 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x540 SWAP2 DUP6 SWAP1 PUSH2 0x63E SWAP1 DUP7 SWAP1 PUSH2 0x2148 JUMP JUMPDEST PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0x694 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20626C6F636B206E6F7420796574206D696E656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x6B6 SWAP1 DUP4 PUSH2 0x1439 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x6ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH2 0x14F6 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x701 CALLER DUP3 PUSH2 0x1589 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x701 CALLER DUP3 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x730 SWAP1 PUSH2 0xFA0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x766 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH1 0x0 PUSH2 0x160C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP4 CALLER PUSH2 0x426 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x7DA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x616E6365 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x7E7 DUP4 CALLER DUP5 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST PUSH2 0x7F1 DUP4 DUP4 PUSH2 0x1589 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x730 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x844 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH2 0x1666 JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0x89D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20626C6F636B206E6F7420796574206D696E656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x730 PUSH1 0x9 DUP4 PUSH2 0x1439 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4B0 SWAP1 PUSH2 0x2199 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x92B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x8F9 PUSH1 0x1 DUP4 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x909 JUMPI PUSH2 0x909 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x92E JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x9CD CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x540 CALLER DUP5 DUP5 PUSH2 0x1167 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xA34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A207369676E61747572652065787069726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xAAE SWAP1 PUSH2 0xAA6 SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH2 0x16E1 JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x172F JUMP JUMPDEST SWAP1 POP PUSH2 0xAB9 DUP2 PUSH2 0x1757 JUMP JUMPDEST DUP7 EQ PUSH2 0xB07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20696E76616C6964206E6F6E636500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xB11 DUP2 DUP9 PUSH2 0x1593 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xB6A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0xB99 DUP13 PUSH2 0x1757 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xBF4 DUP3 PUSH2 0x16E1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC04 DUP3 DUP8 DUP8 DUP8 PUSH2 0x172F JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xC72 DUP11 DUP11 DUP11 PUSH2 0x1043 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 LT PUSH2 0xCC2 JUMPI PUSH2 0xCC2 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0xD32 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD97 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x701 DUP2 PUSH2 0x160C JUMP JUMPDEST PUSH2 0xDAA DUP3 DUP3 PUSH2 0xE30 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB LT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x30 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20746F74616C20737570706C79207269736B73206F PUSH1 0x44 DUP3 ADD MSTORE PUSH16 0x766572666C6F77696E6720766F746573 PUSH1 0x80 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xE2A PUSH1 0x9 PUSH2 0xF27 DUP4 PUSH2 0x177F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xE86 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xE92 PUSH1 0x0 DUP4 DUP4 PUSH2 0x18F8 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xEA4 SWAP2 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xED1 SWAP1 DUP5 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xF23 PUSH1 0x0 DUP4 DUP4 PUSH2 0x193E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6B6 DUP3 DUP5 PUSH2 0x2148 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP3 GT ISZERO PUSH2 0xF9C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x32342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0xF9C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2033 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x322062697473 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP6 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD PUSH2 0x7F1 SWAP3 SWAP2 DUP3 AND SWAP2 AND DUP4 PUSH2 0x1949 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6B6 DUP3 DUP5 PUSH2 0x2182 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x10A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1106 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x11CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x122D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x1238 DUP4 DUP4 DUP4 PUSH2 0x18F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x12B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x12E7 SWAP1 DUP5 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1333 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE2A DUP5 DUP5 DUP5 PUSH2 0x193E JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1395 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x0 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x149D JUMPI PUSH1 0x0 PUSH2 0x1454 DUP3 DUP5 PUSH2 0x1A86 JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1469 JUMPI PUSH2 0x1469 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1489 JUMPI DUP1 SWAP3 POP PUSH2 0x1497 JUMP JUMPDEST PUSH2 0x1494 DUP2 PUSH1 0x1 PUSH2 0x2148 JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1440 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x14E1 JUMPI DUP5 PUSH2 0x14AF PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x14BF JUMPI PUSH2 0x14BF PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x14E4 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x153F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x14185D5CD8589B194E881B9BDD081C185D5CD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0xF23 DUP3 DUP3 PUSH2 0x1AA1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD DUP6 DUP5 MSTORE DUP3 DUP7 KECCAK256 SLOAD SWAP5 SWAP1 SWAP4 MSTORE DUP8 DUP8 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP5 AND DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP2 SWAP1 SWAP6 AND SWAP5 SWAP2 SWAP4 SWAP2 SWAP3 DUP6 SWAP3 SWAP2 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP2 SWAP1 LOG4 PUSH2 0xE2A DUP3 DUP5 DUP4 PUSH2 0x1949 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH2 0x100 DUP2 DUP2 MUL PUSH2 0x100 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT DUP6 AND OR SWAP1 SWAP5 SSTORE PUSH1 0x40 MLOAD SWAP4 SWAP1 SWAP3 DIV AND SWAP2 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x16AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x156C CALLER SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x730 PUSH2 0x16EE PUSH2 0x1346 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1740 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1AB9 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x174D DUP2 PUSH2 0x1BA6 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP1 ISZERO PUSH2 0x17CA JUMPI DUP6 PUSH2 0x1798 PUSH1 0x1 DUP4 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x17A8 JUMPI PUSH2 0x17A8 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x17CD JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP3 POP PUSH2 0x17E6 DUP4 DUP6 DUP8 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x1824 JUMPI POP NUMBER DUP7 PUSH2 0x1800 PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1810 JUMPI PUSH2 0x1810 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH4 0xFFFFFFFF AND EQ JUMPDEST ISZERO PUSH2 0x1884 JUMPI PUSH2 0x1832 DUP3 PUSH2 0xF33 JUMP JUMPDEST DUP7 PUSH2 0x183E PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x184E JUMPI PUSH2 0x184E PUSH2 0x21FA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x18EF JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x1899 NUMBER PUSH2 0xFA0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x18AD DUP6 PUSH2 0xF33 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE DUP3 SLOAD PUSH1 0x1 DUP2 ADD DUP5 SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 SWAP1 KECCAK256 DUP4 MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD SWAP1 SWAP2 AND PUSH5 0x100000000 MUL PUSH4 0xFFFFFFFF SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x7F1 DUP4 DUP4 DUP4 PUSH2 0x1005 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 ISZERO PUSH2 0x196B JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x19F9 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP2 SWAP1 PUSH2 0x19A6 SWAP1 PUSH2 0x1037 DUP6 PUSH2 0x177F JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x19EE SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP2 SWAP1 PUSH2 0x1A2F SWAP1 PUSH2 0xF27 DUP6 PUSH2 0x177F JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A77 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A95 PUSH1 0x2 DUP5 DUP5 XOR PUSH2 0x2160 JUMP JUMPDEST PUSH2 0x6B6 SWAP1 DUP5 DUP5 AND PUSH2 0x2148 JUMP JUMPDEST PUSH2 0x1AAB DUP3 DUP3 PUSH2 0x1D61 JUMP JUMPDEST PUSH2 0xE2A PUSH1 0x9 PUSH2 0x1037 DUP4 PUSH2 0x177F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1AF0 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1B9D JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1B08 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1B19 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1B9D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1B96 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1B9D JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1BBA JUMPI PUSH2 0x1BBA PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1BC3 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1BD7 JUMPI PUSH2 0x1BD7 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1C25 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1C39 JUMPI PUSH2 0x1C39 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1C87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1C9B JUMPI PUSH2 0x1C9B PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1CF4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1D08 JUMPI PUSH2 0x1D08 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x701 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DC1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x1DCD DUP3 PUSH1 0x0 DUP4 PUSH2 0x18F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1E41 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1E70 SWAP1 DUP5 SWAP1 PUSH2 0x2182 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x7F1 DUP4 PUSH1 0x0 DUP5 PUSH2 0x193E JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1ED9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1ED9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F01 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B6 DUP3 PUSH2 0x1EC2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F26 DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F34 PUSH1 0x20 DUP5 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1F52 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F5B DUP5 PUSH2 0x1EC2 JUMP JUMPDEST SWAP3 POP PUSH2 0x1F69 PUSH1 0x20 DUP6 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1F94 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F9D DUP9 PUSH2 0x1EC2 JUMP JUMPDEST SWAP7 POP PUSH2 0x1FAB PUSH1 0x20 DUP10 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1FC7 PUSH1 0x80 DUP10 ADD PUSH2 0x1EDE JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1FF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1FFF DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x2026 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x202F DUP8 PUSH2 0x1EC2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x204B PUSH1 0x60 DUP9 ADD PUSH2 0x1EDE JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2078 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2081 DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x209A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x20EB JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x20CF JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x20FD JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x215B JUMPI PUSH2 0x215B PUSH2 0x21CE JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x217D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2194 JUMPI PUSH2 0x2194 PUSH2 0x21CE JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x21AD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1779 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 PUSH5 0x9FE86927BE MSTORE 0xB8 0xCB 0xB9 0xE6 SWAP8 0xCA SHL MSTORE 0x4E DUP13 CHAINID PUSH31 0xD8CAC19222CE66551A9BC91C64736F6C63430008070033DEC2BACDD2F05B59 0xDE CALLVALUE 0xDA SWAP12 MSTORE RETURNDATASIZE SELFDESTRUCT DUP12 0xE4 0x2E 0x5E CODESIZE 0xE8 XOR 0xC8 0x2F 0xDB SIGNEXTEND 0xAE PUSH24 0x4387A7240000000000000000000000000000000000000000 ",
"sourceMap": "485:1119:15:-:0;;;1049:95:7;996:148;;578:127:15;;;;;;;;;;1376:52:7;;;;;;;;;;;;;-1:-1:-1;;;1376:52:7;;;1415:4;2340:564:12;;;;;;;;;;;;;-1:-1:-1;;;2340:564:12;;;1906:113:2;;;;;;;;;;;;;-1:-1:-1;;;1906:113:2;;;;;;;;;;;;;;;;-1:-1:-1;;;1906:113:2;;;1980:5;1972;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1995:17:2;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;924:7:1;:15;;-1:-1:-1;;924:15:1;;;-1:-1:-1;867:23:0;666:10:9;867:9:0;:23::i;:::-;2426:22:12;;;;;;;2482:25;;;;;;;;;2663;;;;2698:31;;;;2758:13;2739:32;;;;-1:-1:-1;3447:73:12;;2536:117;3447:73;;;273:25:16;;;314:18;;;307:34;;;;357:18;;;350:34;;;;400:18;;;;393:34;;;;3514:4:12;443:19:16;;;436:61;3447:73:12;;;;;;;;;;245:19:16;;;;3447:73:12;;;3437:84;;;;;;;;2781:85;;;2876:21;;-1:-1:-1;653:45:15::2;659:10;681:16;3103:2:2::0;681::15::2;:16;:::i;:::-;671:26;::::0;:7:::2;:26;:::i;:::-;653:5;:45::i;:::-;485:1119:::0;;2041:169:0;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;2115:6;2131:17;;;-1:-1:-1;;;;;;2131:17:0;;;;;;2163:40;;2115:6;;;;;;;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;1306:140:15:-;1416:23;1428:2;1432:6;1416:11;;;;;:23;;:::i;:::-;1306:140;;:::o;6698:285:5:-;6782:28;6794:7;6803:6;6782:11;;;;;:28;;:::i;:::-;-1:-1:-1;;;;;6828:13:5;:11;:13;;:::i;:::-;:29;;6820:90;;;;-1:-1:-1;;;6820:90:5;;1055:2:16;6820:90:5;;;1037:21:16;1094:2;1074:18;;;1067:30;1133:34;1113:18;;;1106:62;-1:-1:-1;;;1184:18:16;;;1177:46;1240:19;;6820:90:5;;;;;;;;;6921:55;6938:23;6963:4;;;;;6969:6;6921:16;:55::i;:::-;;;6698:285;;:::o;8254:389:2:-;-1:-1:-1;;;;;8337:21:2;;8329:65;;;;-1:-1:-1;;;8329:65:2;;2287:2:16;8329:65:2;;;2269:21:16;2326:2;2306:18;;;2299:30;2365:33;2345:18;;;2338:61;2416:18;;8329:65:2;2085:355:16;8329:65:2;8405:49;8434:1;8438:7;8447:6;8405:20;:49::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:2;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:2;;2591:25:16;;;-1:-1:-1;;;;;8540:37:2;;;8557:1;;8540:37;;2579:2:16;2564:18;8540:37:2;;;;;;;8588:48;8616:1;8620:7;8629:6;8588:19;:48::i;3172:106::-;3259:12;;;3172:106::o;9462:96:5:-;9520:7;9546:5;9550:1;9546;:5;:::i;:::-;9539:12;;9462:96;;;;;:::o;8825:631::-;9057:12;;8995:17;;;;9091:8;;:35;;9106:5;9112:7;9118:1;9112:3;:7;:::i;:::-;9106:14;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;-1:-1:-1;;;;;9106:20:5;9091:35;;;9102:1;9091:35;-1:-1:-1;;;;;9079:47:5;;;9148:20;9151:9;9162:5;9148:2;:20;;:::i;:::-;9136:32;;9189:1;9183:3;:7;:51;;;;-1:-1:-1;9222:12:5;9194:5;9200:7;9206:1;9200:3;:7;:::i;:::-;9194:14;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;:40;9183:51;9179:271;;;9273:29;9292:9;9273:18;;;;;:29;;:::i;:::-;9250:5;9256:7;9262:1;9256:3;:7;:::i;:::-;9250:14;;;;;;;;:::i;:::-;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;9250:52:5;;;;;-1:-1:-1;;;;;9250:52:5;;;;;;9179:271;;;9333:5;9344:94;;;;;;;;9367:31;9385:12;9367:17;;;;;:31;;:::i;:::-;9344:94;;;;;;9407:29;9426:9;9407:18;;;;;:29;;:::i;:::-;-1:-1:-1;;;;;9344:94:5;;;;;;9333:106;;;;;;;-1:-1:-1;9333:106:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9179:271;9033:423;8825:631;;;;;;:::o;845:193:15:-;1111:7:1;;;;1354:9;1346:38;;;;-1:-1:-1;;;1346:38:1;;710:2:16;1346:38:1;;;692:21:16;749:2;729:18;;;722:30;-1:-1:-1;;;768:18:16;;;761:46;824:18;;1346:38:1;508:340:16;1346:38:1;987:44:15::1;1014:4;1020:2;1024:6;987:26;;;;;:44;;:::i;:::-;845:193:::0;;;:::o;1112:188::-;1250:43;1276:4;1282:2;1286:6;1250:25;;;;;:43;;:::i;1076:192:14:-;1133:7;-1:-1:-1;;;;;1160:26:14;;;1152:78;;;;-1:-1:-1;;;1152:78:14;;1472:2:16;1152:78:14;;;1454:21:16;1511:2;1491:18;;;1484:30;1550:34;1530:18;;;1523:62;-1:-1:-1;;;1601:18:16;;;1594:37;1648:19;;1152:78:14;1270:403:16;1152:78:14;-1:-1:-1;1255:5:14;1076:192::o;2986:187::-;3042:6;3077:16;3068:25;;;3060:76;;;;-1:-1:-1;;;3060:76:14;;1880:2:16;3060:76:14;;;1862:21:16;1919:2;1899:18;;;1892:30;1958:34;1938:18;;;1931:62;-1:-1:-1;;;2009:18:16;;;2002:36;2055:19;;3060:76:14;1678:402:16;7395:254:5;7532:43;7558:4;7564:2;7568:6;7532:25;;;;;:43;;:::i;:::-;-1:-1:-1;;;;;2766:19:5;;;2740:7;2766:19;;;:10;:19;;;;;;;;;;;;;;;7586:56;;2766:19;;;;;7635:6;8312:10;;;;;;:24;;;8335:1;8326:6;:10;8312:24;8308:505;;;-1:-1:-1;;;;;8356:17:5;;;8352:221;;-1:-1:-1;;;;;8451:17:5;;8394;8451;;;:12;:17;;;;;;;8394;;8434:54;;8451:17;8470:9;;;;;8481:6;8434:16;:54::i;:::-;8393:95;;;;8532:3;-1:-1:-1;;;;;8511:47:5;-1:-1:-1;;;;;;;;;;;8537:9:5;8548;8511:47;;;;;;2801:25:16;;;2857:2;2842:18;;2835:34;2789:2;2774:18;;2627:248;8511:47:5;;;;;;;;8375:198;;8352:221;-1:-1:-1;;;;;8591:17:5;;;8587:216;;-1:-1:-1;;;;;8686:17:5;;8629;8686;;;:12;:17;;;;;;;8629;;8669:49;;8686:17;8705:4;;;;;8711:6;8669:16;:49::i;:::-;8628:90;;;;8762:3;-1:-1:-1;;;;;8741:47:5;-1:-1:-1;;;;;;;;;;;8767:9:5;8778;8741:47;;;;;;2801:25:16;;;2857:2;2842:18;;2835:34;2789:2;2774:18;;2627:248;8741:47:5;;;;;;;;8610:193;;8192:627;;;:::o;9564:101::-;9627:7;9653:5;9657:1;9653;:5;:::i;485:1119:15:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;485:1119:15;;;-1:-1:-1;485:1119:15;;;;;;;;;;;;;;2880:128:16;2920:3;2951:1;2947:6;2944:1;2941:13;2938:39;;;2957:18;;:::i;:::-;-1:-1:-1;2993:9:16;;2880:128::o;3013:422::-;3102:1;3145:5;3102:1;3159:270;3180:7;3170:8;3167:21;3159:270;;;3239:4;3235:1;3231:6;3227:17;3221:4;3218:27;3215:53;;;3248:18;;:::i;:::-;3298:7;3288:8;3284:22;3281:55;;;3318:16;;;;3281:55;3397:22;;;;3357:15;;;;3159:270;;;3163:3;3013:422;;;;;:::o;3440:140::-;3498:5;3527:47;3568:4;3558:8;3554:19;3548:4;3634:5;3664:8;3654:80;;-1:-1:-1;3705:1:16;3719:5;;3654:80;3753:4;3743:76;;-1:-1:-1;3790:1:16;3804:5;;3743:76;3835:4;3853:1;3848:59;;;;3921:1;3916:130;;;;3828:218;;3848:59;3878:1;3869:10;;3892:5;;;3916:130;3953:3;3943:8;3940:17;3937:43;;;3960:18;;:::i;:::-;-1:-1:-1;;4016:1:16;4002:16;;4031:5;;3828:218;;4130:2;4120:8;4117:16;4111:3;4105:4;4102:13;4098:36;4092:2;4082:8;4079:16;4074:2;4068:4;4065:12;4061:35;4058:77;4055:159;;;-1:-1:-1;4167:19:16;;;4199:5;;4055:159;4246:34;4271:8;4265:4;4246:34;:::i;:::-;4316:6;4312:1;4308:6;4304:19;4295:7;4292:32;4289:58;;;4327:18;;:::i;:::-;4365:20;;3585:806;-1:-1:-1;;;3585:806:16:o;4396:168::-;4436:7;4502:1;4498;4494:6;4490:14;4487:1;4484:21;4479:1;4472:9;4465:17;4461:45;4458:71;;;4509:18;;:::i;:::-;-1:-1:-1;4549:9:16;;4396:168::o;4569:125::-;4609:4;4637:1;4634;4631:8;4628:34;;;4642:18;;:::i;:::-;-1:-1:-1;4679:9:16;;4569:125::o;4699:380::-;4778:1;4774:12;;;;4821;;;4842:61;;4896:4;4888:6;4884:17;4874:27;;4842:61;4949:2;4941:6;4938:14;4918:18;4915:38;4912:161;;;4995:10;4990:3;4986:20;4983:1;4976:31;5030:4;5027:1;5020:15;5058:4;5055:1;5048:15;4912:161;;4699:380;;;:::o;5084:127::-;5145:10;5140:3;5136:20;5133:1;5126:31;5176:4;5173:1;5166:15;5200:4;5197:1;5190:15;5216:127;5277:10;5272:3;5268:20;5265:1;5258:31;5308:4;5305:1;5298:15;5332:4;5329:1;5322:15;5216:127;485:1119:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DOMAIN_SEPARATOR_1691": {
"entryPoint": 1528,
"id": 1691,
"parameterSlots": 0,
"returnSlots": 1
},
"@_add_1512": {
"entryPoint": 3879,
"id": 1512,
"parameterSlots": 2,
"returnSlots": 1
},
"@_afterTokenTransfer_1294": {
"entryPoint": 4101,
"id": 1294,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_2941": {
"entryPoint": 6462,
"id": 2941,
"parameterSlots": 3,
"returnSlots": 0
},
"@_afterTokenTransfer_740": {
"entryPoint": null,
"id": 740,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_718": {
"entryPoint": 4163,
"id": 718,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_2920": {
"entryPoint": 6392,
"id": 2920,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_729": {
"entryPoint": null,
"id": 729,
"parameterSlots": 3,
"returnSlots": 0
},
"@_buildDomainSeparator_2341": {
"entryPoint": null,
"id": 2341,
"parameterSlots": 3,
"returnSlots": 1
},
"@_burn_1264": {
"entryPoint": 6817,
"id": 1264,
"parameterSlots": 2,
"returnSlots": 0
},
"@_burn_2977": {
"entryPoint": 5513,
"id": 2977,
"parameterSlots": 2,
"returnSlots": 0
},
"@_burn_673": {
"entryPoint": 7521,
"id": 673,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkpointsLookup_1124": {
"entryPoint": 5177,
"id": 1124,
"parameterSlots": 2,
"returnSlots": 1
},
"@_delegate_1333": {
"entryPoint": 5523,
"id": 1333,
"parameterSlots": 2,
"returnSlots": 0
},
"@_domainSeparatorV4_2314": {
"entryPoint": 4934,
"id": 2314,
"parameterSlots": 0,
"returnSlots": 1
},
"@_hashTypedDataV4_2357": {
"entryPoint": 5857,
"id": 2357,
"parameterSlots": 1,
"returnSlots": 1
},
"@_maxSupply_1209": {
"entryPoint": null,
"id": 1209,
"parameterSlots": 0,
"returnSlots": 1
},
"@_mint_1241": {
"entryPoint": 3488,
"id": 1241,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_601": {
"entryPoint": 3632,
"id": 601,
"parameterSlots": 2,
"returnSlots": 0
},
"@_moveVotingPower_1404": {
"entryPoint": 6473,
"id": 1404,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_1769": {
"entryPoint": null,
"id": 1769,
"parameterSlots": 0,
"returnSlots": 1
},
"@_pause_178": {
"entryPoint": 5734,
"id": 178,
"parameterSlots": 0,
"returnSlots": 0
},
"@_setOwner_102": {
"entryPoint": 5644,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@_subtract_1526": {
"entryPoint": 4151,
"id": 1526,
"parameterSlots": 2,
"returnSlots": 1
},
"@_throwError_1916": {
"entryPoint": 7078,
"id": 1916,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_545": {
"entryPoint": 4455,
"id": 545,
"parameterSlots": 3,
"returnSlots": 0
},
"@_unpause_194": {
"entryPoint": 5366,
"id": 194,
"parameterSlots": 0,
"returnSlots": 0
},
"@_useNonce_1720": {
"entryPoint": 5975,
"id": 1720,
"parameterSlots": 1,
"returnSlots": 1
},
"@_writeCheckpoint_1498": {
"entryPoint": 6015,
"id": 1498,
"parameterSlots": 3,
"returnSlots": 2
},
"@allowance_333": {
"entryPoint": null,
"id": 333,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_354": {
"entryPoint": 1331,
"id": 354,
"parameterSlots": 2,
"returnSlots": 1
},
"@average_2420": {
"entryPoint": 6790,
"id": 2420,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_294": {
"entryPoint": null,
"id": 294,
"parameterSlots": 1,
"returnSlots": 1
},
"@burnFrom_880": {
"entryPoint": 1904,
"id": 880,
"parameterSlots": 2,
"returnSlots": 0
},
"@burn_841": {
"entryPoint": 1783,
"id": 841,
"parameterSlots": 1,
"returnSlots": 0
},
"@checkpoints_950": {
"entryPoint": 3198,
"id": 950,
"parameterSlots": 2,
"returnSlots": 1
},
"@current_1797": {
"entryPoint": null,
"id": 1797,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_270": {
"entryPoint": null,
"id": 270,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_468": {
"entryPoint": 2366,
"id": 468,
"parameterSlots": 2,
"returnSlots": 1
},
"@delegateBySig_1196": {
"entryPoint": 2532,
"id": 1196,
"parameterSlots": 6,
"returnSlots": 0
},
"@delegate_1137": {
"entryPoint": 1796,
"id": 1137,
"parameterSlots": 1,
"returnSlots": 0
},
"@delegates_980": {
"entryPoint": null,
"id": 980,
"parameterSlots": 1,
"returnSlots": 1
},
"@getPastTotalSupply_1058": {
"entryPoint": 2124,
"id": 1058,
"parameterSlots": 1,
"returnSlots": 1
},
"@getPastVotes_1036": {
"entryPoint": 1603,
"id": 1036,
"parameterSlots": 2,
"returnSlots": 1
},
"@getVotes_1010": {
"entryPoint": 2231,
"id": 1010,
"parameterSlots": 1,
"returnSlots": 1
},
"@increaseAllowance_429": {
"entryPoint": 1543,
"id": 429,
"parameterSlots": 2,
"returnSlots": 1
},
"@increment_1811": {
"entryPoint": null,
"id": 1811,
"parameterSlots": 1,
"returnSlots": 0
},
"@name_250": {
"entryPoint": 1185,
"id": 250,
"parameterSlots": 0,
"returnSlots": 1
},
"@nonces_1680": {
"entryPoint": 2038,
"id": 1680,
"parameterSlots": 1,
"returnSlots": 1
},
"@numCheckpoints_967": {
"entryPoint": 1806,
"id": 967,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": null,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_2890": {
"entryPoint": 2068,
"id": 2890,
"parameterSlots": 0,
"returnSlots": 0
},
"@paused_139": {
"entryPoint": null,
"id": 139,
"parameterSlots": 0,
"returnSlots": 1
},
"@permit_1664": {
"entryPoint": 2842,
"id": 1664,
"parameterSlots": 7,
"returnSlots": 0
},
"@recover_2182": {
"entryPoint": 5935,
"id": 2182,
"parameterSlots": 4,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 1846,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_260": {
"entryPoint": 2216,
"id": 260,
"parameterSlots": 0,
"returnSlots": 1
},
"@toTypedDataHash_2219": {
"entryPoint": null,
"id": 2219,
"parameterSlots": 2,
"returnSlots": 1
},
"@toUint224_2474": {
"entryPoint": 3891,
"id": 2474,
"parameterSlots": 1,
"returnSlots": 1
},
"@toUint32_2574": {
"entryPoint": 4000,
"id": 2574,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_280": {
"entryPoint": null,
"id": 280,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_402": {
"entryPoint": 1353,
"id": 402,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_83": {
"entryPoint": 3330,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_315": {
"entryPoint": 2519,
"id": 315,
"parameterSlots": 2,
"returnSlots": 1
},
"@tryRecover_2149": {
"entryPoint": 6841,
"id": 2149,
"parameterSlots": 4,
"returnSlots": 2
},
"@unpause_2899": {
"entryPoint": 1725,
"id": 2899,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 7874,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7946,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 7997,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
"entryPoint": 8057,
"id": null,
"parameterSlots": 2,
"returnSlots": 7
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 8163,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
"entryPoint": 8205,
"id": null,
"parameterSlots": 2,
"returnSlots": 6
},
"abi_decode_tuple_t_addresst_uint32": {
"entryPoint": 8293,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8357,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_uint8": {
"entryPoint": 7902,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 7,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8382,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8467,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_Checkpoint_$895_memory_ptr__to_t_struct$_Checkpoint_$895_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8520,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 8544,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8578,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 8601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8654,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x21": {
"entryPoint": 8676,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8698,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:19429:16",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:16",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "63:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "73:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "82:12:16"
},
"nodeType": "YulFunctionCall",
"src": "82:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "165:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "174:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "177:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "167:6:16"
},
"nodeType": "YulFunctionCall",
"src": "167:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "167:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "124:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "135:5:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "150:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "155:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "146:3:16"
},
"nodeType": "YulFunctionCall",
"src": "146:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "159:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "142:3:16"
},
"nodeType": "YulFunctionCall",
"src": "142:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "131:3:16"
},
"nodeType": "YulFunctionCall",
"src": "131:31:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "121:2:16"
},
"nodeType": "YulFunctionCall",
"src": "121:42:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "114:6:16"
},
"nodeType": "YulFunctionCall",
"src": "114:50:16"
},
"nodeType": "YulIf",
"src": "111:70:16"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "42:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:16",
"type": ""
}
],
"src": "14:173:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "239:109:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "249:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "271:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "258:12:16"
},
"nodeType": "YulFunctionCall",
"src": "258:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "249:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "335:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "328:6:16"
},
"nodeType": "YulFunctionCall",
"src": "328:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "328:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "300:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "311:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "318:4:16",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "307:3:16"
},
"nodeType": "YulFunctionCall",
"src": "307:16:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "297:2:16"
},
"nodeType": "YulFunctionCall",
"src": "297:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "290:6:16"
},
"nodeType": "YulFunctionCall",
"src": "290:35:16"
},
"nodeType": "YulIf",
"src": "287:55:16"
}
]
},
"name": "abi_decode_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "218:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "229:5:16",
"type": ""
}
],
"src": "192:156:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:116:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "469:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "481:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "471:6:16"
},
"nodeType": "YulFunctionCall",
"src": "471:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "471:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "444:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "453:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "440:3:16"
},
"nodeType": "YulFunctionCall",
"src": "440:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "465:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "436:3:16"
},
"nodeType": "YulFunctionCall",
"src": "436:32:16"
},
"nodeType": "YulIf",
"src": "433:52:16"
},
{
"nodeType": "YulAssignment",
"src": "494:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "523:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "504:18:16"
},
"nodeType": "YulFunctionCall",
"src": "504:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "494:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "389:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "400:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "412:6:16",
"type": ""
}
],
"src": "353:186:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "631:173:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "677:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "686:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "679:6:16"
},
"nodeType": "YulFunctionCall",
"src": "679:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "679:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "652:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "661:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "648:3:16"
},
"nodeType": "YulFunctionCall",
"src": "648:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "673:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "644:3:16"
},
"nodeType": "YulFunctionCall",
"src": "644:32:16"
},
"nodeType": "YulIf",
"src": "641:52:16"
},
{
"nodeType": "YulAssignment",
"src": "702:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "712:18:16"
},
"nodeType": "YulFunctionCall",
"src": "712:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "702:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "750:48:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "783:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "794:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "779:3:16"
},
"nodeType": "YulFunctionCall",
"src": "779:18:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "760:18:16"
},
"nodeType": "YulFunctionCall",
"src": "760:38:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "750:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "589:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "600:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "612:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "620:6:16",
"type": ""
}
],
"src": "544:260:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "913:224:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "959:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "971:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "961:6:16"
},
"nodeType": "YulFunctionCall",
"src": "961:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "961:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "934:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "943:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "930:3:16"
},
"nodeType": "YulFunctionCall",
"src": "930:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "955:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "926:3:16"
},
"nodeType": "YulFunctionCall",
"src": "926:32:16"
},
"nodeType": "YulIf",
"src": "923:52:16"
},
{
"nodeType": "YulAssignment",
"src": "984:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1013:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "994:18:16"
},
"nodeType": "YulFunctionCall",
"src": "994:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "984:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1032:48:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1065:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1076:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1061:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1061:18:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1042:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1042:38:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1032:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1089:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1116:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1127:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1112:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1112:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1099:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1099:32:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1089:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "863:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "874:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "886:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "894:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "902:6:16",
"type": ""
}
],
"src": "809:328:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1312:436:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1359:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1368:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1371:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1361:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1361:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "1361:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1333:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1342:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1329:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1329:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1354:3:16",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1325:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1325:33:16"
},
"nodeType": "YulIf",
"src": "1322:53:16"
},
{
"nodeType": "YulAssignment",
"src": "1384:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1413:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1394:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1394:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1384:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1432:48:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1465:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1476:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1461:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1461:18:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1442:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1442:38:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1432:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1489:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1516:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1527:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1512:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1512:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1499:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1499:32:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1489:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1540:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1567:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1578:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1563:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1563:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1550:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1550:32:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1540:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1591:47:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1622:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1633:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1618:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1618:19:16"
}
],
"functionName": {
"name": "abi_decode_uint8",
"nodeType": "YulIdentifier",
"src": "1601:16:16"
},
"nodeType": "YulFunctionCall",
"src": "1601:37:16"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1591:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1647:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1674:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1685:3:16",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1670:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1670:19:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1657:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1657:33:16"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "1647:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1699:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1726:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1737:3:16",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1722:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1722:19:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1709:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1709:33:16"
},
"variableNames": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "1699:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1230:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1241:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1253:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1261:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1269:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1277:6:16",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1285:6:16",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "1293:6:16",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "1301:6:16",
"type": ""
}
],
"src": "1142:606:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1840:167:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1886:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1898:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1888:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1888:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "1888:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1861:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1870:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1857:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1857:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1853:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1853:32:16"
},
"nodeType": "YulIf",
"src": "1850:52:16"
},
{
"nodeType": "YulAssignment",
"src": "1911:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1940:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1921:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1921:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1911:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1959:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1986:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1997:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1982:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1982:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1969:12:16"
},
"nodeType": "YulFunctionCall",
"src": "1969:32:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1959:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1798:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1809:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1821:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1829:6:16",
"type": ""
}
],
"src": "1753:254:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2165:378:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2212:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2221:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2224:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2214:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2214:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "2214:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2195:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2182:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2182:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2207:3:16",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2178:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2178:33:16"
},
"nodeType": "YulIf",
"src": "2175:53:16"
},
{
"nodeType": "YulAssignment",
"src": "2237:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2266:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2247:18:16"
},
"nodeType": "YulFunctionCall",
"src": "2247:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2237:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2285:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2312:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2323:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2308:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2308:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2295:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2295:32:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2285:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2336:42:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2363:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2374:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2359:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2359:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2346:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2346:32:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2336:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2387:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2418:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2429:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2414:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2414:18:16"
}
],
"functionName": {
"name": "abi_decode_uint8",
"nodeType": "YulIdentifier",
"src": "2397:16:16"
},
"nodeType": "YulFunctionCall",
"src": "2397:36:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2387:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2442:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2469:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2480:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2465:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2465:19:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2452:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2452:33:16"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2442:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2494:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2521:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2532:3:16",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2517:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2517:19:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2504:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2504:33:16"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "2494:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2091:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2102:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2114:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2122:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2130:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2138:6:16",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "2146:6:16",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "2154:6:16",
"type": ""
}
],
"src": "2012:531:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2634:264:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2680:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2689:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2692:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2682:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2682:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "2682:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2655:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2664:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2651:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2651:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2676:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2647:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2647:32:16"
},
"nodeType": "YulIf",
"src": "2644:52:16"
},
{
"nodeType": "YulAssignment",
"src": "2705:39:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2734:9:16"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2715:18:16"
},
"nodeType": "YulFunctionCall",
"src": "2715:29:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2705:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2753:45:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2783:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2794:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2779:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2779:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2766:12:16"
},
"nodeType": "YulFunctionCall",
"src": "2766:32:16"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2757:5:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2852:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2861:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2864:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2854:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2854:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "2854:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2820:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2831:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:10:16",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2827:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2827:22:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2817:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2817:33:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2810:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2810:41:16"
},
"nodeType": "YulIf",
"src": "2807:61:16"
},
{
"nodeType": "YulAssignment",
"src": "2877:15:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2887:5:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2877:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2592:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2603:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2615:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2623:6:16",
"type": ""
}
],
"src": "2548:350:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2973:110:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3019:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3031:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3021:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3021:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "3021:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2994:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3003:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2990:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2990:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3015:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2986:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2986:32:16"
},
"nodeType": "YulIf",
"src": "2983:52:16"
},
{
"nodeType": "YulAssignment",
"src": "3044:33:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3067:9:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3054:12:16"
},
"nodeType": "YulFunctionCall",
"src": "3054:23:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3044:6:16"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2939:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2950:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2962:6:16",
"type": ""
}
],
"src": "2903:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3336:144:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3353:3:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3362:3:16",
"type": "",
"value": "240"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3367:4:16",
"type": "",
"value": "6401"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3358:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3358:14:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3346:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3346:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "3346:27:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3393:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3398:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3389:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3389:11:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3402:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3382:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3382:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "3382:27:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3429:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3434:2:16",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3425:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3425:12:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3439:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3418:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3418:28:16"
},
"nodeType": "YulExpressionStatement",
"src": "3418:28:16"
},
{
"nodeType": "YulAssignment",
"src": "3455:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3466:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3471:2:16",
"type": "",
"value": "66"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3462:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3462:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3455:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3304:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3309:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3317:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3328:3:16",
"type": ""
}
],
"src": "3088:392:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3586:102:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3596:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3608:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3619:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3604:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3604:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3596:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3638:9:16"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3653:6:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3669:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3674:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3665:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3665:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3678:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3661:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3661:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3649:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3649:32:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3631:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3631:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "3631:51:16"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3555:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3566:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3577:4:16",
"type": ""
}
],
"src": "3485:203:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3788:92:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3798:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3810:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3821:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3806:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3806:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3798:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3840:9:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3865:6:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3858:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3858:14:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3851:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3851:22:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3833:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3833:41:16"
},
"nodeType": "YulExpressionStatement",
"src": "3833:41:16"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3757:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3768:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3779:4:16",
"type": ""
}
],
"src": "3693:187:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3986:76:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3996:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4008:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4019:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4004:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4004:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3996:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4038:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4049:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4031:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4031:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "4031:25:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3955:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3966:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3977:4:16",
"type": ""
}
],
"src": "3885:177:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4308:350:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4318:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4330:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4341:3:16",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4326:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4326:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4318:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4361:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4372:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4354:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4354:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "4354:25:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4388:29:16",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4406:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4411:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4402:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4402:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4415:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4398:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4398:19:16"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4392:2:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4437:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4448:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4433:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4433:18:16"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4457:6:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4465:2:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4453:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4453:15:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4426:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4426:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "4426:43:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4489:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4500:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4485:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4485:18:16"
},
{
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4509:6:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4517:2:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4505:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4505:15:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4478:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4478:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "4478:43:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4541:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4552:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4537:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4537:18:16"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4557:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4530:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4530:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "4530:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4584:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4595:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4580:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4580:19:16"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "4601:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4573:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4573:35:16"
},
"nodeType": "YulExpressionStatement",
"src": "4573:35:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4628:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4639:3:16",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4624:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4624:19:16"
},
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "4645:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4617:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4617:35:16"
},
"nodeType": "YulExpressionStatement",
"src": "4617:35:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4237:9:16",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "4248:6:16",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4256:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4264:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4272:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4280:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4288:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4299:4:16",
"type": ""
}
],
"src": "4067:591:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4848:232:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4858:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4870:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4881:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4866:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4866:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4858:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4901:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4912:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4894:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4894:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "4894:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4939:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4950:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4935:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4935:18:16"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4959:6:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4975:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4980:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4971:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4971:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4984:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4967:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4967:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4955:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4955:32:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4928:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4928:60:16"
},
"nodeType": "YulExpressionStatement",
"src": "4928:60:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5008:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5019:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5004:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5004:18:16"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5024:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4997:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4997:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "4997:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5051:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5062:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5047:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5047:18:16"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5067:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5040:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5040:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5040:34:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4793:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4804:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4812:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4820:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4828:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4839:4:16",
"type": ""
}
],
"src": "4663:417:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5298:276:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5308:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5320:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5331:3:16",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5316:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5316:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5308:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5351:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5362:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5344:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5344:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "5344:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5389:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5400:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5385:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5385:18:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5405:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5378:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5378:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5378:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5432:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5443:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5428:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5428:18:16"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5448:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5421:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5421:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5421:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5475:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5486:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5471:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5471:18:16"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5491:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5464:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5464:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5464:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5518:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5529:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5514:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5514:19:16"
},
{
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5539:6:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5555:3:16",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5560:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5551:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5551:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5564:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5547:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5547:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5535:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5535:32:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5507:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5507:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "5507:61:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5235:9:16",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "5246:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5254:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5262:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5270:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5278:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5289:4:16",
"type": ""
}
],
"src": "5085:489:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5760:217:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5770:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5782:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5793:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5778:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5778:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5770:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5813:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5824:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5806:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5806:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "5806:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5851:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5862:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5847:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5847:18:16"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5871:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5879:4:16",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5867:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5867:17:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5840:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5840:45:16"
},
"nodeType": "YulExpressionStatement",
"src": "5840:45:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5905:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5916:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5901:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5901:18:16"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5921:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5894:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5894:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5894:34:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5948:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5959:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5944:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5944:18:16"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5964:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5937:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5937:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "5937:34:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5705:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5716:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5724:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5732:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5740:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5751:4:16",
"type": ""
}
],
"src": "5579:398:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6103:476:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6113:12:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6123:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "6117:2:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6141:9:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6152:2:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6134:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6134:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "6134:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "6164:27:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6184:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6178:5:16"
},
"nodeType": "YulFunctionCall",
"src": "6178:13:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6168:6:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6211:9:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6222:2:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6207:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6207:18:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6227:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6200:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6200:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "6200:34:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "6243:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6252:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6247:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6312:90:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6341:9:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6352:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6337:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6337:17:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6333:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6333:26:16"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6375:6:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6383:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6371:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6371:14:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6387:2:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6367:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6367:23:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6361:5:16"
},
"nodeType": "YulFunctionCall",
"src": "6361:30:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6326:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6326:66:16"
},
"nodeType": "YulExpressionStatement",
"src": "6326:66:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6273:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6276:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6270:2:16"
},
"nodeType": "YulFunctionCall",
"src": "6270:13:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6284:19:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6286:15:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6295:1:16"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6298:2:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6291:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6291:10:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6286:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6266:3:16",
"statements": []
},
"src": "6262:140:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6436:66:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6465:9:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6476:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6461:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6461:22:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6485:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6457:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6457:31:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6490:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6450:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6450:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "6450:42:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6417:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6420:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6414:2:16"
},
"nodeType": "YulFunctionCall",
"src": "6414:13:16"
},
"nodeType": "YulIf",
"src": "6411:91:16"
},
{
"nodeType": "YulAssignment",
"src": "6511:62:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6527:9:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6546:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6554:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6542:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6542:15:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6563:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6559:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6559:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6538:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6538:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6523:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6523:45:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6570:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6519:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6519:54:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6511:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6072:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6083:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6094:4:16",
"type": ""
}
],
"src": "5982:597:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6758:174:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6775:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6786:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6768:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6768:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "6768:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6820:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6805:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6825:2:16",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6798:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6798:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "6798:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6848:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6859:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6844:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6844:18:16"
},
{
"hexValue": "45434453413a20696e76616c6964207369676e6174757265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6864:26:16",
"type": "",
"value": "ECDSA: invalid signature"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6837:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6837:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "6837:54:16"
},
{
"nodeType": "YulAssignment",
"src": "6900:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6912:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6923:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6908:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6908:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6900:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6735:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6749:4:16",
"type": ""
}
],
"src": "6584:348:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7111:225:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7128:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7139:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7121:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7121:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "7121:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7162:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7173:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7158:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7158:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7178:2:16",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7151:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7151:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "7151:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7201:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7212:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7197:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7197:18:16"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7217:34:16",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7190:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7190:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "7190:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7272:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7283:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7268:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7268:18:16"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7288:5:16",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7261:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7261:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "7261:33:16"
},
{
"nodeType": "YulAssignment",
"src": "7303:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7315:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7326:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7311:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7311:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7303:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7088:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7102:4:16",
"type": ""
}
],
"src": "6937:399:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7515:181:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7532:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7543:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7525:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7525:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "7525:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7566:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7577:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7562:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7562:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7582:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7555:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7555:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "7555:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7605:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7616:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7601:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7601:18:16"
},
{
"hexValue": "4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7621:33:16",
"type": "",
"value": "ERC20Votes: block not yet mined"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7594:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7594:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "7594:61:16"
},
{
"nodeType": "YulAssignment",
"src": "7664:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7676:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7687:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7672:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7672:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7664:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7492:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7506:4:16",
"type": ""
}
],
"src": "7341:355:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7875:170:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7892:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7903:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7885:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7885:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "7885:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7926:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7937:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7922:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7922:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7942:2:16",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7915:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7915:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "7915:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7965:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7976:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7961:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7961:18:16"
},
{
"hexValue": "5061757361626c653a206e6f7420706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7981:22:16",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7954:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7954:50:16"
},
"nodeType": "YulExpressionStatement",
"src": "7954:50:16"
},
{
"nodeType": "YulAssignment",
"src": "8013:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8025:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8036:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8021:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8021:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8013:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7852:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7866:4:16",
"type": ""
}
],
"src": "7701:344:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8224:179:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8241:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8252:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8234:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8234:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "8234:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8275:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8286:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8271:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8271:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8291:2:16",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8264:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8264:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "8264:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8314:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8325:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8310:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8310:18:16"
},
{
"hexValue": "4552433230566f7465733a207369676e61747572652065787069726564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8330:31:16",
"type": "",
"value": "ERC20Votes: signature expired"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8303:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8303:59:16"
},
"nodeType": "YulExpressionStatement",
"src": "8303:59:16"
},
{
"nodeType": "YulAssignment",
"src": "8371:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8383:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8394:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8379:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8379:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8371:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8201:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8215:4:16",
"type": ""
}
],
"src": "8050:353:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8582:224:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8599:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8610:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8592:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8592:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "8592:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8633:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8644:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8629:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8629:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8649:2:16",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8622:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8622:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "8622:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8672:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8683:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8668:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8668:18:16"
},
{
"hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8688:34:16",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8661:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8661:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "8661:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8743:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8754:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8739:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8739:18:16"
},
{
"hexValue": "6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8759:4:16",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8732:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8732:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "8732:32:16"
},
{
"nodeType": "YulAssignment",
"src": "8773:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8785:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8796:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8781:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8781:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8773:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8559:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8573:4:16",
"type": ""
}
],
"src": "8408:398:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8985:181:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9002:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9013:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8995:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8995:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "8995:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9036:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9047:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9032:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9032:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9052:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9025:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9025:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "9025:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9075:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9086:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9071:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9071:18:16"
},
{
"hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9091:33:16",
"type": "",
"value": "ECDSA: invalid signature length"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9064:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9064:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "9064:61:16"
},
{
"nodeType": "YulAssignment",
"src": "9134:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9146:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9157:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9142:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9142:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9134:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8962:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8976:4:16",
"type": ""
}
],
"src": "8811:355:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9345:175:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9362:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9373:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9355:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9355:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "9355:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9396:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9407:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9392:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9392:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9412:2:16",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9385:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9385:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "9385:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9435:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9446:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9431:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9431:18:16"
},
{
"hexValue": "4552433230566f7465733a20696e76616c6964206e6f6e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9451:27:16",
"type": "",
"value": "ERC20Votes: invalid nonce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9424:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9424:55:16"
},
"nodeType": "YulExpressionStatement",
"src": "9424:55:16"
},
{
"nodeType": "YulAssignment",
"src": "9488:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9500:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9511:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9496:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9496:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9488:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9322:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9336:4:16",
"type": ""
}
],
"src": "9171:349:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9699:228:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9716:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9727:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9709:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9709:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "9709:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9750:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9761:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9746:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9746:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9766:2:16",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9739:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9739:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "9739:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9789:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9800:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9785:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9785:18:16"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9805:34:16",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9778:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9778:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "9778:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9860:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9871:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9856:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9856:18:16"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9876:8:16",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9849:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9849:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "9849:36:16"
},
{
"nodeType": "YulAssignment",
"src": "9894:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9906:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9917:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9902:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9902:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9894:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9676:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9690:4:16",
"type": ""
}
],
"src": "9525:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10106:224:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10123:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10134:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10116:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10116:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "10116:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10157:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10168:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10153:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10153:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10173:2:16",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10146:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10146:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "10146:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10196:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10207:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10192:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10192:18:16"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10212:34:16",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10185:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10185:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "10185:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10267:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10278:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10263:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10263:18:16"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10283:4:16",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10256:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10256:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "10256:32:16"
},
{
"nodeType": "YulAssignment",
"src": "10297:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10309:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10320:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10305:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10305:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10297:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10083:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10097:4:16",
"type": ""
}
],
"src": "9932:398:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10509:179:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10526:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10537:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10519:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10519:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "10519:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10560:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10571:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10556:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10556:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10576:2:16",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10549:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10549:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "10549:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10599:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10610:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10595:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10595:18:16"
},
{
"hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10615:31:16",
"type": "",
"value": "ERC20Permit: expired deadline"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10588:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10588:59:16"
},
"nodeType": "YulExpressionStatement",
"src": "10588:59:16"
},
{
"nodeType": "YulAssignment",
"src": "10656:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10668:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10679:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10664:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10664:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10656:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10486:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10500:4:16",
"type": ""
}
],
"src": "10335:353:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10867:228:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10884:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10895:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10877:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10877:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "10877:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10918:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10929:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10914:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10914:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10934:2:16",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10907:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10907:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "10907:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10957:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10968:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10953:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10953:18:16"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10973:34:16",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10946:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10946:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "10946:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11028:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11039:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11024:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11024:18:16"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11044:8:16",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11017:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11017:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "11017:36:16"
},
{
"nodeType": "YulAssignment",
"src": "11062:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11074:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11085:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11070:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11070:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11062:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10844:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10858:4:16",
"type": ""
}
],
"src": "10693:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11274:224:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11291:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11302:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11284:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11284:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "11284:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11325:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11336:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11321:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11321:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11341:2:16",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11314:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11314:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "11314:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11364:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11375:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11360:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11360:18:16"
},
{
"hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11380:34:16",
"type": "",
"value": "ECDSA: invalid signature 's' val"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11353:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11353:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "11353:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11435:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11446:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11431:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11431:18:16"
},
{
"hexValue": "7565",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11451:4:16",
"type": "",
"value": "ue"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11424:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11424:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "11424:32:16"
},
{
"nodeType": "YulAssignment",
"src": "11465:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11477:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11488:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11473:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11473:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11465:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11251:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11265:4:16",
"type": ""
}
],
"src": "11100:398:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11677:166:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11694:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11705:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11687:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11687:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "11687:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11728:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11739:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11724:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11724:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11744:2:16",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11717:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11717:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "11717:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11767:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11778:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11763:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11763:18:16"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11783:18:16",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11756:6:16"
},
"nodeType": "YulFunctionCall",
"src": "11756:46:16"
},
"nodeType": "YulExpressionStatement",
"src": "11756:46:16"
},
{
"nodeType": "YulAssignment",
"src": "11811:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11823:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11834:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11819:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11819:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11811:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11654:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11668:4:16",
"type": ""
}
],
"src": "11503:340:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12022:224:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12039:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12050:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12032:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12032:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "12032:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12073:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12084:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12069:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12069:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12089:2:16",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12062:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12062:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "12062:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12112:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12123:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12108:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12108:18:16"
},
{
"hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12128:34:16",
"type": "",
"value": "ECDSA: invalid signature 'v' val"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12101:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12101:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "12101:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12183:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12194:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12179:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12179:18:16"
},
{
"hexValue": "7565",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12199:4:16",
"type": "",
"value": "ue"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12172:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12172:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "12172:32:16"
},
{
"nodeType": "YulAssignment",
"src": "12213:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12225:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12236:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12221:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12221:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12213:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11999:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12013:4:16",
"type": ""
}
],
"src": "11848:398:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12425:180:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12442:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12453:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12435:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12435:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "12435:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12476:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12487:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12472:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12472:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12492:2:16",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12465:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12465:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "12465:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12515:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12526:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12511:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12511:18:16"
},
{
"hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12531:32:16",
"type": "",
"value": "ERC20Permit: invalid signature"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12504:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12504:60:16"
},
"nodeType": "YulExpressionStatement",
"src": "12504:60:16"
},
{
"nodeType": "YulAssignment",
"src": "12573:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12585:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12596:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12581:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12581:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12573:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12402:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12416:4:16",
"type": ""
}
],
"src": "12251:354:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12784:230:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12801:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12812:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12794:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12794:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "12794:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12835:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12846:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12831:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12831:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12851:2:16",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12824:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12824:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "12824:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12874:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12885:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12870:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12870:18:16"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12890:34:16",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12863:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12863:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "12863:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12945:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12956:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12941:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12941:18:16"
},
{
"hexValue": "6c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12961:10:16",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12934:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12934:38:16"
},
"nodeType": "YulExpressionStatement",
"src": "12934:38:16"
},
{
"nodeType": "YulAssignment",
"src": "12981:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12993:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13004:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12989:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12989:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12981:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12761:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12775:4:16",
"type": ""
}
],
"src": "12610:404:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13193:238:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13210:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13221:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13203:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13203:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "13203:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13244:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13255:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13240:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13240:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13260:2:16",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13233:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13233:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "13233:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13283:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13294:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13279:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13279:18:16"
},
{
"hexValue": "4552433230566f7465733a20746f74616c20737570706c79207269736b73206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13299:34:16",
"type": "",
"value": "ERC20Votes: total supply risks o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13272:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13272:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "13272:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13354:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13365:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13350:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13350:18:16"
},
{
"hexValue": "766572666c6f77696e6720766f746573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13370:18:16",
"type": "",
"value": "verflowing votes"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13343:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13343:46:16"
},
"nodeType": "YulExpressionStatement",
"src": "13343:46:16"
},
{
"nodeType": "YulAssignment",
"src": "13398:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13410:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13421:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13406:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13406:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13398:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13170:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13184:4:16",
"type": ""
}
],
"src": "13019:412:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13610:182:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13627:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13638:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13620:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13620:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "13620:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13661:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13672:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13657:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13657:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13677:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13650:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13650:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "13650:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13700:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13711:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13696:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13696:18:16"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13716:34:16",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13689:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13689:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "13689:62:16"
},
{
"nodeType": "YulAssignment",
"src": "13760:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13772:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13783:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13768:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13768:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13760:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13587:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13601:4:16",
"type": ""
}
],
"src": "13436:356:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13971:229:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13988:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13999:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13981:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13981:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "13981:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14022:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14033:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14018:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14018:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14038:2:16",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14011:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14011:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "14011:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14061:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14072:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14057:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14057:18:16"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14077:34:16",
"type": "",
"value": "SafeCast: value doesn't fit in 2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14050:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14050:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "14050:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14132:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14143:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14128:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14128:18:16"
},
{
"hexValue": "32342062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14148:9:16",
"type": "",
"value": "24 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14121:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14121:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "14121:37:16"
},
{
"nodeType": "YulAssignment",
"src": "14167:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14179:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14190:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14175:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14175:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14167:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13948:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13962:4:16",
"type": ""
}
],
"src": "13797:403:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14379:226:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14396:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14407:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14389:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14389:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "14389:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14430:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14441:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14426:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14426:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14446:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14419:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14419:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "14419:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14469:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14480:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14465:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14465:18:16"
},
{
"hexValue": "45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14485:34:16",
"type": "",
"value": "ERC20: burn amount exceeds allow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14458:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14458:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "14458:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14540:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14551:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14536:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14536:18:16"
},
{
"hexValue": "616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14556:6:16",
"type": "",
"value": "ance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14529:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14529:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "14529:34:16"
},
{
"nodeType": "YulAssignment",
"src": "14572:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14584:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14595:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14580:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14580:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14572:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14356:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14370:4:16",
"type": ""
}
],
"src": "14205:400:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14784:223:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14801:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14812:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14794:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14794:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "14794:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14835:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14846:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14831:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14831:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14851:2:16",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14824:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14824:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "14824:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14874:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14885:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14870:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14870:18:16"
},
{
"hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14890:34:16",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14863:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14863:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "14863:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14945:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14956:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14941:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14941:18:16"
},
{
"hexValue": "73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14961:3:16",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14934:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14934:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "14934:31:16"
},
{
"nodeType": "YulAssignment",
"src": "14974:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14986:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14997:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14982:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14982:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14974:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14761:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14775:4:16",
"type": ""
}
],
"src": "14610:397:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15186:227:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15203:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15214:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15196:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15196:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "15196:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15237:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15248:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15233:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15233:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15253:2:16",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15226:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15226:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "15226:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15276:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15287:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15272:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15272:18:16"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15292:34:16",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15265:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15265:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "15265:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15347:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15358:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15343:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15343:18:16"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15363:7:16",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15336:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15336:35:16"
},
"nodeType": "YulExpressionStatement",
"src": "15336:35:16"
},
{
"nodeType": "YulAssignment",
"src": "15380:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15392:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15403:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15388:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15388:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15380:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15163:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15177:4:16",
"type": ""
}
],
"src": "15012:401:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15592:228:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15609:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15620:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15602:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15602:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "15602:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15643:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15654:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15639:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15639:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15659:2:16",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15632:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15632:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "15632:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15682:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15693:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15678:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15678:18:16"
},
{
"hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15698:34:16",
"type": "",
"value": "SafeCast: value doesn't fit in 3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15671:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15671:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "15671:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15753:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15764:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15749:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15749:18:16"
},
{
"hexValue": "322062697473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15769:8:16",
"type": "",
"value": "2 bits"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15742:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15742:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "15742:36:16"
},
{
"nodeType": "YulAssignment",
"src": "15787:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15799:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15810:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15795:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15795:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15787:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15569:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15583:4:16",
"type": ""
}
],
"src": "15418:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15999:226:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16016:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16027:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16009:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16009:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "16009:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16050:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16061:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16046:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16046:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16066:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16039:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16039:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "16039:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16089:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16100:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16085:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16085:18:16"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16105:34:16",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16078:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16078:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "16078:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16160:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16171:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16156:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16156:18:16"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16176:6:16",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16149:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16149:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "16149:34:16"
},
{
"nodeType": "YulAssignment",
"src": "16192:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16204:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16215:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16200:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16200:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16192:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15976:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15990:4:16",
"type": ""
}
],
"src": "15825:400:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16404:227:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16421:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16432:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16414:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16414:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "16414:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16455:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16466:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16451:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16451:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16471:2:16",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16444:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16444:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "16444:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16494:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16505:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16490:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16490:18:16"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16510:34:16",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16483:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16483:62:16"
},
"nodeType": "YulExpressionStatement",
"src": "16483:62:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16565:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16576:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16561:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16561:18:16"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16581:7:16",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16554:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16554:35:16"
},
"nodeType": "YulExpressionStatement",
"src": "16554:35:16"
},
{
"nodeType": "YulAssignment",
"src": "16598:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16610:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16621:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16606:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16606:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16598:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16381:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16395:4:16",
"type": ""
}
],
"src": "16230:401:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16810:181:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16827:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16838:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16820:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16820:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "16820:21:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16861:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16872:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16857:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16857:18:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16877:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16850:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16850:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "16850:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16900:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16911:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16896:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16896:18:16"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16916:33:16",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16889:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16889:61:16"
},
"nodeType": "YulExpressionStatement",
"src": "16889:61:16"
},
{
"nodeType": "YulAssignment",
"src": "16959:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16971:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16982:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16967:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16967:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16959:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16787:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16801:4:16",
"type": ""
}
],
"src": "16636:355:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17151:189:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17161:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17173:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17184:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17169:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17169:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17161:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17203:9:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17224:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "17218:5:16"
},
"nodeType": "YulFunctionCall",
"src": "17218:13:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17233:10:16",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17214:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17214:30:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17196:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17196:49:16"
},
"nodeType": "YulExpressionStatement",
"src": "17196:49:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17265:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17276:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17261:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17261:20:16"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17297:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17305:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17293:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17293:17:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "17287:5:16"
},
"nodeType": "YulFunctionCall",
"src": "17287:24:16"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17321:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17326:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17317:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17317:11:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17330:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17313:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17313:19:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17283:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17283:50:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17254:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17254:80:16"
},
"nodeType": "YulExpressionStatement",
"src": "17254:80:16"
}
]
},
"name": "abi_encode_tuple_t_struct$_Checkpoint_$895_memory_ptr__to_t_struct$_Checkpoint_$895_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17120:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17131:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17142:4:16",
"type": ""
}
],
"src": "16996:344:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17446:76:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17456:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17468:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17479:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17464:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17464:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17456:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17498:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17509:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17491:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17491:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "17491:25:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17415:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17426:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17437:4:16",
"type": ""
}
],
"src": "17345:177:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17656:119:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17666:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17678:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17689:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17674:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17674:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17666:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17708:9:16"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17719:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17701:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17701:25:16"
},
"nodeType": "YulExpressionStatement",
"src": "17701:25:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17746:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17757:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17742:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17742:18:16"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17762:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17735:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17735:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "17735:34:16"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17617:9:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17628:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17636:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17647:4:16",
"type": ""
}
],
"src": "17527:248:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17879:93:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17889:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17901:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17912:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17897:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17897:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17889:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17931:9:16"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17946:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17954:10:16",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17942:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17942:23:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17924:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17924:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "17924:42:16"
}
]
},
"name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17848:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17859:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17870:4:16",
"type": ""
}
],
"src": "17780:192:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18074:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18084:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18096:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18107:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18092:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18092:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18084:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18126:9:16"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18141:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18149:4:16",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18137:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18137:17:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18119:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18119:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "18119:36:16"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18043:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18054:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18065:4:16",
"type": ""
}
],
"src": "17977:184:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18214:80:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18241:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18243:16:16"
},
"nodeType": "YulFunctionCall",
"src": "18243:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "18243:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18230:1:16"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18237:1:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "18233:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18233:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18227:2:16"
},
"nodeType": "YulFunctionCall",
"src": "18227:13:16"
},
"nodeType": "YulIf",
"src": "18224:39:16"
},
{
"nodeType": "YulAssignment",
"src": "18272:16:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18283:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18286:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18279:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18279:9:16"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "18272:3:16"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18197:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18200:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "18206:3:16",
"type": ""
}
],
"src": "18166:128:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18345:171:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18376:111:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18397:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18404:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18409:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18400:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18400:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18390:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18390:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "18390:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18441:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18444:4:16",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18434:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18434:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "18434:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18469:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18472:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18462:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18462:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "18462:15:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18365:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18358:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18358:9:16"
},
"nodeType": "YulIf",
"src": "18355:132:16"
},
{
"nodeType": "YulAssignment",
"src": "18496:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18505:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18508:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "18501:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18501:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "18496:1:16"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18330:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18333:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "18339:1:16",
"type": ""
}
],
"src": "18299:217:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18570:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18592:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18594:16:16"
},
"nodeType": "YulFunctionCall",
"src": "18594:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "18594:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18586:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18589:1:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "18583:2:16"
},
"nodeType": "YulFunctionCall",
"src": "18583:8:16"
},
"nodeType": "YulIf",
"src": "18580:34:16"
},
{
"nodeType": "YulAssignment",
"src": "18623:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18635:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18638:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18631:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18631:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "18623:4:16"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18552:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18555:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "18561:4:16",
"type": ""
}
],
"src": "18521:125:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18706:325:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18716:22:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18730:1:16",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "18733:4:16"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "18726:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18726:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18716:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "18747:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "18777:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18783:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18773:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18773:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "18751:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "18824:31:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18826:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18840:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18848:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18836:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18836:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18826:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "18804:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18797:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18797:26:16"
},
"nodeType": "YulIf",
"src": "18794:61:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18914:111:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18935:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18942:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18947:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18938:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18938:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18928:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18928:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "18928:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18979:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18982:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18972:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18972:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "18972:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19007:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19010:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19000:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19000:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19000:15:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "18870:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18893:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18901:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "18890:2:16"
},
"nodeType": "YulFunctionCall",
"src": "18890:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "18867:2:16"
},
"nodeType": "YulFunctionCall",
"src": "18867:38:16"
},
"nodeType": "YulIf",
"src": "18864:161:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "18686:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18695:6:16",
"type": ""
}
],
"src": "18651:380:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19068:95:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19085:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19092:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19097:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "19088:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19088:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19078:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19078:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "19078:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19125:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19128:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19118:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19118:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19118:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19149:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19152:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19142:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19142:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19142:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "19036:127:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19200:95:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19217:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19224:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19229:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "19220:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19220:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19210:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19210:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "19210:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19257:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19260:4:16",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19250:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19250:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19250:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19281:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19284:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19274:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19274:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19274:15:16"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "19168:127:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19332:95:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19349:1:16",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19356:3:16",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19361:10:16",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "19352:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19352:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19342:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19342:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "19342:31:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19389:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19392:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19382:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19382:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19382:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19413:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19416:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19406:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19406:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "19406:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "19300:127:16"
}
]
},
"contents": "{\n { }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_uint8(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n {\n if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := abi_decode_uint8(add(headStart, 128))\n value5 := calldataload(add(headStart, 160))\n value6 := calldataload(add(headStart, 192))\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n {\n if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := abi_decode_uint8(add(headStart, 96))\n value4 := calldataload(add(headStart, 128))\n value5 := calldataload(add(headStart, 160))\n }\n function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n value1 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n mstore(pos, shl(240, 6401))\n mstore(add(pos, 2), value0)\n mstore(add(pos, 34), value1)\n end := add(pos, 66)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 192)\n mstore(headStart, value0)\n let _1 := sub(shl(160, 1), 1)\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), and(value2, _1))\n mstore(add(headStart, 96), value3)\n mstore(add(headStart, 128), value4)\n mstore(add(headStart, 160), value5)\n }\n function abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, value0)\n mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n }\n function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 160)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 128)\n mstore(headStart, value0)\n mstore(add(headStart, 32), and(value1, 0xff))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(headStart, length), 64), 0)\n }\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 24)\n mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_06e5bbaaa109e1d058e1026fbdce9ec5e51f304d46ad524d922a17511e41fd0d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ERC20Votes: block not yet mined\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 20)\n mstore(add(headStart, 64), \"Pausable: not paused\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_136d0f69bc85a5c125b5cc368e2880ebdb3c89d4d9828f6476431c386ea60257__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"ERC20Votes: signature expired\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n mstore(add(headStart, 96), \"ce\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_1a23b43d95073d55a7380117ca03cace60cd22fee15d5cb140d51e46236e6872__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"ERC20Votes: invalid nonce\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n mstore(add(headStart, 96), \"ue\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 16)\n mstore(add(headStart, 64), \"Pausable: paused\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n mstore(add(headStart, 96), \"ue\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 30)\n mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 40)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n mstore(add(headStart, 96), \"llowance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_97859f657b3d95198b68f29ae96ee966779795bec3ef1e76700d2d39fefd7699__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 48)\n mstore(add(headStart, 64), \"ERC20Votes: total supply risks o\")\n mstore(add(headStart, 96), \"verflowing votes\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 39)\n mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n mstore(add(headStart, 96), \"24 bits\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC20: burn amount exceeds allow\")\n mstore(add(headStart, 96), \"ance\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n mstore(add(headStart, 96), \"s\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 3\")\n mstore(add(headStart, 96), \"2 bits\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_struct$_Checkpoint_$895_memory_ptr__to_t_struct$_Checkpoint_$895_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, and(mload(value0), 0xffffffff))\n mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), sub(shl(224, 1), 1)))\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xffffffff))\n }\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xff))\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_div_t_uint256(x, y) -> r\n {\n if iszero(y)\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n r := div(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x21()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x21)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n}",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {
"1580": [
{
"length": 32,
"start": 2926
}
],
"2226": [
{
"length": 32,
"start": 4979
}
],
"2228": [
{
"length": 32,
"start": 4938
}
],
"2230": [
{
"length": 32,
"start": 5062
}
],
"2232": [
{
"length": 32,
"start": 5099
}
],
"2234": [
{
"length": 32,
"start": 5020
}
]
},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a6116101045780639ab24eb0116100a2578063d505accf11610071578063d505accf14610405578063dd62ed3e14610418578063f1127ed814610451578063f2fde38b1461048e57600080fd5b80639ab24eb0146103b9578063a457c2d7146103cc578063a9059cbb146103df578063c3cda520146103f257600080fd5b80638456cb59116100de5780638456cb59146103805780638da5cb5b146103885780638e539e8c1461039e57806395d89b41146103b157600080fd5b8063715018a61461035257806379cc67901461035a5780637ecebe001461036d57600080fd5b80633a46b1a81161017c5780635c19a95c1161014b5780635c19a95c146102e35780635c975abb146102f65780636fcfff451461030157806370a082311461032957600080fd5b80633a46b1a81461026f5780633f4ba83a1461028257806342966c681461028c578063587cde1e1461029f57600080fd5b806323b872dd116101b857806323b872dd14610232578063313ce567146102455780633644e51514610254578063395093511461025c57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806318160ddd14610220575b600080fd5b6101e76104a1565b6040516101f491906120be565b60405180910390f35b61021061020b366004611fe3565b610533565b60405190151581526020016101f4565b6002545b6040519081526020016101f4565b610210610240366004611f3d565b610549565b604051601281526020016101f4565b6102246105f8565b61021061026a366004611fe3565b610607565b61022461027d366004611fe3565b610643565b61028a6106bd565b005b61028a61029a3660046120a5565b6106f7565b6102cb6102ad366004611eef565b6001600160a01b039081166000908152600760205260409020541690565b6040516001600160a01b0390911681526020016101f4565b61028a6102f1366004611eef565b610704565b60055460ff16610210565b61031461030f366004611eef565b61070e565b60405163ffffffff90911681526020016101f4565b610224610337366004611eef565b6001600160a01b031660009081526020819052604090205490565b61028a610736565b61028a610368366004611fe3565b610770565b61022461037b366004611eef565b6107f6565b61028a610814565b60055461010090046001600160a01b03166102cb565b6102246103ac3660046120a5565b61084c565b6101e76108a8565b6102246103c7366004611eef565b6108b7565b6102106103da366004611fe3565b61093e565b6102106103ed366004611fe3565b6109d7565b61028a61040036600461200d565b6109e4565b61028a610413366004611f79565b610b1a565b610224610426366004611f0a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61046461045f366004612065565b610c7e565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016101f4565b61028a61049c366004611eef565b610d02565b6060600380546104b090612199565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90612199565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000610540338484611043565b50600192915050565b6000610556848484611167565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105e05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105ed8533858403611043565b506001949350505050565b6000610602611346565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054091859061063e908690612148565b611043565b60004382106106945760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105d7565b6001600160a01b03831660009081526008602052604090206106b69083611439565b9392505050565b6005546001600160a01b036101009091041633146106ed5760405162461bcd60e51b81526004016105d790612113565b6106f56114f6565b565b6107013382611589565b50565b6107013382611593565b6001600160a01b03811660009081526008602052604081205461073090610fa0565b92915050565b6005546001600160a01b036101009091041633146107665760405162461bcd60e51b81526004016105d790612113565b6106f5600061160c565b600061077c8333610426565b9050818110156107da5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105d7565b6107e78333848403611043565b6107f18383611589565b505050565b6001600160a01b038116600090815260066020526040812054610730565b6005546001600160a01b036101009091041633146108445760405162461bcd60e51b81526004016105d790612113565b6106f5611666565b600043821061089d5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105d7565b610730600983611439565b6060600480546104b090612199565b6001600160a01b038116600090815260086020526040812054801561092b576001600160a01b03831660009081526008602052604090206108f9600183612182565b81548110610909576109096121fa565b60009182526020909120015464010000000090046001600160e01b031661092e565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d7565b6109cd3385858403611043565b5060019392505050565b6000610540338484611167565b83421115610a345760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016105d7565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610aae90610aa69060a001604051602081830303815290604052805190602001206116e1565b85858561172f565b9050610ab981611757565b8614610b075760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016105d7565b610b118188611593565b50505050505050565b83421115610b6a5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016105d7565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610b998c611757565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610bf4826116e1565b90506000610c048287878761172f565b9050896001600160a01b0316816001600160a01b031614610c675760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016105d7565b610c728a8a8a611043565b50505050505050505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600860205260409020805463ffffffff8416908110610cc257610cc26121fa565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6005546001600160a01b03610100909104163314610d325760405162461bcd60e51b81526004016105d790612113565b6001600160a01b038116610d975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b6107018161160c565b610daa8282610e30565b6002546001600160e01b031015610e1c5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016105d7565b610e2a6009610f278361177f565b50505050565b6001600160a01b038216610e865760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b610e92600083836118f8565b8060026000828254610ea49190612148565b90915550506001600160a01b03821660009081526020819052604081208054839290610ed1908490612148565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610f236000838361193e565b5050565b60006106b68284612148565b60006001600160e01b03821115610f9c5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016105d7565b5090565b600063ffffffff821115610f9c5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016105d7565b6001600160a01b038381166000908152600760205260408082205485841683529120546107f192918216911683611949565b60006106b68284612182565b6001600160a01b0383166110a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b0382166111065760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b03821661122d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6112388383836118f8565b6001600160a01b038316600090815260208190526040902054818110156112b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112e7908490612148565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133391815260200190565b60405180910390a3610e2a84848461193e565b60007f000000000000000000000000000000000000000000000000000000000000000046141561139557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b8181101561149d5760006114548284611a86565b905084868281548110611469576114696121fa565b60009182526020909120015463ffffffff16111561148957809250611497565b611494816001612148565b91505b50611440565b81156114e157846114af600184612182565b815481106114bf576114bf6121fa565b60009182526020909120015464010000000090046001600160e01b03166114e4565b60005b6001600160e01b031695945050505050565b60055460ff1661153f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105d7565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f238282611aa1565b6001600160a01b038281166000818152600760208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610e2a828483611949565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156116ac5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d7565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861156c3390565b60006107306116ee611346565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061174087878787611ab9565b9150915061174d81611ba6565b5095945050505050565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b8254600090819080156117ca5785611798600183612182565b815481106117a8576117a86121fa565b60009182526020909120015464010000000090046001600160e01b03166117cd565b60005b6001600160e01b031692506117e683858763ffffffff16565b915060008111801561182457504386611800600184612182565b81548110611810576118106121fa565b60009182526020909120015463ffffffff16145b156118845761183282610f33565b8661183e600184612182565b8154811061184e5761184e6121fa565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b031602179055506118ef565b85604051806040016040528061189943610fa0565b63ffffffff1681526020016118ad85610f33565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60055460ff16156107f15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d7565b6107f1838383611005565b816001600160a01b0316836001600160a01b03161415801561196b5750600081115b156107f1576001600160a01b038316156119f9576001600160a01b038316600090815260086020526040812081906119a6906110378561177f565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516119ee929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156107f1576001600160a01b03821660009081526008602052604081208190611a2f90610f278561177f565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611a77929190918252602082015260400190565b60405180910390a25050505050565b6000611a956002848418612160565b6106b690848416612148565b611aab8282611d61565b610e2a60096110378361177f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611af05750600090506003611b9d565b8460ff16601b14158015611b0857508460ff16601c14155b15611b195750600090506004611b9d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b6d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b9657600060019250925050611b9d565b9150600090505b94509492505050565b6000816004811115611bba57611bba6121e4565b1415611bc35750565b6001816004811115611bd757611bd76121e4565b1415611c255760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105d7565b6002816004811115611c3957611c396121e4565b1415611c875760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105d7565b6003816004811115611c9b57611c9b6121e4565b1415611cf45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105d7565b6004816004811115611d0857611d086121e4565b14156107015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105d7565b6001600160a01b038216611dc15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b611dcd826000836118f8565b6001600160a01b03821660009081526020819052604090205481811015611e415760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e70908490612182565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36107f18360008461193e565b80356001600160a01b0381168114611ed957600080fd5b919050565b803560ff81168114611ed957600080fd5b600060208284031215611f0157600080fd5b6106b682611ec2565b60008060408385031215611f1d57600080fd5b611f2683611ec2565b9150611f3460208401611ec2565b90509250929050565b600080600060608486031215611f5257600080fd5b611f5b84611ec2565b9250611f6960208501611ec2565b9150604084013590509250925092565b600080600080600080600060e0888a031215611f9457600080fd5b611f9d88611ec2565b9650611fab60208901611ec2565b95506040880135945060608801359350611fc760808901611ede565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215611ff657600080fd5b611fff83611ec2565b946020939093013593505050565b60008060008060008060c0878903121561202657600080fd5b61202f87611ec2565b9550602087013594506040870135935061204b60608801611ede565b92506080870135915060a087013590509295509295509295565b6000806040838503121561207857600080fd5b61208183611ec2565b9150602083013563ffffffff8116811461209a57600080fd5b809150509250929050565b6000602082840312156120b757600080fd5b5035919050565b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b818111156120fd576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561215b5761215b6121ce565b500190565b60008261217d57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612194576121946121ce565b500390565b600181811c908216806121ad57607f821691505b6020821081141561177957634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d8649fe86927be52b8cbb9e697ca1b524e8c467ed8cac19222ce66551a9bc91c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0x9AB24EB0 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x405 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x451 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x48E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x3B9 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3DF JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x3F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8456CB59 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x352 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x36D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3A46B1A8 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2F6 JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x29F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x232 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x254 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x25C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1FD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x220 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x4A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x20BE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x210 PUSH2 0x20B CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x240 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F3D JUMP JUMPDEST PUSH2 0x549 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x5F8 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x607 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x27D CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x643 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x6BD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x20A5 JUMP JUMPDEST PUSH2 0x6F7 JUMP JUMPDEST PUSH2 0x2CB PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x2F1 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x704 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x210 JUMP JUMPDEST PUSH2 0x314 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x70E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x736 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x7F6 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x814 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2CB JUMP JUMPDEST PUSH2 0x224 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x20A5 JUMP JUMPDEST PUSH2 0x84C JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x8A8 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x3C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0x8B7 JUMP JUMPDEST PUSH2 0x210 PUSH2 0x3DA CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x93E JUMP JUMPDEST PUSH2 0x210 PUSH2 0x3ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1FE3 JUMP JUMPDEST PUSH2 0x9D7 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x400 CALLDATASIZE PUSH1 0x4 PUSH2 0x200D JUMP JUMPDEST PUSH2 0x9E4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x413 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F79 JUMP JUMPDEST PUSH2 0xB1A JUMP JUMPDEST PUSH2 0x224 PUSH2 0x426 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x464 PUSH2 0x45F CALLDATASIZE PUSH1 0x4 PUSH2 0x2065 JUMP JUMPDEST PUSH2 0xC7E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x28A PUSH2 0x49C CALLDATASIZE PUSH1 0x4 PUSH2 0x1EEF JUMP JUMPDEST PUSH2 0xD02 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4B0 SWAP1 PUSH2 0x2199 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 0x4DC SWAP1 PUSH2 0x2199 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x529 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4FE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x529 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x50C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x540 CALLER DUP5 DUP5 PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x556 DUP5 DUP5 DUP5 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x5E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x6C6C6F77616E6365 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5ED DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x602 PUSH2 0x1346 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x540 SWAP2 DUP6 SWAP1 PUSH2 0x63E SWAP1 DUP7 SWAP1 PUSH2 0x2148 JUMP JUMPDEST PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0x694 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20626C6F636B206E6F7420796574206D696E656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x6B6 SWAP1 DUP4 PUSH2 0x1439 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x6ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH2 0x14F6 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x701 CALLER DUP3 PUSH2 0x1589 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x701 CALLER DUP3 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x730 SWAP1 PUSH2 0xFA0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x766 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH1 0x0 PUSH2 0x160C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP4 CALLER PUSH2 0x426 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x7DA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x616E6365 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x7E7 DUP4 CALLER DUP5 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST PUSH2 0x7F1 DUP4 DUP4 PUSH2 0x1589 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x730 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0x844 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x6F5 PUSH2 0x1666 JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 LT PUSH2 0x89D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20626C6F636B206E6F7420796574206D696E656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x730 PUSH1 0x9 DUP4 PUSH2 0x1439 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4B0 SWAP1 PUSH2 0x2199 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x92B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x8F9 PUSH1 0x1 DUP4 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x909 JUMPI PUSH2 0x909 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x92E JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x9CD CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1043 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x540 CALLER DUP5 DUP5 PUSH2 0x1167 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xA34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A207369676E61747572652065787069726564000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xAAE SWAP1 PUSH2 0xAA6 SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH2 0x16E1 JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x172F JUMP JUMPDEST SWAP1 POP PUSH2 0xAB9 DUP2 PUSH2 0x1757 JUMP JUMPDEST DUP7 EQ PUSH2 0xB07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20696E76616C6964206E6F6E636500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xB11 DUP2 DUP9 PUSH2 0x1593 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xB6A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0xB99 DUP13 PUSH2 0x1757 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xBF4 DUP3 PUSH2 0x16E1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC04 DUP3 DUP8 DUP8 DUP8 PUSH2 0x172F JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xC72 DUP11 DUP11 DUP11 PUSH2 0x1043 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 LT PUSH2 0xCC2 JUMPI PUSH2 0xCC2 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x100 SWAP1 SWAP2 DIV AND CALLER EQ PUSH2 0xD32 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D7 SWAP1 PUSH2 0x2113 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xD97 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x701 DUP2 PUSH2 0x160C JUMP JUMPDEST PUSH2 0xDAA DUP3 DUP3 PUSH2 0xE30 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB LT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x30 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433230566F7465733A20746F74616C20737570706C79207269736B73206F PUSH1 0x44 DUP3 ADD MSTORE PUSH16 0x766572666C6F77696E6720766F746573 PUSH1 0x80 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xE2A PUSH1 0x9 PUSH2 0xF27 DUP4 PUSH2 0x177F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xE86 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0xE92 PUSH1 0x0 DUP4 DUP4 PUSH2 0x18F8 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xEA4 SWAP2 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xED1 SWAP1 DUP5 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xF23 PUSH1 0x0 DUP4 DUP4 PUSH2 0x193E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6B6 DUP3 DUP5 PUSH2 0x2148 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP3 GT ISZERO PUSH2 0xF9C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x32342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0xF9C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2033 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x322062697473 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP6 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD PUSH2 0x7F1 SWAP3 SWAP2 DUP3 AND SWAP2 AND DUP4 PUSH2 0x1949 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6B6 DUP3 DUP5 PUSH2 0x2182 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x10A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1106 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x11CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x122D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x1238 DUP4 DUP4 DUP4 PUSH2 0x18F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x12B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x12E7 SWAP1 DUP5 SWAP1 PUSH2 0x2148 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1333 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE2A DUP5 DUP5 DUP5 PUSH2 0x193E JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1395 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x0 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x149D JUMPI PUSH1 0x0 PUSH2 0x1454 DUP3 DUP5 PUSH2 0x1A86 JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1469 JUMPI PUSH2 0x1469 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x1489 JUMPI DUP1 SWAP3 POP PUSH2 0x1497 JUMP JUMPDEST PUSH2 0x1494 DUP2 PUSH1 0x1 PUSH2 0x2148 JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1440 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x14E1 JUMPI DUP5 PUSH2 0x14AF PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x14BF JUMPI PUSH2 0x14BF PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x14E4 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x153F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x14185D5CD8589B194E881B9BDD081C185D5CD959 PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0xF23 DUP3 DUP3 PUSH2 0x1AA1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD DUP6 DUP5 MSTORE DUP3 DUP7 KECCAK256 SLOAD SWAP5 SWAP1 SWAP4 MSTORE DUP8 DUP8 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP5 AND DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP2 SWAP1 SWAP6 AND SWAP5 SWAP2 SWAP4 SWAP2 SWAP3 DUP6 SWAP3 SWAP2 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP2 SWAP1 LOG4 PUSH2 0xE2A DUP3 DUP5 DUP4 PUSH2 0x1949 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH2 0x100 DUP2 DUP2 MUL PUSH2 0x100 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT DUP6 AND OR SWAP1 SWAP5 SSTORE PUSH1 0x40 MLOAD SWAP4 SWAP1 SWAP3 DIV AND SWAP2 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x16AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x156C CALLER SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x730 PUSH2 0x16EE PUSH2 0x1346 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1740 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1AB9 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x174D DUP2 PUSH2 0x1BA6 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP1 ISZERO PUSH2 0x17CA JUMPI DUP6 PUSH2 0x1798 PUSH1 0x1 DUP4 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x17A8 JUMPI PUSH2 0x17A8 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x17CD JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP3 POP PUSH2 0x17E6 DUP4 DUP6 DUP8 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x1824 JUMPI POP NUMBER DUP7 PUSH2 0x1800 PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1810 JUMPI PUSH2 0x1810 PUSH2 0x21FA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH4 0xFFFFFFFF AND EQ JUMPDEST ISZERO PUSH2 0x1884 JUMPI PUSH2 0x1832 DUP3 PUSH2 0xF33 JUMP JUMPDEST DUP7 PUSH2 0x183E PUSH1 0x1 DUP5 PUSH2 0x2182 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x184E JUMPI PUSH2 0x184E PUSH2 0x21FA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 ADD PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x18EF JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x1899 NUMBER PUSH2 0xFA0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x18AD DUP6 PUSH2 0xF33 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE DUP3 SLOAD PUSH1 0x1 DUP2 ADD DUP5 SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 SWAP1 KECCAK256 DUP4 MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD SWAP1 SWAP2 AND PUSH5 0x100000000 MUL PUSH4 0xFFFFFFFF SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x14185D5CD8589B194E881C185D5CD959 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x7F1 DUP4 DUP4 DUP4 PUSH2 0x1005 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 ISZERO PUSH2 0x196B JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x19F9 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP2 SWAP1 PUSH2 0x19A6 SWAP1 PUSH2 0x1037 DUP6 PUSH2 0x177F JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x19EE SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x7F1 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP2 SWAP1 PUSH2 0x1A2F SWAP1 PUSH2 0xF27 DUP6 PUSH2 0x177F JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A77 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A95 PUSH1 0x2 DUP5 DUP5 XOR PUSH2 0x2160 JUMP JUMPDEST PUSH2 0x6B6 SWAP1 DUP5 DUP5 AND PUSH2 0x2148 JUMP JUMPDEST PUSH2 0x1AAB DUP3 DUP3 PUSH2 0x1D61 JUMP JUMPDEST PUSH2 0xE2A PUSH1 0x9 PUSH2 0x1037 DUP4 PUSH2 0x177F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1AF0 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1B9D JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1B08 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1B19 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1B9D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1B96 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1B9D JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1BBA JUMPI PUSH2 0x1BBA PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1BC3 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1BD7 JUMPI PUSH2 0x1BD7 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1C25 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1C39 JUMPI PUSH2 0x1C39 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1C87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1C9B JUMPI PUSH2 0x1C9B PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1CF4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1D08 JUMPI PUSH2 0x1D08 PUSH2 0x21E4 JUMP JUMPDEST EQ ISZERO PUSH2 0x701 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7565 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DC1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH2 0x1DCD DUP3 PUSH1 0x0 DUP4 PUSH2 0x18F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1E41 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1E70 SWAP1 DUP5 SWAP1 PUSH2 0x2182 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x7F1 DUP4 PUSH1 0x0 DUP5 PUSH2 0x193E JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1ED9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1ED9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F01 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B6 DUP3 PUSH2 0x1EC2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F26 DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F34 PUSH1 0x20 DUP5 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1F52 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F5B DUP5 PUSH2 0x1EC2 JUMP JUMPDEST SWAP3 POP PUSH2 0x1F69 PUSH1 0x20 DUP6 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1F94 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F9D DUP9 PUSH2 0x1EC2 JUMP JUMPDEST SWAP7 POP PUSH2 0x1FAB PUSH1 0x20 DUP10 ADD PUSH2 0x1EC2 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1FC7 PUSH1 0x80 DUP10 ADD PUSH2 0x1EDE JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1FF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1FFF DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x2026 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x202F DUP8 PUSH2 0x1EC2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x204B PUSH1 0x60 DUP9 ADD PUSH2 0x1EDE JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2078 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2081 DUP4 PUSH2 0x1EC2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x209A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x20EB JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x20CF JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x20FD JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x215B JUMPI PUSH2 0x215B PUSH2 0x21CE JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x217D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2194 JUMPI PUSH2 0x2194 PUSH2 0x21CE JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x21AD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1779 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 PUSH5 0x9FE86927BE MSTORE 0xB8 0xCB 0xB9 0xE6 SWAP8 0xCA SHL MSTORE 0x4E DUP13 CHAINID PUSH31 0xD8CAC19222CE66551A9BC91C64736F6C634300080700330000000000000000 ",
"sourceMap": "485:1119:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;3858:14:16;;3851:22;3833:41;;3821:2;3806:18;4181:166:2;3693:187:16;3172:106:2;3259:12;;3172:106;;;4031:25:16;;;4019:2;4004:18;3172:106:2;3885:177:16;4814:478:2;;;;;;:::i;:::-;;:::i;3021:91::-;;;3103:2;18119:36:16;;18107:2;18092:18;3021:91:2;17977:184:16;2426:113:7;;;:::i;5687:212:2:-;;;;;;:::i;:::-;;:::i;3256:248:5:-;;;;;;:::i;:::-;;:::i;776:63:15:-;;;:::i;:::-;;487:89:4;;;;;;:::i;:::-;;:::i;2675:117:5:-;;;;;;:::i;:::-;-1:-1:-1;;;;;2766:19:5;;;2740:7;2766:19;;;:10;:19;;;;;;;;2675:117;;;;-1:-1:-1;;;;;3649:32:16;;;3631:51;;3619:2;3604:18;2675:117:5;3485:203:16;5645:110:5;;;;;;:::i;:::-;;:::i;1041:84:1:-;1111:7;;;;1041:84;;2438:149:5;;;;;;:::i;:::-;;:::i;:::-;;;17954:10:16;17942:23;;;17924:42;;17912:2;17897:18;2438:149:5;17780:192:16;3336:125:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3436:18:2;3410:7;3436:18;;;;;;;;;;;;3336:125;1605:92:0;;;:::i;882:361:4:-;;;;;;:::i;:::-;;:::i;2176:126:7:-;;;;;;:::i;:::-;;:::i;711:59:15:-;;;:::i;973:85:0:-;1045:6;;;;;-1:-1:-1;;;;;1045:6:0;973:85;;3783:239:5;;;;;;:::i;:::-;;:::i;2295:102:2:-;;;:::i;2871:192:5:-;;;;;;:::i;:::-;;:::i;6386:405:2:-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;5832:572:5:-;;;;;;:::i;:::-;;:::i;1489:626:7:-;;;;;;:::i;:::-;;:::i;3894:149:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:2;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;2215:148:5;;;;;;:::i;:::-;;:::i;:::-;;;;17218:13:16;;17233:10;17214:30;17196:49;;17305:4;17293:17;;;17287:24;-1:-1:-1;;;;;17283:50:16;17261:20;;;17254:80;;;;17169:18;2215:148:5;16996:344:16;1846:189:0;;;;;;:::i;:::-;;:::i;2084:98:2:-;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:9;4303:7:2;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:2;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:2;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:9;5040:33:2;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:2;;12812:2:16;5083:79:2;;;12794:21:16;12851:2;12831:18;;;12824:30;12890:34;12870:18;;;12863:62;-1:-1:-1;;;12941:18:16;;;12934:38;12989:19;;5083:79:2;;;;;;;;;5196:57;5205:6;666:10:9;5246:6:2;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:2;;4814:478;-1:-1:-1;;;;4814:478:2:o;2426:113:7:-;2486:7;2512:20;:18;:20::i;:::-;2505:27;;2426:113;:::o;5687:212:2:-;666:10:9;5775:4:2;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:2;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;3256:248:5:-;3337:7;3378:12;3364:11;:26;3356:70;;;;-1:-1:-1;;;3356:70:5;;7543:2:16;3356:70:5;;;7525:21:16;7582:2;7562:18;;;7555:30;7621:33;7601:18;;;7594:61;7672:18;;3356:70:5;7341:355:16;3356:70:5;-1:-1:-1;;;;;3462:21:5;;;;;;:12;:21;;;;;3443:54;;3485:11;3443:18;:54::i;:::-;3436:61;3256:248;-1:-1:-1;;;3256:248:5:o;776:63:15:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;;;;;666:10:9;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;822:10:15::1;:8;:10::i;:::-;776:63::o:0;487:89:4:-;542:27;666:10:9;562:6:4;542:5;:27::i;:::-;487:89;:::o;5645:110:5:-;5714:34;666:10:9;5738:9:5;5714;:34::i;2438:149::-;-1:-1:-1;;;;;2551:21:5;;2508:6;2551:21;;;:12;:21;;;;;:28;2533:47;;:17;:47::i;:::-;2526:54;2438:149;-1:-1:-1;;2438:149:5:o;1605:92:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;;;;;666:10:9;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;882:361:4:-:0;958:24;985:32;995:7;666:10:9;3894:149:2;:::i;985:32:4:-;958:59;;1055:6;1035:16;:26;;1027:75;;;;-1:-1:-1;;;1027:75:4;;14407:2:16;1027:75:4;;;14389:21:16;14446:2;14426:18;;;14419:30;14485:34;14465:18;;;14458:62;-1:-1:-1;;;14536:18:16;;;14529:34;14580:19;;1027:75:4;14205:400:16;1027:75:4;1136:58;1145:7;666:10:9;1187:6:4;1168:16;:25;1136:8;:58::i;:::-;1214:22;1220:7;1229:6;1214:5;:22::i;:::-;948:295;882:361;;:::o;2176:126:7:-;-1:-1:-1;;;;;2271:14:7;;2245:7;2271:14;;;:7;:14;;;;;864::10;2271:24:7;773:112:10;711:59:15;1045:6:0;;-1:-1:-1;;;;;1045:6:0;;;;;666:10:9;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;755:8:15::1;:6;:8::i;3783:239:5:-:0;3853:7;3894:12;3880:11;:26;3872:70;;;;-1:-1:-1;;;3872:70:5;;7543:2:16;3872:70:5;;;7525:21:16;7582:2;7562:18;;;7555:30;7621:33;7601:18;;;7594:61;7672:18;;3872:70:5;7341:355:16;3872:70:5;3959:56;3978:23;4003:11;3959:18;:56::i;2295:102:2:-;2351:13;2383:7;2376:14;;;;;:::i;2871:192:5:-;-1:-1:-1;;;;;2960:21:5;;2927:7;2960:21;;;:12;:21;;;;;:28;3005:8;;:51;;-1:-1:-1;;;;;3020:21:5;;;;;;:12;:21;;;;;3042:7;3048:1;3042:3;:7;:::i;:::-;3020:30;;;;;;;;:::i;:::-;;;;;;;;;;:36;;;;-1:-1:-1;;;;;3020:36:5;3005:51;;;3016:1;3005:51;-1:-1:-1;;;;;2998:58:5;;2871:192;-1:-1:-1;;;2871:192:5:o;6386:405:2:-;666:10:9;6479:4:2;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:2;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:2;;16432:2:16;6566:85:2;;;16414:21:16;16471:2;16451:18;;;16444:30;16510:34;16490:18;;;16483:62;-1:-1:-1;;;16561:18:16;;;16554:35;16606:19;;6566:85:2;16230:401:16;6566:85:2;6685:67;666:10:9;6708:7:2;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:2;;6386:405;-1:-1:-1;;;6386:405:2:o;3664:172::-;3750:4;3766:42;666:10:9;3790:9:2;3801:6;3766:9;:42::i;5832:572:5:-;6042:6;6023:15;:25;;6015:67;;;;-1:-1:-1;;;6015:67:5;;8252:2:16;6015:67:5;;;8234:21:16;8291:2;8271:18;;;8264:30;8330:31;8310:18;;;8303:59;8379:18;;6015:67:5;8050:353:16;6015:67:5;6163:58;;;1485:71;6163:58;;;4894:25:16;-1:-1:-1;;;;;4955:32:16;;4935:18;;;4928:60;;;;5004:18;;;4997:34;;;5047:18;;;5040:34;;;6092:14:5;;6109:169;;6136:87;;4866:19:16;;6163:58:5;;;;;;;;;;;;6153:69;;;;;;6136:16;:87::i;:::-;6237:1;6252;6267;6109:13;:169::i;:::-;6092:186;;6305:17;6315:6;6305:9;:17::i;:::-;6296:5;:26;6288:64;;;;-1:-1:-1;;;6288:64:5;;9373:2:16;6288:64:5;;;9355:21:16;9412:2;9392:18;;;9385:30;9451:27;9431:18;;;9424:55;9496:18;;6288:64:5;9171:349:16;6288:64:5;6369:28;6379:6;6387:9;6369;:28::i;:::-;6362:35;5832:572;;;;;;:::o;1489:626:7:-;1724:8;1705:15;:27;;1697:69;;;;-1:-1:-1;;;1697:69:7;;10537:2:16;1697:69:7;;;10519:21:16;10576:2;10556:18;;;10549:30;10615:31;10595:18;;;10588:59;10664:18;;1697:69:7;10335:353:16;1697:69:7;1777:18;1819:16;1837:5;1844:7;1853:5;1860:16;1870:5;1860:9;:16::i;:::-;1808:79;;;;;;4354:25:16;;;;-1:-1:-1;;;;;4453:15:16;;;4433:18;;;4426:43;4505:15;;;;4485:18;;;4478:43;4537:18;;;4530:34;4580:19;;;4573:35;4624:19;;;4617:35;;;4326:19;;1808:79:7;;;;;;;;;;;;1798:90;;;;;;1777:111;;1899:12;1914:28;1931:10;1914:16;:28::i;:::-;1899:43;;1953:14;1970:28;1984:4;1990:1;1993;1996;1970:13;:28::i;:::-;1953:45;;2026:5;-1:-1:-1;;;;;2016:15:7;:6;-1:-1:-1;;;;;2016:15:7;;2008:58;;;;-1:-1:-1;;;2008:58:7;;12453:2:16;2008:58:7;;;12435:21:16;12492:2;12472:18;;;12465:30;12531:32;12511:18;;;12504:60;12581:18;;2008:58:7;12251:354:16;2008:58:7;2077:31;2086:5;2093:7;2102:5;2077:8;:31::i;:::-;1687:428;;;1489:626;;;;;;;:::o;2215:148:5:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;2330:21:5;;;;;;:12;:21;;;;;:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;;2323:33;;;;;;;;;2330:26;;2323:33;;;;;;;;;-1:-1:-1;;;;;2323:33:5;;;;;;;;;2215:148;-1:-1:-1;;;2215:148:5:o;1846:189:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;;;;;666:10:9;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:0;;9727:2:16;1926:73:0::1;::::0;::::1;9709:21:16::0;9766:2;9746:18;;;9739:30;9805:34;9785:18;;;9778:62;-1:-1:-1;;;9856:18:16;;;9849:36;9902:19;;1926:73:0::1;9525:402:16::0;1926:73:0::1;2009:19;2019:8;2009:9;:19::i;6698:285:5:-:0;6782:28;6794:7;6803:6;6782:11;:28::i;:::-;3259:12:2;;-1:-1:-1;;;;;;6828:29:5;6820:90;;;;-1:-1:-1;;;6820:90:5;;13221:2:16;6820:90:5;;;13203:21:16;13260:2;13240:18;;;13233:30;13299:34;13279:18;;;13272:62;-1:-1:-1;;;13350:18:16;;;13343:46;13406:19;;6820:90:5;13019:412:16;6820:90:5;6921:55;6938:23;6963:4;6969:6;6921:16;:55::i;:::-;;;6698:285;;:::o;8254:389:2:-;-1:-1:-1;;;;;8337:21:2;;8329:65;;;;-1:-1:-1;;;8329:65:2;;16838:2:16;8329:65:2;;;16820:21:16;16877:2;16857:18;;;16850:30;16916:33;16896:18;;;16889:61;16967:18;;8329:65:2;16636:355:16;8329:65:2;8405:49;8434:1;8438:7;8447:6;8405:20;:49::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:2;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:2;;4031:25:16;;;-1:-1:-1;;;;;8540:37:2;;;8557:1;;8540:37;;4019:2:16;4004:18;8540:37:2;;;;;;;8588:48;8616:1;8620:7;8629:6;8588:19;:48::i;:::-;8254:389;;:::o;9462:96:5:-;9520:7;9546:5;9550:1;9546;:5;:::i;1076:192:14:-;1133:7;-1:-1:-1;;;;;1160:26:14;;;1152:78;;;;-1:-1:-1;;;1152:78:14;;13999:2:16;1152:78:14;;;13981:21:16;14038:2;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;-1:-1:-1;;;14128:18:16;;;14121:37;14175:19;;1152:78:14;13797:403:16;1152:78:14;-1:-1:-1;1255:5:14;1076:192::o;2986:187::-;3042:6;3077:16;3068:25;;;3060:76;;;;-1:-1:-1;;;3060:76:14;;15620:2:16;3060:76:14;;;15602:21:16;15659:2;15639:18;;;15632:30;15698:34;15678:18;;;15671:62;-1:-1:-1;;;15749:18:16;;;15742:36;15795:19;;3060:76:14;15418:402:16;7395:254:5;-1:-1:-1;;;;;2766:19:5;;;2740:7;2766:19;;;:10;:19;;;;;;;;;;;;;;;7586:56;;2766:19;;;;;7635:6;7586:16;:56::i;9564:101::-;9627:7;9653:5;9657:1;9653;:5;:::i;9962:370:2:-;-1:-1:-1;;;;;10093:19:2;;10085:68;;;;-1:-1:-1;;;10085:68:2;;16027:2:16;10085:68:2;;;16009:21:16;16066:2;16046:18;;;16039:30;16105:34;16085:18;;;16078:62;-1:-1:-1;;;16156:18:16;;;16149:34;16200:19;;10085:68:2;15825:400:16;10085:68:2;-1:-1:-1;;;;;10171:21:2;;10163:68;;;;-1:-1:-1;;;10163:68:2;;10134:2:16;10163:68:2;;;10116:21:16;10173:2;10153:18;;;10146:30;10212:34;10192:18;;;10185:62;-1:-1:-1;;;10263:18:16;;;10256:32;10305:19;;10163:68:2;9932:398:16;10163:68:2;-1:-1:-1;;;;;10242:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;4031:25:16;;;10293:32:2;;4004:18:16;10293:32:2;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:2;;7392:70;;;;-1:-1:-1;;;7392:70:2;;15214:2:16;7392:70:2;;;15196:21:16;15253:2;15233:18;;;15226:30;15292:34;15272:18;;;15265:62;-1:-1:-1;;;15343:18:16;;;15336:35;15388:19;;7392:70:2;15012:401:16;7392:70:2;-1:-1:-1;;;;;7480:23:2;;7472:71;;;;-1:-1:-1;;;7472:71:2;;7139:2:16;7472:71:2;;;7121:21:16;7178:2;7158:18;;;7151:30;7217:34;7197:18;;;7190:62;-1:-1:-1;;;7268:18:16;;;7261:33;7311:19;;7472:71:2;6937:399:16;7472:71:2;7554:47;7575:6;7583:9;7594:6;7554:20;:47::i;:::-;-1:-1:-1;;;;;7636:17:2;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:2;;10895:2:16;7663:74:2;;;10877:21:16;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:16;;;11017:36;11070:19;;7663:74:2;10693:402:16;7663:74:2;-1:-1:-1;;;;;7771:17:2;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:2;7888:6;-1:-1:-1;;;;;7879:35:2;;7907:6;7879:35;;;;4031:25:16;;4019:2;4004:18;;3885:177;7879:35:2;;;;;;;;7925:46;7945:6;7953:9;7964:6;7925:19;:46::i;2990:275:12:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:12;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:12;;;3206:10;3447:73;;;;5344:25:16;;;;3218:12:12;5385:18:16;;;5378:34;3232:15:12;5428:18:16;;;5421:34;3491:13:12;5471:18:16;;;5464:34;3514:4:12;5514:19:16;;;;5507:61;;;;3447:73:12;;;;;;;;;;5316:19:16;;;;3447:73:12;;;3437:84;;;;;;2426:113:7:o;4106:1458:5:-;5227:12;;4205:7;;;5274:229;5287:4;5281:3;:10;5274:229;;;5307:11;5321:23;5334:3;5339:4;5321:12;:23::i;:::-;5307:37;;5385:11;5362:5;5368:3;5362:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;:34;5358:135;;;5423:3;5416:10;;5358:135;;;5471:7;:3;5477:1;5471:7;:::i;:::-;5465:13;;5358:135;5293:210;5274:229;;;5520:9;;:37;;5536:5;5542:8;5549:1;5542:4;:8;:::i;:::-;5536:15;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;-1:-1:-1;;;;;5536:21:5;5520:37;;;5532:1;5520:37;-1:-1:-1;;;;;5513:44:5;;4106:1458;-1:-1:-1;;;;;4106:1458:5:o;2053:117:1:-;1111:7;;;;1612:41;;;;-1:-1:-1;;;1612:41:1;;7903:2:16;1612:41:1;;;7885:21:16;7942:2;7922:18;;;7915:30;-1:-1:-1;;;7961:18:16;;;7954:50;8021:18;;1612:41:1;7701:344:16;1612:41:1;2111:7:::1;:15:::0;;-1:-1:-1;;2111:15:1::1;::::0;;2141:22:::1;666:10:9::0;2150:12:1::1;2141:22;::::0;-1:-1:-1;;;;;3649:32:16;;;3631:51;;3619:2;3604:18;2141:22:1::1;;;;;;;2053:117::o:0;1452:150:15:-;1567:28;1579:7;1588:6;1567:11;:28::i;7806:380:5:-;-1:-1:-1;;;;;2766:19:5;;;7890:23;2766:19;;;:10;:19;;;;;;;;;;3436:18:2;;;;;;;8003:21:5;;;;:33;;;-1:-1:-1;;;;;;8003:33:5;;;;;;;8052:54;;2766:19;;;;;3436:18:2;;8003:33:5;;2766:19;;;8052:54;;7890:23;8052:54;8117:62;8134:15;8151:9;8162:16;8117;:62::i;2041:169:0:-;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;2115:6;2131:17;;;-1:-1:-1;;;;;;2131:17:0;;;;;;2163:40;;2115:6;;;;;;;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;1806:115:1:-;1111:7;;;;1354:9;1346:38;;;;-1:-1:-1;;;1346:38:1;;11705:2:16;1346:38:1;;;11687:21:16;11744:2;11724:18;;;11717:30;-1:-1:-1;;;11763:18:16;;;11756:46;11819:18;;1346:38:1;11503:340:16;1346:38:1;1865:7:::1;:14:::0;;-1:-1:-1;;1865:14:1::1;1875:4;1865:14;::::0;;1894:20:::1;1901:12;666:10:9::0;;587:96;4153:165:12;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;8683:57:11;;-1:-1:-1;;;8683:57:11;;;3346:27:16;3389:11;;;3382:27;;;3425:12;;;3418:28;;;8647:7:11;;3462:12:16;;8683:57:11;;;;;;;;;;;;8673:68;;;;;;8666:75;;8554:194;;;;;7390:270;7513:7;7533:17;7552:18;7574:25;7585:4;7591:1;7594;7597;7574:10;:25::i;:::-;7532:67;;;;7609:18;7621:5;7609:11;:18::i;:::-;-1:-1:-1;7644:9:11;7390:270;-1:-1:-1;;;;;7390:270:11:o;2670:203:7:-;-1:-1:-1;;;;;2790:14:7;;2730:15;2790:14;;;:7;:14;;;;;864::10;;996:1;978:19;;;;864:14;2849:17:7;2747:126;2670:203;;;:::o;8825:631:5:-;9057:12;;8995:17;;;;9091:8;;:35;;9106:5;9112:7;9118:1;9112:3;:7;:::i;:::-;9106:14;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;-1:-1:-1;;;;;9106:20:5;9091:35;;;9102:1;9091:35;-1:-1:-1;;;;;9079:47:5;;;9148:20;9151:9;9162:5;9148:2;:20;;:::i;:::-;9136:32;;9189:1;9183:3;:7;:51;;;;-1:-1:-1;9222:12:5;9194:5;9200:7;9206:1;9200:3;:7;:::i;:::-;9194:14;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;:40;9183:51;9179:271;;;9273:29;9292:9;9273:18;:29::i;:::-;9250:5;9256:7;9262:1;9256:3;:7;:::i;:::-;9250:14;;;;;;;;:::i;:::-;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;9250:52:5;;;;;-1:-1:-1;;;;;9250:52:5;;;;;;9179:271;;;9333:5;9344:94;;;;;;;;9367:31;9385:12;9367:17;:31::i;:::-;9344:94;;;;;;9407:29;9426:9;9407:18;:29::i;:::-;-1:-1:-1;;;;;9344:94:5;;;;;;9333:106;;;;;;;-1:-1:-1;9333:106:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9179:271;9033:423;8825:631;;;;;;:::o;845:193:15:-;1111:7:1;;;;1354:9;1346:38;;;;-1:-1:-1;;;1346:38:1;;11705:2:16;1346:38:1;;;11687:21:16;11744:2;11724:18;;;11717:30;-1:-1:-1;;;11763:18:16;;;11756:46;11819:18;;1346:38:1;11503:340:16;1112:188:15;1250:43;1276:4;1282:2;1286:6;1250:25;:43::i;8192:627:5:-;8319:3;-1:-1:-1;;;;;8312:10:5;:3;-1:-1:-1;;;;;8312:10:5;;;:24;;;;;8335:1;8326:6;:10;8312:24;8308:505;;;-1:-1:-1;;;;;8356:17:5;;;8352:221;;-1:-1:-1;;;;;8451:17:5;;8394;8451;;;:12;:17;;;;;8394;;8434:54;;8470:9;8481:6;8434:16;:54::i;:::-;8393:95;;;;8532:3;-1:-1:-1;;;;;8511:47:5;;8537:9;8548;8511:47;;;;;;17701:25:16;;;17757:2;17742:18;;17735:34;17689:2;17674:18;;17527:248;8511:47:5;;;;;;;;8375:198;;8352:221;-1:-1:-1;;;;;8591:17:5;;;8587:216;;-1:-1:-1;;;;;8686:17:5;;8629;8686;;;:12;:17;;;;;8629;;8669:49;;8705:4;8711:6;8669:16;:49::i;:::-;8628:90;;;;8762:3;-1:-1:-1;;;;;8741:47:5;;8767:9;8778;8741:47;;;;;;17701:25:16;;;17757:2;17742:18;;17735:34;17689:2;17674:18;;17527:248;8741:47:5;;;;;;;;8610:193;;8192:627;;;:::o;608:153:13:-;670:7;743:11;753:1;744:5;;;743:11;:::i;:::-;733:21;;734:5;;;733:21;:::i;7072:190:5:-;7156:28;7168:7;7177:6;7156:11;:28::i;:::-;7195:60;7212:23;7237:9;7248:6;7195:16;:60::i;5654:1603:11:-;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:11;;-1:-1:-1;6806:30:11;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:11;;-1:-1:-1;6915:30:11;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;5806:25:16;;;5879:4;5867:17;;5847:18;;;5840:45;;;;5901:18;;;5894:34;;;5944:18;;;5937:34;;;7068:24:11;;5778:19:16;;7068:24:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:11;;-1:-1:-1;;7068:24:11;;;-1:-1:-1;;;;;;;7106:20:11;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:11;;-1:-1:-1;5654:1603:11;;;;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;;;:::i;:::-;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;;;:::i;:::-;;603:465;;;661:34;;-1:-1:-1;;;661:34:11;;6786:2:16;661:34:11;;;6768:21:16;6825:2;6805:18;;;6798:30;6864:26;6844:18;;;6837:54;6908:18;;661:34:11;6584:348:16;603:465:11;725:35;716:5;:44;;;;;;;;:::i;:::-;;712:356;;;776:41;;-1:-1:-1;;;776:41:11;;9013:2:16;776:41:11;;;8995:21:16;9052:2;9032:18;;;9025:30;9091:33;9071:18;;;9064:61;9142:18;;776:41:11;8811:355:16;712:356:11;847:30;838:5;:39;;;;;;;;:::i;:::-;;834:234;;;893:44;;-1:-1:-1;;;893:44:11;;11302:2:16;893:44:11;;;11284:21:16;11341:2;11321:18;;;11314:30;11380:34;11360:18;;;11353:62;-1:-1:-1;;;11431:18:16;;;11424:32;11473:19;;893:44:11;11100:398:16;834:234:11;967:30;958:5;:39;;;;;;;;:::i;:::-;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:11;;12050:2:16;1013:44:11;;;12032:21:16;12089:2;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;-1:-1:-1;;;12179:18:16;;;12172:32;12221:19;;1013:44:11;11848:398:16;8963:576:2;-1:-1:-1;;;;;9046:21:2;;9038:67;;;;-1:-1:-1;;;9038:67:2;;14812:2:16;9038:67:2;;;14794:21:16;14851:2;14831:18;;;14824:30;14890:34;14870:18;;;14863:62;-1:-1:-1;;;14941:18:16;;;14934:31;14982:19;;9038:67:2;14610:397:16;9038:67:2;9116:49;9137:7;9154:1;9158:6;9116:20;:49::i;:::-;-1:-1:-1;;;;;9201:18:2;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:2;;8610:2:16;9229:71:2;;;8592:21:16;8649:2;8629:18;;;8622:30;8688:34;8668:18;;;8661:62;-1:-1:-1;;;8739:18:16;;;8732:32;8781:19;;9229:71:2;8408:398:16;9229:71:2;-1:-1:-1;;;;;9334:18:2;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:2;;4031:25:16;;;9462:1:2;;-1:-1:-1;;;;;9436:37:2;;;;;4019:2:16;4004:18;9436:37:2;;;;;;;9484:48;9504:7;9521:1;9525:6;9484:19;:48::i;14:173:16:-;82:20;;-1:-1:-1;;;;;131:31:16;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:156::-;258:20;;318:4;307:16;;297:27;;287:55;;338:1;335;328:12;353:186;412:6;465:2;453:9;444:7;440:23;436:32;433:52;;;481:1;478;471:12;433:52;504:29;523:9;504:29;:::i;544:260::-;612:6;620;673:2;661:9;652:7;648:23;644:32;641:52;;;689:1;686;679:12;641:52;712:29;731:9;712:29;:::i;:::-;702:39;;760:38;794:2;783:9;779:18;760:38;:::i;:::-;750:48;;544:260;;;;;:::o;809:328::-;886:6;894;902;955:2;943:9;934:7;930:23;926:32;923:52;;;971:1;968;961:12;923:52;994:29;1013:9;994:29;:::i;:::-;984:39;;1042:38;1076:2;1065:9;1061:18;1042:38;:::i;:::-;1032:48;;1127:2;1116:9;1112:18;1099:32;1089:42;;809:328;;;;;:::o;1142:606::-;1253:6;1261;1269;1277;1285;1293;1301;1354:3;1342:9;1333:7;1329:23;1325:33;1322:53;;;1371:1;1368;1361:12;1322:53;1394:29;1413:9;1394:29;:::i;:::-;1384:39;;1442:38;1476:2;1465:9;1461:18;1442:38;:::i;:::-;1432:48;;1527:2;1516:9;1512:18;1499:32;1489:42;;1578:2;1567:9;1563:18;1550:32;1540:42;;1601:37;1633:3;1622:9;1618:19;1601:37;:::i;:::-;1591:47;;1685:3;1674:9;1670:19;1657:33;1647:43;;1737:3;1726:9;1722:19;1709:33;1699:43;;1142:606;;;;;;;;;;:::o;1753:254::-;1821:6;1829;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1997:2;1982:18;;;;1969:32;;-1:-1:-1;;;1753:254:16:o;2012:531::-;2114:6;2122;2130;2138;2146;2154;2207:3;2195:9;2186:7;2182:23;2178:33;2175:53;;;2224:1;2221;2214:12;2175:53;2247:29;2266:9;2247:29;:::i;:::-;2237:39;;2323:2;2312:9;2308:18;2295:32;2285:42;;2374:2;2363:9;2359:18;2346:32;2336:42;;2397:36;2429:2;2418:9;2414:18;2397:36;:::i;:::-;2387:46;;2480:3;2469:9;2465:19;2452:33;2442:43;;2532:3;2521:9;2517:19;2504:33;2494:43;;2012:531;;;;;;;;:::o;2548:350::-;2615:6;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2794:2;2783:9;2779:18;2766:32;2838:10;2831:5;2827:22;2820:5;2817:33;2807:61;;2864:1;2861;2854:12;2807:61;2887:5;2877:15;;;2548:350;;;;;:::o;2903:180::-;2962:6;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;-1:-1:-1;3054:23:16;;2903:180;-1:-1:-1;2903:180:16:o;5982:597::-;6094:4;6123:2;6152;6141:9;6134:21;6184:6;6178:13;6227:6;6222:2;6211:9;6207:18;6200:34;6252:1;6262:140;6276:6;6273:1;6270:13;6262:140;;;6371:14;;;6367:23;;6361:30;6337:17;;;6356:2;6333:26;6326:66;6291:10;;6262:140;;;6420:6;6417:1;6414:13;6411:91;;;6490:1;6485:2;6476:6;6465:9;6461:22;6457:31;6450:42;6411:91;-1:-1:-1;6563:2:16;6542:15;-1:-1:-1;;6538:29:16;6523:45;;;;6570:2;6519:54;;5982:597;-1:-1:-1;;;5982:597:16:o;13436:356::-;13638:2;13620:21;;;13657:18;;;13650:30;13716:34;13711:2;13696:18;;13689:62;13783:2;13768:18;;13436:356::o;18166:128::-;18206:3;18237:1;18233:6;18230:1;18227:13;18224:39;;;18243:18;;:::i;:::-;-1:-1:-1;18279:9:16;;18166:128::o;18299:217::-;18339:1;18365;18355:132;;18409:10;18404:3;18400:20;18397:1;18390:31;18444:4;18441:1;18434:15;18472:4;18469:1;18462:15;18355:132;-1:-1:-1;18501:9:16;;18299:217::o;18521:125::-;18561:4;18589:1;18586;18583:8;18580:34;;;18594:18;;:::i;:::-;-1:-1:-1;18631:9:16;;18521:125::o;18651:380::-;18730:1;18726:12;;;;18773;;;18794:61;;18848:4;18840:6;18836:17;18826:27;;18794:61;18901:2;18893:6;18890:14;18870:18;18867:38;18864:161;;;18947:10;18942:3;18938:20;18935:1;18928:31;18982:4;18979:1;18972:15;19010:4;19007:1;19000:15;19036:127;19097:10;19092:3;19088:20;19085:1;19078:31;19128:4;19125:1;19118:15;19152:4;19149:1;19142:15;19168:127;19229:10;19224:3;19220:20;19217:1;19210:31;19260:4;19257:1;19250:15;19284:4;19281:1;19274:15;19300:127;19361:10;19356:3;19352:20;19349:1;19342:31;19392:4;19389:1;19382:15;19416:4;19413:1;19406:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1754800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DOMAIN_SEPARATOR()": "infinite",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "24665",
"balanceOf(address)": "2651",
"burn(uint256)": "infinite",
"burnFrom(address,uint256)": "infinite",
"checkpoints(address,uint32)": "5131",
"decimals()": "245",
"decreaseAllowance(address,uint256)": "26955",
"delegate(address)": "infinite",
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
"delegates(address)": "2679",
"getPastTotalSupply(uint256)": "infinite",
"getPastVotes(address,uint256)": "7169",
"getVotes(address)": "7124",
"increaseAllowance(address,uint256)": "27046",
"name()": "infinite",
"nonces(address)": "2661",
"numCheckpoints(address)": "2759",
"owner()": "2409",
"pause()": "29809",
"paused()": "2371",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
"renounceOwnership()": "28196",
"symbol()": "infinite",
"totalSupply()": "2372",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "28455",
"unpause()": "29809"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"DOMAIN_SEPARATOR()": "3644e515",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"checkpoints(address,uint32)": "f1127ed8",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"delegate(address)": "5c19a95c",
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": "c3cda520",
"delegates(address)": "587cde1e",
"getPastTotalSupply(uint256)": "8e539e8c",
"getPastVotes(address,uint256)": "3a46b1a8",
"getVotes(address)": "9ab24eb0",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"nonces(address)": "7ecebe00",
"numCheckpoints(address)": "6fcfff45",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "fromDelegate",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "toDelegate",
"type": "address"
}
],
"name": "DelegateChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "previousBalance",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "newBalance",
"type": "uint256"
}
],
"name": "DelegateVotesChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"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": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint32",
"name": "pos",
"type": "uint32"
}
],
"name": "checkpoints",
"outputs": [
{
"components": [
{
"internalType": "uint32",
"name": "fromBlock",
"type": "uint32"
},
{
"internalType": "uint224",
"name": "votes",
"type": "uint224"
}
],
"internalType": "struct ERC20Votes.Checkpoint",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "expiry",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "delegateBySig",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "delegates",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "getVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "numCheckpoints",
"outputs": [
{
"internalType": "uint32",
"name": "",
"type": "uint32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "fromDelegate",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "toDelegate",
"type": "address"
}
],
"name": "DelegateChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "previousBalance",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "newBalance",
"type": "uint256"
}
],
"name": "DelegateVotesChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"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": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint32",
"name": "pos",
"type": "uint32"
}
],
"name": "checkpoints",
"outputs": [
{
"components": [
{
"internalType": "uint32",
"name": "fromBlock",
"type": "uint32"
},
{
"internalType": "uint224",
"name": "votes",
"type": "uint224"
}
],
"internalType": "struct ERC20Votes.Checkpoint",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "expiry",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "delegateBySig",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "delegates",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "getVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "numCheckpoints",
"outputs": [
{
"internalType": "uint32",
"name": "",
"type": "uint32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"DOMAIN_SEPARATOR()": {
"details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"checkpoints(address,uint32)": {
"details": "Get the `pos`-th checkpoint for `account`."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"delegate(address)": {
"details": "Delegate votes from the sender to `delegatee`."
},
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "Delegates votes from signer to `delegatee`"
},
"delegates(address)": {
"details": "Get the address `account` is currently delegating to."
},
"getPastTotalSupply(uint256)": {
"details": "Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances. It is but NOT the sum of all the delegated votes! Requirements: - `blockNumber` must have been already mined"
},
"getPastVotes(address,uint256)": {
"details": "Retrieve the number of votes for `account` at the end of `blockNumber`. Requirements: - `blockNumber` must have been already mined"
},
"getVotes(address)": {
"details": "Gets the current votes balance for `account`"
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"nonces(address)": {
"details": "See {IERC20Permit-nonces}."
},
"numCheckpoints(address)": {
"details": "Get number of checkpoints for `account`."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "See {IERC20Permit-permit}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-a64d54d1f1.sol": "POLYREMYX"
},
"evmVersion": "berlin",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.3.2/access/Ownable.sol": {
"keccak256": "0x6bb804a310218875e89d12c053e94a13a4607cdf7cc2052f3e52bd32a0dc50a1",
"license": "MIT",
"urls": [
"bzz-raw://b2ebbbe6d0011175bd9e7268b83de3f9c2f9d8d4cbfbaef12aff977d7d727163",
"dweb:/ipfs/Qmd5c7Vxtis9wzkDNhxwc6A2QT5H9xn9kfjhx7qx44vpro"
]
},
"@openzeppelin/contracts@4.3.2/security/Pausable.sol": {
"keccak256": "0xa35b1f2a670cd2a701a52c398032c9fed72df1909fe394d77ceacbf074e8937b",
"license": "MIT",
"urls": [
"bzz-raw://72b957861691ebdaa78c52834465c4f8296480fe4f1a12ba72dc6c0c8ac076dd",
"dweb:/ipfs/QmVz1sHCwgEivHPRDswdt9tdvky7EnWqFmbuk1wFE55VMG"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/ERC20.sol": {
"keccak256": "0xb03df8481a954604ad0c9125680893b2e3f7ff770fe470e38b89ac61b84e8072",
"license": "MIT",
"urls": [
"bzz-raw://b34655953d18ba3a45b762fb6bdbb6549af69a27435e10ece178742bf70baf45",
"dweb:/ipfs/QmcqjUoFLLMyx7dbwSHUnDBH6aphkVHXWQvQRRev5EAWEh"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/IERC20.sol": {
"keccak256": "0x027b891937d20ccf213fdb9c31531574256de774bda99d3a70ecef6e1913ed2a",
"license": "MIT",
"urls": [
"bzz-raw://087318b21c528119f649899f5b5580566dd8d7b0303d4904bd0e8580c3545f14",
"dweb:/ipfs/Qmbn5Mj7aUn8hJuQ8VrQjjEXRsXyJKykgnjR9p4C3nfLtL"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xf98cb1651a90d20ef77d8c1dd10d5fce4954e747603e5672a8292bd4368120dd",
"license": "MIT",
"urls": [
"bzz-raw://76b539a8edd558b010d1ff3e462c5d4edd039b790b91f31a5bce18957655cc9f",
"dweb:/ipfs/QmSdJehhx1SwCWLSFFgHQTmUY2YwDTBQjTVjkmhXhA1srb"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/extensions/ERC20Votes.sol": {
"keccak256": "0x5ededcc80abc4797cdad3c0344c510a6aee060460f3fb8ec5983c4cfaeaef5e7",
"license": "MIT",
"urls": [
"bzz-raw://7de56624893e957550f5ce7d2f799367e84938faafcebfe469ff073aa6e4fdbf",
"dweb:/ipfs/QmQhihi8JUZV84DxK36Sj9THjUhUXpSX1c7PZXsAYUsrSc"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x83fe24f5c04a56091e50f4a345ff504c8bff658a76d4c43b16878c8f940c53b2",
"license": "MIT",
"urls": [
"bzz-raw://d4c3df1a7ca104b633a7d81c6c6f5192367d150cd5a32cba81f7f27012729013",
"dweb:/ipfs/QmSim72e3ZVsfgZt8UceCvbiSuMRHR6WDsiamqNzZahGSY"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/extensions/draft-ERC20Permit.sol": {
"keccak256": "0x7ce4684ee1fac31ee5671df82b30c10bd2ebf88add2f63524ed00618a8486907",
"license": "MIT",
"urls": [
"bzz-raw://8e7303cd711d80537ba1d68118b4fd821f68c339db88ea88706dad96a078c382",
"dweb:/ipfs/QmX4X9avozvtVH8F8ixE8mCvYA2bci1rdiLAcDtTTtaYoL"
]
},
"@openzeppelin/contracts@4.3.2/token/ERC20/extensions/draft-IERC20Permit.sol": {
"keccak256": "0x3aab711a5f9a5a5a394191e928cc8258e8a243e855bb0275e7834f9686383277",
"license": "MIT",
"urls": [
"bzz-raw://40922d7e97d4f43fe30f418bd9e2b95495c9b1caf6df30c87a1df4fd82a1330d",
"dweb:/ipfs/QmZocr8f8MKrLWkmuhBfrb9Ls5eeQ5CoUpA64uGAxAZoLL"
]
},
"@openzeppelin/contracts@4.3.2/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"@openzeppelin/contracts@4.3.2/utils/Counters.sol": {
"keccak256": "0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd",
"license": "MIT",
"urls": [
"bzz-raw://f103065051300cd995fd4599ba91188d4071b92175b52f26110e02db091617c0",
"dweb:/ipfs/QmSyDz67R2HCypDE8Pacn3voVwxw9x17NM66q47YgBnGqc"
]
},
"@openzeppelin/contracts@4.3.2/utils/cryptography/ECDSA.sol": {
"keccak256": "0xbc991a1cf357ce19480831a40792c814238a3b5458134703682abd8aa39719fb",
"license": "MIT",
"urls": [
"bzz-raw://ab2e3313add3a233ad2d1e9b65cb7c0296bdbe159c6d631da2b1d027b4954926",
"dweb:/ipfs/QmT8bVda92mptimLgonyq28qENq4sRgy6K3v118CvZcKdP"
]
},
"@openzeppelin/contracts@4.3.2/utils/cryptography/draft-EIP712.sol": {
"keccak256": "0xba18d725602452307e5b278ed4566616c63792d89f3a0388a6f285428c26e681",
"license": "MIT",
"urls": [
"bzz-raw://ae8649b93777da3acd1cda2e7096d5663b9d414ac6a93fbafb22bfc34b8c0bb6",
"dweb:/ipfs/QmdoZ6ZAj9YzCjKnNo2PmF7Xs8AP3NtiRJZNRzfZEjoy55"
]
},
"@openzeppelin/contracts@4.3.2/utils/math/Math.sol": {
"keccak256": "0x49ebdac5d515aebb95168564158940b79d7d5d12fbfe59cec546a00d57fee64a",
"license": "MIT",
"urls": [
"bzz-raw://c02d3ba19711bffdb7aa33ff3107cfd17902c82640837ef0de2e327515f4f70d",
"dweb:/ipfs/QmdR7JUXpD5X7eXkc24bRtNj3e7ahs8RC8s25cu7X14GHU"
]
},
"@openzeppelin/contracts@4.3.2/utils/math/SafeCast.sol": {
"keccak256": "0x08d867b4c0bb782b9135691fa732b6846e0f133006489c3aa505abd1f6de56cb",
"license": "MIT",
"urls": [
"bzz-raw://b77bcb10d18368236908e2dd94a8e138e330ce672995017c1dae001551a5d639",
"dweb:/ipfs/QmdZs431M8sA4mTsSe8PeycREkBAmzC4a6NN7eFppyK62B"
]
},
"contract-a64d54d1f1.sol": {
"keccak256": "0x457d4b3f0de97f41811d7229ff7179cb1c197f054556b73b74ff5cd64e971f2e",
"license": "MIT",
"urls": [
"bzz-raw://8a09b8df6b661938f5b424dbc20a8e073fa19b8050a37545cb54b7b415bf0a85",
"dweb:/ipfs/QmRX27q7ib324pAkHiquLF2yyAwY9eoYWmtNP4JD2g95nu"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.3.2/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts@4.3.2/security/Pausable.sol";
import "@openzeppelin/contracts@4.3.2/access/Ownable.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC20/extensions/ERC20Votes.sol";
contract POLYREMYX is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit, ERC20Votes {
constructor() ERC20("POLYREMYX", "PRX") ERC20Permit("POLYREMYX") {
_mint(msg.sender, 1000000 * 10 ** decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
// The following functions are overrides required by Solidity.
function _afterTokenTransfer(address from, address to, uint256 amount)
internal
override(ERC20, ERC20Votes)
{
super._afterTokenTransfer(from, to, amount);
}
function _mint(address to, uint256 amount)
internal
override(ERC20, ERC20Votes)
{
super._mint(to, amount);
}
function _burn(address account, uint256 amount)
internal
override(ERC20, ERC20Votes)
{
super._burn(account, amount);
}
}
{"compiler":{"version":"0.8.7+commit.e28d00a7"},"language":"Solidity","output":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.","kind":"dev","methods":{"constructor":{"details":"Initializes the contract setting the deployer as the initial owner."},"owner()":{"details":"Returns the address of the current owner."},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."},"transferOwnership(address)":{"details":"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."}},"version":1},"userdoc":{"kind":"user","methods":{},"version":1}},"settings":{"compilationTarget":{"@openzeppelin/contracts@4.3.2/access/Ownable.sol":"Ownable"},"evmVersion":"berlin","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[]},"sources":{"@openzeppelin/contracts@4.3.2/access/Ownable.sol":{"keccak256":"0x6bb804a310218875e89d12c053e94a13a4607cdf7cc2052f3e52bd32a0dc50a1","license":"MIT","urls":["bzz-raw://b2ebbbe6d0011175bd9e7268b83de3f9c2f9d8d4cbfbaef12aff977d7d727163","dweb:/ipfs/Qmd5c7Vxtis9wzkDNhxwc6A2QT5H9xn9kfjhx7qx44vpro"]},"@openzeppelin/contracts@4.3.2/utils/Context.sol":{"keccak256":"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f","license":"MIT","urls":["bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c","dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"]}},"version":1}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment