ETH Price: $2,952.48 (-0.11%)

Token

Early ZeroLend (earlyZERO)

Overview

Max Total Supply

99,999,999,995.108369230195743352 earlyZERO

Holders

9,996

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptolozan.linea.eth
Balance
20.414161708815647803 earlyZERO

Value
$0.00
0x5b27dadecf9f8e1050ce0f16c82476af92851db9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
EarlyZERO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at lineascan.build/ on 2024-03-12
*/

// Sources flattened with hardhat v2.20.0 https://hardhat.org

// SPDX-License-Identifier: MIT AND UNLICENSED

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.18;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.18;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.18;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.18;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @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 a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of 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
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

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
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.0;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)

pragma solidity ^0.8.0;

/**
 * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
 *
 * The library provides methods for generating a hash of a message that conforms to the
 * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
 * specifications.
 */
library MessageHashUtils {
    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing a bytes32 `messageHash` with
     * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
     * keccak256, although any bytes32 value can be safely used because the final digest will
     * be re-hashed.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing an arbitrary `message` with
     * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
        return
            keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x00` (data with intended validator).
     *
     * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
     * `validator` address. Then hashing the result.
     *
     * See {ECDSA-recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(hex"19_00", validator, data));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
     *
     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
     * `\x19\x01` and hashing the result. It corresponds to the hash signed by the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
     *
     * See {ECDSA-recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, hex"19_01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            digest := keccak256(ptr, 0x42)
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)

pragma solidity ^0.8.0;

// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |
// | length  | 0x                                                              BB |
type ShortString is bytes32;

/**
 * @dev This library provides functions to convert short memory strings
 * into a `ShortString` type that can be used as an immutable variable.
 *
 * Strings of arbitrary length can be optimized using this library if
 * they are short enough (up to 31 bytes) by packing them with their
 * length (1 byte) in a single EVM word (32 bytes). Additionally, a
 * fallback mechanism can be used for every other case.
 *
 * Usage example:
 *
 * ```solidity
 * contract Named {
 *     using ShortStrings for *;
 *
 *     ShortString private immutable _name;
 *     string private _nameFallback;
 *
 *     constructor(string memory contractName) {
 *         _name = contractName.toShortStringWithFallback(_nameFallback);
 *     }
 *
 *     function name() external view returns (string memory) {
 *         return _name.toStringWithFallback(_nameFallback);
 *     }
 * }
 * ```
 */
library ShortStrings {
    // Used as an identifier for strings longer than 31 bytes.
    bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;

    error StringTooLong(string str);
    error InvalidShortString();

    /**
     * @dev Encode a string of at most 31 chars into a `ShortString`.
     *
     * This will trigger a `StringTooLong` error is the input string is too long.
     */
    function toShortString(string memory str) internal pure returns (ShortString) {
        bytes memory bstr = bytes(str);
        if (bstr.length > 31) {
            revert StringTooLong(str);
        }
        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
    }

    /**
     * @dev Decode a `ShortString` back to a "normal" string.
     */
    function toString(ShortString sstr) internal pure returns (string memory) {
        uint256 len = byteLength(sstr);
        // using `new string(len)` would work locally but is not memory safe.
        string memory str = new string(32);
        /// @solidity memory-safe-assembly
        assembly {
            mstore(str, len)
            mstore(add(str, 0x20), sstr)
        }
        return str;
    }

    /**
     * @dev Return the length of a `ShortString`.
     */
    function byteLength(ShortString sstr) internal pure returns (uint256) {
        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
        if (result > 31) {
            revert InvalidShortString();
        }
        return result;
    }

    /**
     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
     */
    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
        if (bytes(value).length < 32) {
            return toShortString(value);
        } else {
            StorageSlot.getStringSlot(store).value = value;
            return ShortString.wrap(FALLBACK_SENTINEL);
        }
    }

    /**
     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     */
    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return toString(value);
        } else {
            return store;
        }
    }

    /**
     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using
     * {setWithFallback}.
     *
     * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
     */
    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return byteLength(value);
        } else {
            return bytes(store).length;
        }
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.0;



/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
 * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
 * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
 * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable
 */
abstract contract EIP712 is IERC5267 {
    using ShortStrings for *;

    bytes32 private constant TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _cachedDomainSeparator;
    uint256 private immutable _cachedChainId;
    address private immutable _cachedThis;

    bytes32 private immutable _hashedName;
    bytes32 private immutable _hashedVersion;

    ShortString private immutable _name;
    ShortString private immutable _version;
    string private _nameFallback;
    string private _versionFallback;

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        _name = name.toShortStringWithFallback(_nameFallback);
        _version = version.toShortStringWithFallback(_versionFallback);
        _hashedName = keccak256(bytes(name));
        _hashedVersion = keccak256(bytes(version));

        _cachedChainId = block.chainid;
        _cachedDomainSeparator = _buildDomainSeparator();
        _cachedThis = address(this);
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
            return _cachedDomainSeparator;
        } else {
            return _buildDomainSeparator();
        }
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {IERC-5267}.
     */
    function eip712Domain()
        public
        view
        virtual
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _EIP712Name(),
            _EIP712Version(),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }

    /**
     * @dev The name parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _name which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Name() internal view returns (string memory) {
        return _name.toStringWithFallback(_nameFallback);
    }

    /**
     * @dev The version parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _version which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Version() internal view returns (string memory) {
        return _version.toStringWithFallback(_versionFallback);
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.0;

/**
 * @dev Provides tracking nonces for addresses. Nonces will only increment.
 */
abstract contract Nonces {
    /**
     * @dev The nonce used for an `account` is not the expected current nonce.
     */
    error InvalidAccountNonce(address account, uint256 currentNonce);

    mapping(address account => uint256) private _nonces;

    /**
     * @dev Returns the next unused nonce for an address.
     */
    function nonces(address owner) public view virtual returns (uint256) {
        return _nonces[owner];
    }

    /**
     * @dev Consumes a nonce.
     *
     * Returns the current value and increments nonce.
     */
    function _useNonce(address owner) internal virtual returns (uint256) {
        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
        // decremented or reset. This guarantees that the nonce never overflows.
        unchecked {
            // It is important to do x++ and not ++x here.
            return _nonces[owner]++;
        }
    }

    /**
     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
     */
    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
        uint256 current = _useNonce(owner);
        if (nonce != current) {
            revert InvalidAccountNonce(owner, current);
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.0;





/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
    bytes32 private constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Permit deadline has expired.
     */
    error ERC2612ExpiredSignature(uint256 deadline);

    /**
     * @dev Mismatched signature.
     */
    error ERC2612InvalidSigner(address signer, address owner);

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @inheritdoc IERC20Permit
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        if (block.timestamp > deadline) {
            revert ERC2612ExpiredSignature(deadline);
        }

        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        if (signer != owner) {
            revert ERC2612InvalidSigner(signer, owner);
        }

        _approve(owner, spender, value);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
        return super.nonces(owner);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
        return _domainSeparatorV4();
    }
}


// File contracts/vesting/earlyzero/EarlyZERO.sol

// Original license: SPDX_License_Identifier: UNLICENSED
pragma solidity ^0.8.0;

// ███████╗███████╗██████╗  ██████╗
// ╚══███╔╝██╔════╝██╔══██╗██╔═══██╗
//   ███╔╝ █████╗  ██████╔╝██║   ██║
//  ███╔╝  ██╔══╝  ██╔══██╗██║   ██║
// ███████╗███████╗██║  ██║╚██████╔╝
// ╚══════╝╚══════╝╚═╝  ╚═╝ ╚═════╝

// Website: https://zerolend.xyz
// Discord: https://discord.gg/zerolend
// Twitter: https://twitter.com/zerolendxyz



contract EarlyZERO is ERC20, ERC20Permit, ERC20Burnable, Ownable {
    mapping(address => bool) public whitelist;
    mapping(address => bool) public blacklist;
    bool public enableWhitelist;
    bool public enableBlacklist;

    constructor()
        ERC20("Early ZeroLend", "earlyZERO")
        ERC20Permit("earlyZERO")
        Ownable(msg.sender)
    {
        whitelist[msg.sender] = true;
        whitelist[address(this)] = true;
        whitelist[address(0)] = true;

        enableWhitelist = true;
        enableBlacklist = false;

        _mint(msg.sender, 100_000_000_000 ether);
    }

    function addblacklist(address who, bool what) external onlyOwner {
        blacklist[who] = what;
    }

    function addwhitelist(address who, bool what) external onlyOwner {
        whitelist[who] = what;
    }

    function toggleWhitelist(bool from, bool to) external onlyOwner {
        enableWhitelist = from;
        enableBlacklist = to;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        super._update(from, to, value);
        if (enableWhitelist) {
            require(whitelist[from] || whitelist[to], "!whitelist");
        }

        if (enableBlacklist) {
            require(!blacklist[to] && !blacklist[from], "blacklist");
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"what","type":"bool"}],"name":"addblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"what","type":"bool"}],"name":"addwhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bool","name":"from","type":"bool"},{"internalType":"bool","name":"to","type":"bool"}],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6101606040523480156200001257600080fd5b50336040518060400160405280600981526020017f6561726c795a45524f0000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f4561726c79205a65726f4c656e640000000000000000000000000000000000008152506040518060400160405280600981526020017f6561726c795a45524f00000000000000000000000000000000000000000000008152508160039081620000fe919062000cfc565b50806004908162000110919062000cfc565b5050506200012e600583620003b860201b62000bcc1790919060201c565b610120818152505062000151600682620003b860201b62000bcc1790919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001906200041560201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002435760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200023a919062000e28565b60405180910390fd5b62000254816200047260201b60201c565b506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550620003b2336c01431e0fae6d7217caa00000006200053860201b60201c565b620011cb565b6000602083511015620003de57620003d683620005c560201b60201c565b90506200040f565b82620003f5836200063260201b62000c101760201c565b600001908162000406919062000cfc565b5060ff60001b90505b92915050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e0516101005146306040516020016200045795949392919062000e71565b60405160208183030381529060405280519060200120905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005ad5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620005a4919062000e28565b60405180910390fd5b620005c1600083836200063c60201b60201c565b5050565b600080829050601f815111156200061557826040517f305a27a90000000000000000000000000000000000000000000000000000000081526004016200060c919062000f5d565b60405180910390fd5b805181620006239062000fb3565b60001c1760001b915050919050565b6000819050919050565b620006548383836200085260201b62000c1a1760201c565b600b60009054906101000a900460ff16156200074f57600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200070c5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6200074e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007459062001073565b60405180910390fd5b5b600b60019054906101000a900460ff16156200084d57600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200080a5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200084c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200084390620010e5565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008a85780600260008282546200089b919062001136565b925050819055506200097e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000937578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200092e9392919062001171565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c9578060026000828254039250508190555062000a16565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a759190620011ae565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0457607f821691505b60208210810362000b1a5762000b1962000abc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b45565b62000b90868362000b45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bdd62000bd762000bd18462000ba8565b62000bb2565b62000ba8565b9050919050565b6000819050919050565b62000bf98362000bbc565b62000c1162000c088262000be4565b84845462000b52565b825550505050565b600090565b62000c2862000c19565b62000c3581848462000bee565b505050565b5b8181101562000c5d5762000c5160008262000c1e565b60018101905062000c3b565b5050565b601f82111562000cac5762000c768162000b20565b62000c818462000b35565b8101602085101562000c91578190505b62000ca962000ca08562000b35565b83018262000c3a565b50505b505050565b600082821c905092915050565b600062000cd16000198460080262000cb1565b1980831691505092915050565b600062000cec838362000cbe565b9150826002028217905092915050565b62000d078262000a82565b67ffffffffffffffff81111562000d235762000d2262000a8d565b5b62000d2f825462000aeb565b62000d3c82828562000c61565b600060209050601f83116001811462000d74576000841562000d5f578287015190505b62000d6b858262000cde565b86555062000ddb565b601f19841662000d848662000b20565b60005b8281101562000dae5784890151825560018201915060208501945060208101905062000d87565b8683101562000dce578489015162000dca601f89168262000cbe565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e108262000de3565b9050919050565b62000e228162000e03565b82525050565b600060208201905062000e3f600083018462000e17565b92915050565b6000819050919050565b62000e5a8162000e45565b82525050565b62000e6b8162000ba8565b82525050565b600060a08201905062000e88600083018862000e4f565b62000e97602083018762000e4f565b62000ea6604083018662000e4f565b62000eb5606083018562000e60565b62000ec4608083018462000e17565b9695505050505050565b600082825260208201905092915050565b60005b8381101562000eff57808201518184015260208101905062000ee2565b60008484015250505050565b6000601f19601f8301169050919050565b600062000f298262000a82565b62000f35818562000ece565b935062000f4781856020860162000edf565b62000f528162000f0b565b840191505092915050565b6000602082019050818103600083015262000f79818462000f1c565b905092915050565b600081519050919050565b6000819050602082019050919050565b600062000faa825162000e45565b80915050919050565b600062000fc08262000f81565b8262000fcc8462000f8c565b905062000fd98162000f9c565b925060208210156200101c57620010177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080262000b45565b831692505b5050919050565b7f2177686974656c69737400000000000000000000000000000000000000000000600082015250565b60006200105b600a8362000ece565b9150620010688262001023565b602082019050919050565b600060208201905081810360008301526200108e816200104c565b9050919050565b7f626c61636b6c6973740000000000000000000000000000000000000000000000600082015250565b6000620010cd60098362000ece565b9150620010da8262001095565b602082019050919050565b600060208201905081810360008301526200110081620010be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011438262000ba8565b9150620011508362000ba8565b92508282019050808211156200116b576200116a62001107565b5b92915050565b600060608201905062001188600083018662000e17565b62001197602083018562000e60565b620011a6604083018462000e60565b949350505050565b6000602082019050620011c5600083018462000e60565b92915050565b60805160a05160c05160e0516101005161012051610140516129d56200122660003960006112f4015260006112b90152600061184b0152600061182a01526000610fe50152600061103b0152600061106401526129d56000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063d505accf11610097578063f2fde38b11610071578063f2fde38b14610454578063f9f92be414610470578063fcd5dd1c146104a0578063ff25856c146104bc57610173565b8063d505accf146103ec578063dd62ed3e14610408578063df49ed7c1461043857610173565b80638da5cb5b1461031657806395d89b41146103345780639b19251a14610352578063a9059cbb14610382578063ca3562e5146103b2578063cdfb2b4e146103ce57610173565b806342966c681161013057806342966c681461025057806370a082311461026c578063715018a61461029c57806379cc6790146102a65780637ecebe00146102c257806384b0196e146102f257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633644e51514610232575b600080fd5b6101806104da565b60405161018d9190611d38565b60405180910390f35b6101b060048036038101906101ab9190611df3565b61056c565b6040516101bd9190611e4e565b60405180910390f35b6101ce61058f565b6040516101db9190611e78565b60405180910390f35b6101fe60048036038101906101f99190611e93565b610599565b60405161020b9190611e4e565b60405180910390f35b61021c6105c8565b6040516102299190611f02565b60405180910390f35b61023a6105d1565b6040516102479190611f36565b60405180910390f35b61026a60048036038101906102659190611f51565b6105e0565b005b61028660048036038101906102819190611f7e565b6105f4565b6040516102939190611e78565b60405180910390f35b6102a461063c565b005b6102c060048036038101906102bb9190611df3565b610650565b005b6102dc60048036038101906102d79190611f7e565b610670565b6040516102e99190611e78565b60405180910390f35b6102fa610682565b60405161030d97969594939291906120b3565b60405180910390f35b61031e61072c565b60405161032b9190612137565b60405180910390f35b61033c610756565b6040516103499190611d38565b60405180910390f35b61036c60048036038101906103679190611f7e565b6107e8565b6040516103799190611e4e565b60405180910390f35b61039c60048036038101906103979190611df3565b610808565b6040516103a99190611e4e565b60405180910390f35b6103cc60048036038101906103c7919061217e565b61082b565b005b6103d661088e565b6040516103e39190611e4e565b60405180910390f35b61040660048036038101906104019190612216565b6108a1565b005b610422600480360381019061041d91906122b8565b6109e9565b60405161042f9190611e78565b60405180910390f35b610452600480360381019061044d919061217e565b610a70565b005b61046e60048036038101906104699190611f7e565b610ad3565b005b61048a60048036038101906104859190611f7e565b610b59565b6040516104979190611e4e565b60405180910390f35b6104ba60048036038101906104b591906122f8565b610b79565b005b6104c4610bb9565b6040516104d19190611e4e565b60405180910390f35b6060600380546104e990612367565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612367565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600080610577610e3f565b9050610584818585610e47565b600191505092915050565b6000600254905090565b6000806105a4610e3f565b90506105b1858285610e59565b6105bc858585610eed565b60019150509392505050565b60006012905090565b60006105db610fe1565b905090565b6105f16105eb610e3f565b82611098565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064461111a565b61064e60006111a1565b565b6106628261065c610e3f565b83610e59565b61066c8282611098565b5050565b600061067b82611267565b9050919050565b6000606080600080600060606106966112b0565b61069e6112eb565b46306000801b600067ffffffffffffffff8111156106bf576106be612398565b5b6040519080825280602002602001820160405280156106ed5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076590612367565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612367565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b600080610813610e3f565b9050610820818585610eed565b600191505092915050565b61083361111a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900460ff1681565b834211156108e657836040517f627913020000000000000000000000000000000000000000000000000000000081526004016108dd9190611e78565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109158c611326565b8960405160200161092b969594939291906123c7565b604051602081830303815290604052805190602001209050600061094e8261137d565b9050600061095e82878787611397565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d257808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016109c9929190612428565b60405180910390fd5b6109dd8a8a8a610e47565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7861111a565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610adb61111a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4d5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b449190612137565b60405180910390fd5b610b56816111a1565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b8161111a565b81600b60006101000a81548160ff02191690831515021790555080600b60016101000a81548160ff0219169083151502179055505050565b600b60019054906101000a900460ff1681565b6000602083511015610be857610be1836113c7565b9050610c0a565b82610bf283610c10565b6000019081610c0191906125fd565b5060ff60001b90505b92915050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6c578060026000828254610c6091906126fe565b92505081905550610d3f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf8578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cef93929190612732565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d885780600260008282540392505081905550610dd5565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e329190611e78565b60405180910390a3505050565b600033905090565b610e54838383600161142f565b505050565b6000610e6584846109e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee75781811015610ed7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ece93929190612732565b60405180910390fd5b610ee68484848403600061142f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5f5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f569190612137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd15760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc89190612137565b60405180910390fd5b610fdc838383611606565b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561105d57507f000000000000000000000000000000000000000000000000000000000000000046145b1561108a577f00000000000000000000000000000000000000000000000000000000000000009050611095565b611092611805565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111019190612137565b60405180910390fd5b61111682600083611606565b5050565b611122610e3f565b73ffffffffffffffffffffffffffffffffffffffff1661114061072c565b73ffffffffffffffffffffffffffffffffffffffff161461119f57611163610e3f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111969190612137565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606112e660057f000000000000000000000000000000000000000000000000000000000000000061189b90919063ffffffff16565b905090565b606061132160067f000000000000000000000000000000000000000000000000000000000000000061189b90919063ffffffff16565b905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050559050919050565b600061139061138a610fe1565b8361194b565b9050919050565b6000806000806113a98888888861198c565b9250925092506113b98282611a80565b829350505050949350505050565b600080829050601f8151111561141457826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040161140b9190611d38565b60405180910390fd5b80518161142090612799565b60001c1760001b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114a15760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114989190612137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115135760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161150a9190612137565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611600578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115f79190611e78565b60405180910390a35b50505050565b611611838383610c1a565b600b60009054906101000a900460ff161561170757600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116c75750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd9061284c565b60405180910390fd5b5b600b60019054906101000a900460ff161561180057600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117c05750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906128b8565b60405180910390fd5b5b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016118809594939291906128d8565b60405160208183030381529060405280519060200120905090565b606060ff60001b83146118b8576118b183611be4565b9050611945565b8180546118c490612367565b80601f01602080910402602001604051908101604052809291908181526020018280546118f090612367565b801561193d5780601f106119125761010080835404028352916020019161193d565b820191906000526020600020905b81548152906001019060200180831161192057829003601f168201915b505050505090505b92915050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b60008060007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08460001c11156119cc576000600385925092509250611a76565b6000600188888888604051600081526020016040526040516119f1949392919061292b565b6020604051602081039080840390855afa158015611a13573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a6757600060016000801b93509350935050611a76565b8060008060001b935093509350505b9450945094915050565b60006003811115611a9457611a93612970565b5b826003811115611aa757611aa6612970565b5b0315611be05760016003811115611ac157611ac0612970565b5b826003811115611ad457611ad3612970565b5b03611b0b576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611b1f57611b1e612970565b5b826003811115611b3257611b31612970565b5b03611b77578060001c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401611b6e9190611e78565b60405180910390fd5b600380811115611b8a57611b89612970565b5b826003811115611b9d57611b9c612970565b5b03611bdf57806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401611bd69190611f36565b60405180910390fd5b5b5050565b60606000611bf183611c58565b90506000602067ffffffffffffffff811115611c1057611c0f612398565b5b6040519080825280601f01601f191660200182016040528015611c425781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b60008060ff8360001c169050601f811115611c9f576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce2578082015181840152602081019050611cc7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0a82611ca8565b611d148185611cb3565b9350611d24818560208601611cc4565b611d2d81611cee565b840191505092915050565b60006020820190508181036000830152611d528184611cff565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8a82611d5f565b9050919050565b611d9a81611d7f565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b6000819050919050565b611dd081611dbd565b8114611ddb57600080fd5b50565b600081359050611ded81611dc7565b92915050565b60008060408385031215611e0a57611e09611d5a565b5b6000611e1885828601611da8565b9250506020611e2985828601611dde565b9150509250929050565b60008115159050919050565b611e4881611e33565b82525050565b6000602082019050611e636000830184611e3f565b92915050565b611e7281611dbd565b82525050565b6000602082019050611e8d6000830184611e69565b92915050565b600080600060608486031215611eac57611eab611d5a565b5b6000611eba86828701611da8565b9350506020611ecb86828701611da8565b9250506040611edc86828701611dde565b9150509250925092565b600060ff82169050919050565b611efc81611ee6565b82525050565b6000602082019050611f176000830184611ef3565b92915050565b6000819050919050565b611f3081611f1d565b82525050565b6000602082019050611f4b6000830184611f27565b92915050565b600060208284031215611f6757611f66611d5a565b5b6000611f7584828501611dde565b91505092915050565b600060208284031215611f9457611f93611d5a565b5b6000611fa284828501611da8565b91505092915050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611fe081611fab565b82525050565b611fef81611d7f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61202a81611dbd565b82525050565b600061203c8383612021565b60208301905092915050565b6000602082019050919050565b600061206082611ff5565b61206a8185612000565b935061207583612011565b8060005b838110156120a657815161208d8882612030565b975061209883612048565b925050600181019050612079565b5085935050505092915050565b600060e0820190506120c8600083018a611fd7565b81810360208301526120da8189611cff565b905081810360408301526120ee8188611cff565b90506120fd6060830187611e69565b61210a6080830186611fe6565b61211760a0830185611f27565b81810360c08301526121298184612055565b905098975050505050505050565b600060208201905061214c6000830184611fe6565b92915050565b61215b81611e33565b811461216657600080fd5b50565b60008135905061217881612152565b92915050565b6000806040838503121561219557612194611d5a565b5b60006121a385828601611da8565b92505060206121b485828601612169565b9150509250929050565b6121c781611ee6565b81146121d257600080fd5b50565b6000813590506121e4816121be565b92915050565b6121f381611f1d565b81146121fe57600080fd5b50565b600081359050612210816121ea565b92915050565b600080600080600080600060e0888a03121561223557612234611d5a565b5b60006122438a828b01611da8565b97505060206122548a828b01611da8565b96505060406122658a828b01611dde565b95505060606122768a828b01611dde565b94505060806122878a828b016121d5565b93505060a06122988a828b01612201565b92505060c06122a98a828b01612201565b91505092959891949750929550565b600080604083850312156122cf576122ce611d5a565b5b60006122dd85828601611da8565b92505060206122ee85828601611da8565b9150509250929050565b6000806040838503121561230f5761230e611d5a565b5b600061231d85828601612169565b925050602061232e85828601612169565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237f57607f821691505b60208210810361239257612391612338565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060c0820190506123dc6000830189611f27565b6123e96020830188611fe6565b6123f66040830187611fe6565b6124036060830186611e69565b6124106080830185611e69565b61241d60a0830184611e69565b979650505050505050565b600060408201905061243d6000830185611fe6565b61244a6020830184611fe6565b9392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612476565b6124bd8683612476565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124fa6124f56124f084611dbd565b6124d5565b611dbd565b9050919050565b6000819050919050565b612514836124df565b61252861252082612501565b848454612483565b825550505050565b600090565b61253d612530565b61254881848461250b565b505050565b5b8181101561256c57612561600082612535565b60018101905061254e565b5050565b601f8211156125b15761258281612451565b61258b84612466565b8101602085101561259a578190505b6125ae6125a685612466565b83018261254d565b50505b505050565b600082821c905092915050565b60006125d4600019846008026125b6565b1980831691505092915050565b60006125ed83836125c3565b9150826002028217905092915050565b61260682611ca8565b67ffffffffffffffff81111561261f5761261e612398565b5b6126298254612367565b612634828285612570565b600060209050601f8311600181146126675760008415612655578287015190505b61265f85826125e1565b8655506126c7565b601f19841661267586612451565b60005b8281101561269d57848901518255600182019150602085019450602081019050612678565b868310156126ba57848901516126b6601f8916826125c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270982611dbd565b915061271483611dbd565b925082820190508082111561272c5761272b6126cf565b5b92915050565b60006060820190506127476000830186611fe6565b6127546020830185611e69565b6127616040830184611e69565b949350505050565b600081519050919050565b6000819050602082019050919050565b60006127908251611f1d565b80915050919050565b60006127a482612769565b826127ae84612774565b90506127b981612784565b925060208210156127f9576127f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802612476565b831692505b5050919050565b7f2177686974656c69737400000000000000000000000000000000000000000000600082015250565b6000612836600a83611cb3565b915061284182612800565b602082019050919050565b6000602082019050818103600083015261286581612829565b9050919050565b7f626c61636b6c6973740000000000000000000000000000000000000000000000600082015250565b60006128a2600983611cb3565b91506128ad8261286c565b602082019050919050565b600060208201905081810360008301526128d181612895565b9050919050565b600060a0820190506128ed6000830188611f27565b6128fa6020830187611f27565b6129076040830186611f27565b6129146060830185611e69565b6129216080830184611fe6565b9695505050505050565b60006080820190506129406000830187611f27565b61294d6020830186611ef3565b61295a6040830185611f27565b6129676060830184611f27565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220587b13166533e4f815acfa794aaa55fafa47953070dbeae724ba15d135f40ba464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063d505accf11610097578063f2fde38b11610071578063f2fde38b14610454578063f9f92be414610470578063fcd5dd1c146104a0578063ff25856c146104bc57610173565b8063d505accf146103ec578063dd62ed3e14610408578063df49ed7c1461043857610173565b80638da5cb5b1461031657806395d89b41146103345780639b19251a14610352578063a9059cbb14610382578063ca3562e5146103b2578063cdfb2b4e146103ce57610173565b806342966c681161013057806342966c681461025057806370a082311461026c578063715018a61461029c57806379cc6790146102a65780637ecebe00146102c257806384b0196e146102f257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633644e51514610232575b600080fd5b6101806104da565b60405161018d9190611d38565b60405180910390f35b6101b060048036038101906101ab9190611df3565b61056c565b6040516101bd9190611e4e565b60405180910390f35b6101ce61058f565b6040516101db9190611e78565b60405180910390f35b6101fe60048036038101906101f99190611e93565b610599565b60405161020b9190611e4e565b60405180910390f35b61021c6105c8565b6040516102299190611f02565b60405180910390f35b61023a6105d1565b6040516102479190611f36565b60405180910390f35b61026a60048036038101906102659190611f51565b6105e0565b005b61028660048036038101906102819190611f7e565b6105f4565b6040516102939190611e78565b60405180910390f35b6102a461063c565b005b6102c060048036038101906102bb9190611df3565b610650565b005b6102dc60048036038101906102d79190611f7e565b610670565b6040516102e99190611e78565b60405180910390f35b6102fa610682565b60405161030d97969594939291906120b3565b60405180910390f35b61031e61072c565b60405161032b9190612137565b60405180910390f35b61033c610756565b6040516103499190611d38565b60405180910390f35b61036c60048036038101906103679190611f7e565b6107e8565b6040516103799190611e4e565b60405180910390f35b61039c60048036038101906103979190611df3565b610808565b6040516103a99190611e4e565b60405180910390f35b6103cc60048036038101906103c7919061217e565b61082b565b005b6103d661088e565b6040516103e39190611e4e565b60405180910390f35b61040660048036038101906104019190612216565b6108a1565b005b610422600480360381019061041d91906122b8565b6109e9565b60405161042f9190611e78565b60405180910390f35b610452600480360381019061044d919061217e565b610a70565b005b61046e60048036038101906104699190611f7e565b610ad3565b005b61048a60048036038101906104859190611f7e565b610b59565b6040516104979190611e4e565b60405180910390f35b6104ba60048036038101906104b591906122f8565b610b79565b005b6104c4610bb9565b6040516104d19190611e4e565b60405180910390f35b6060600380546104e990612367565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612367565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600080610577610e3f565b9050610584818585610e47565b600191505092915050565b6000600254905090565b6000806105a4610e3f565b90506105b1858285610e59565b6105bc858585610eed565b60019150509392505050565b60006012905090565b60006105db610fe1565b905090565b6105f16105eb610e3f565b82611098565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064461111a565b61064e60006111a1565b565b6106628261065c610e3f565b83610e59565b61066c8282611098565b5050565b600061067b82611267565b9050919050565b6000606080600080600060606106966112b0565b61069e6112eb565b46306000801b600067ffffffffffffffff8111156106bf576106be612398565b5b6040519080825280602002602001820160405280156106ed5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076590612367565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612367565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b600080610813610e3f565b9050610820818585610eed565b600191505092915050565b61083361111a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900460ff1681565b834211156108e657836040517f627913020000000000000000000000000000000000000000000000000000000081526004016108dd9190611e78565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109158c611326565b8960405160200161092b969594939291906123c7565b604051602081830303815290604052805190602001209050600061094e8261137d565b9050600061095e82878787611397565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d257808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016109c9929190612428565b60405180910390fd5b6109dd8a8a8a610e47565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7861111a565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610adb61111a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4d5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b449190612137565b60405180910390fd5b610b56816111a1565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b8161111a565b81600b60006101000a81548160ff02191690831515021790555080600b60016101000a81548160ff0219169083151502179055505050565b600b60019054906101000a900460ff1681565b6000602083511015610be857610be1836113c7565b9050610c0a565b82610bf283610c10565b6000019081610c0191906125fd565b5060ff60001b90505b92915050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6c578060026000828254610c6091906126fe565b92505081905550610d3f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf8578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cef93929190612732565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d885780600260008282540392505081905550610dd5565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e329190611e78565b60405180910390a3505050565b600033905090565b610e54838383600161142f565b505050565b6000610e6584846109e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee75781811015610ed7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ece93929190612732565b60405180910390fd5b610ee68484848403600061142f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5f5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f569190612137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd15760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc89190612137565b60405180910390fd5b610fdc838383611606565b505050565b60007f00000000000000000000000040a59a3f3b16d9e74c811d24d8b7969664cfe18073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561105d57507f000000000000000000000000000000000000000000000000000000000000e70846145b1561108a577f39171a6878f128ef348d2803554cb47a22d6f724f888c243bc6369add657e8689050611095565b611092611805565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111019190612137565b60405180910390fd5b61111682600083611606565b5050565b611122610e3f565b73ffffffffffffffffffffffffffffffffffffffff1661114061072c565b73ffffffffffffffffffffffffffffffffffffffff161461119f57611163610e3f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111969190612137565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606112e660057f6561726c795a45524f000000000000000000000000000000000000000000000961189b90919063ffffffff16565b905090565b606061132160067f310000000000000000000000000000000000000000000000000000000000000161189b90919063ffffffff16565b905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050559050919050565b600061139061138a610fe1565b8361194b565b9050919050565b6000806000806113a98888888861198c565b9250925092506113b98282611a80565b829350505050949350505050565b600080829050601f8151111561141457826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040161140b9190611d38565b60405180910390fd5b80518161142090612799565b60001c1760001b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114a15760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114989190612137565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115135760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161150a9190612137565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611600578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115f79190611e78565b60405180910390a35b50505050565b611611838383610c1a565b600b60009054906101000a900460ff161561170757600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116c75750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd9061284c565b60405180910390fd5b5b600b60019054906101000a900460ff161561180057600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117c05750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906128b8565b60405180910390fd5b5b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fc33433c7fd6468d66090e6a351f81fba4db4f49955b023ef06d60fc914575eb17fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016118809594939291906128d8565b60405160208183030381529060405280519060200120905090565b606060ff60001b83146118b8576118b183611be4565b9050611945565b8180546118c490612367565b80601f01602080910402602001604051908101604052809291908181526020018280546118f090612367565b801561193d5780601f106119125761010080835404028352916020019161193d565b820191906000526020600020905b81548152906001019060200180831161192057829003601f168201915b505050505090505b92915050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b60008060007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08460001c11156119cc576000600385925092509250611a76565b6000600188888888604051600081526020016040526040516119f1949392919061292b565b6020604051602081039080840390855afa158015611a13573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a6757600060016000801b93509350935050611a76565b8060008060001b935093509350505b9450945094915050565b60006003811115611a9457611a93612970565b5b826003811115611aa757611aa6612970565b5b0315611be05760016003811115611ac157611ac0612970565b5b826003811115611ad457611ad3612970565b5b03611b0b576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611b1f57611b1e612970565b5b826003811115611b3257611b31612970565b5b03611b77578060001c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401611b6e9190611e78565b60405180910390fd5b600380811115611b8a57611b89612970565b5b826003811115611b9d57611b9c612970565b5b03611bdf57806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401611bd69190611f36565b60405180910390fd5b5b5050565b60606000611bf183611c58565b90506000602067ffffffffffffffff811115611c1057611c0f612398565b5b6040519080825280601f01601f191660200182016040528015611c425781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b60008060ff8360001c169050601f811115611c9f576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce2578082015181840152602081019050611cc7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0a82611ca8565b611d148185611cb3565b9350611d24818560208601611cc4565b611d2d81611cee565b840191505092915050565b60006020820190508181036000830152611d528184611cff565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8a82611d5f565b9050919050565b611d9a81611d7f565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b6000819050919050565b611dd081611dbd565b8114611ddb57600080fd5b50565b600081359050611ded81611dc7565b92915050565b60008060408385031215611e0a57611e09611d5a565b5b6000611e1885828601611da8565b9250506020611e2985828601611dde565b9150509250929050565b60008115159050919050565b611e4881611e33565b82525050565b6000602082019050611e636000830184611e3f565b92915050565b611e7281611dbd565b82525050565b6000602082019050611e8d6000830184611e69565b92915050565b600080600060608486031215611eac57611eab611d5a565b5b6000611eba86828701611da8565b9350506020611ecb86828701611da8565b9250506040611edc86828701611dde565b9150509250925092565b600060ff82169050919050565b611efc81611ee6565b82525050565b6000602082019050611f176000830184611ef3565b92915050565b6000819050919050565b611f3081611f1d565b82525050565b6000602082019050611f4b6000830184611f27565b92915050565b600060208284031215611f6757611f66611d5a565b5b6000611f7584828501611dde565b91505092915050565b600060208284031215611f9457611f93611d5a565b5b6000611fa284828501611da8565b91505092915050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611fe081611fab565b82525050565b611fef81611d7f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61202a81611dbd565b82525050565b600061203c8383612021565b60208301905092915050565b6000602082019050919050565b600061206082611ff5565b61206a8185612000565b935061207583612011565b8060005b838110156120a657815161208d8882612030565b975061209883612048565b925050600181019050612079565b5085935050505092915050565b600060e0820190506120c8600083018a611fd7565b81810360208301526120da8189611cff565b905081810360408301526120ee8188611cff565b90506120fd6060830187611e69565b61210a6080830186611fe6565b61211760a0830185611f27565b81810360c08301526121298184612055565b905098975050505050505050565b600060208201905061214c6000830184611fe6565b92915050565b61215b81611e33565b811461216657600080fd5b50565b60008135905061217881612152565b92915050565b6000806040838503121561219557612194611d5a565b5b60006121a385828601611da8565b92505060206121b485828601612169565b9150509250929050565b6121c781611ee6565b81146121d257600080fd5b50565b6000813590506121e4816121be565b92915050565b6121f381611f1d565b81146121fe57600080fd5b50565b600081359050612210816121ea565b92915050565b600080600080600080600060e0888a03121561223557612234611d5a565b5b60006122438a828b01611da8565b97505060206122548a828b01611da8565b96505060406122658a828b01611dde565b95505060606122768a828b01611dde565b94505060806122878a828b016121d5565b93505060a06122988a828b01612201565b92505060c06122a98a828b01612201565b91505092959891949750929550565b600080604083850312156122cf576122ce611d5a565b5b60006122dd85828601611da8565b92505060206122ee85828601611da8565b9150509250929050565b6000806040838503121561230f5761230e611d5a565b5b600061231d85828601612169565b925050602061232e85828601612169565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237f57607f821691505b60208210810361239257612391612338565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060c0820190506123dc6000830189611f27565b6123e96020830188611fe6565b6123f66040830187611fe6565b6124036060830186611e69565b6124106080830185611e69565b61241d60a0830184611e69565b979650505050505050565b600060408201905061243d6000830185611fe6565b61244a6020830184611fe6565b9392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612476565b6124bd8683612476565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124fa6124f56124f084611dbd565b6124d5565b611dbd565b9050919050565b6000819050919050565b612514836124df565b61252861252082612501565b848454612483565b825550505050565b600090565b61253d612530565b61254881848461250b565b505050565b5b8181101561256c57612561600082612535565b60018101905061254e565b5050565b601f8211156125b15761258281612451565b61258b84612466565b8101602085101561259a578190505b6125ae6125a685612466565b83018261254d565b50505b505050565b600082821c905092915050565b60006125d4600019846008026125b6565b1980831691505092915050565b60006125ed83836125c3565b9150826002028217905092915050565b61260682611ca8565b67ffffffffffffffff81111561261f5761261e612398565b5b6126298254612367565b612634828285612570565b600060209050601f8311600181146126675760008415612655578287015190505b61265f85826125e1565b8655506126c7565b601f19841661267586612451565b60005b8281101561269d57848901518255600182019150602085019450602081019050612678565b868310156126ba57848901516126b6601f8916826125c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270982611dbd565b915061271483611dbd565b925082820190508082111561272c5761272b6126cf565b5b92915050565b60006060820190506127476000830186611fe6565b6127546020830185611e69565b6127616040830184611e69565b949350505050565b600081519050919050565b6000819050602082019050919050565b60006127908251611f1d565b80915050919050565b60006127a482612769565b826127ae84612774565b90506127b981612784565b925060208210156127f9576127f47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802612476565b831692505b5050919050565b7f2177686974656c69737400000000000000000000000000000000000000000000600082015250565b6000612836600a83611cb3565b915061284182612800565b602082019050919050565b6000602082019050818103600083015261286581612829565b9050919050565b7f626c61636b6c6973740000000000000000000000000000000000000000000000600082015250565b60006128a2600983611cb3565b91506128ad8261286c565b602082019050919050565b600060208201905081810360008301526128d181612895565b9050919050565b600060a0820190506128ed6000830188611f27565b6128fa6020830187611f27565b6129076040830186611f27565b6129146060830185611e69565b6129216080830184611fe6565b9695505050505050565b60006080820190506129406000830187611f27565b61294d6020830186611ef3565b61295a6040830185611f27565b6129676060830184611f27565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220587b13166533e4f815acfa794aaa55fafa47953070dbeae724ba15d135f40ba464736f6c63430008120033

Deployed Bytecode Sourcemap

84896:1393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16925:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19218:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18027:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19986:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17878:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83935:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26904:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18189:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3586:103;;;:::i;:::-;;27322:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83677:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78226:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;2911:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17135:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84968:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18512:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85633:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85064:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82923:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18757:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85520:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3844:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85016:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85746:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85098:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16925:91;16970:13;17003:5;16996:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16925:91;:::o;19218:190::-;19291:4;19308:13;19324:12;:10;:12::i;:::-;19308:28;;19347:31;19356:5;19363:7;19372:5;19347:8;:31::i;:::-;19396:4;19389:11;;;19218:190;;;;:::o;18027:99::-;18079:7;18106:12;;18099:19;;18027:99;:::o;19986:249::-;20073:4;20090:15;20108:12;:10;:12::i;:::-;20090:30;;20131:37;20147:4;20153:7;20162:5;20131:15;:37::i;:::-;20179:26;20189:4;20195:2;20199:5;20179:9;:26::i;:::-;20223:4;20216:11;;;19986:249;;;;;:::o;17878:84::-;17927:5;17952:2;17945:9;;17878:84;:::o;83935:114::-;83994:7;84021:20;:18;:20::i;:::-;84014:27;;83935:114;:::o;26904:89::-;26959:26;26965:12;:10;:12::i;:::-;26979:5;26959;:26::i;:::-;26904:89;:::o;18189:118::-;18254:7;18281:9;:18;18291:7;18281:18;;;;;;;;;;;;;;;;18274:25;;18189:118;;;:::o;3586:103::-;2797:13;:11;:13::i;:::-;3651:30:::1;3678:1;3651:18;:30::i;:::-;3586:103::o:0;27322:161::-;27398:45;27414:7;27423:12;:10;:12::i;:::-;27437:5;27398:15;:45::i;:::-;27454:21;27460:7;27469:5;27454;:21::i;:::-;27322:161;;:::o;83677:145::-;83768:7;83795:19;83808:5;83795:12;:19::i;:::-;83788:26;;83677:145;;;:::o;78226:580::-;78329:13;78357:18;78390:21;78426:15;78456:25;78496:12;78523:27;78631:13;:11;:13::i;:::-;78659:16;:14;:16::i;:::-;78690:13;78726:4;78754:1;78746:10;;78785:1;78771:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78578:220;;;;;;;;;;;;;;;;;;;;;78226:580;;;;;;;:::o;2911:87::-;2957:7;2984:6;;;;;;;;;;;2977:13;;2911:87;:::o;17135:95::-;17182:13;17215:7;17208:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17135:95;:::o;84968:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;18512:182::-;18581:4;18598:13;18614:12;:10;:12::i;:::-;18598:28;;18637:27;18647:5;18654:2;18658:5;18637:9;:27::i;:::-;18682:4;18675:11;;;18512:182;;;;:::o;85633:105::-;2797:13;:11;:13::i;:::-;85726:4:::1;85709:9;:14;85719:3;85709:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;85633:105:::0;;:::o;85064:27::-;;;;;;;;;;;;;:::o;82923:695::-;83153:8;83135:15;:26;83131:99;;;83209:8;83185:33;;;;;;;;;;;:::i;:::-;;;;;;;;83131:99;83242:18;82243:95;83301:5;83308:7;83317:5;83324:16;83334:5;83324:9;:16::i;:::-;83342:8;83273:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83263:89;;;;;;83242:110;;83365:12;83380:28;83397:10;83380:16;:28::i;:::-;83365:43;;83421:14;83438:28;83452:4;83458:1;83461;83464;83438:13;:28::i;:::-;83421:45;;83491:5;83481:15;;:6;:15;;;83477:90;;83541:6;83549:5;83520:35;;;;;;;;;;;;:::i;:::-;;;;;;;;83477:90;83579:31;83588:5;83595:7;83604:5;83579:8;:31::i;:::-;83120:498;;;82923:695;;;;;;;:::o;18757:142::-;18837:7;18864:11;:18;18876:5;18864:18;;;;;;;;;;;;;;;:27;18883:7;18864:27;;;;;;;;;;;;;;;;18857:34;;18757:142;;;;:::o;85520:105::-;2797:13;:11;:13::i;:::-;85613:4:::1;85596:9;:14;85606:3;85596:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;85520:105:::0;;:::o;3844:220::-;2797:13;:11;:13::i;:::-;3949:1:::1;3929:22;;:8;:22;;::::0;3925:93:::1;;4003:1;3975:31;;;;;;;;;;;:::i;:::-;;;;;;;;3925:93;4028:28;4047:8;4028:18;:28::i;:::-;3844:220:::0;:::o;85016:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;85746:136::-;2797:13;:11;:13::i;:::-;85839:4:::1;85821:15;;:22;;;;;;;;;;;;;;;;;;85872:2;85854:15;;:20;;;;;;;;;;;;;;;;;;85746:136:::0;;:::o;85098:27::-;;;;;;;;;;;;;:::o;71623:347::-;71719:11;71769:2;71753:5;71747:19;:24;71743:220;;;71795:20;71809:5;71795:13;:20::i;:::-;71788:27;;;;71743:220;71889:5;71848:32;71874:5;71848:25;:32::i;:::-;:38;;:46;;;;;;:::i;:::-;;70052:66;71933:17;;71909:42;;71623:347;;;;;:::o;67762:207::-;67830:20;67941:10;67931:20;;67762:207;;;:::o;21252:1135::-;21358:1;21342:18;;:4;:18;;;21338:552;;21496:5;21480:12;;:21;;;;;;;:::i;:::-;;;;;;;;21338:552;;;21534:19;21556:9;:15;21566:4;21556:15;;;;;;;;;;;;;;;;21534:37;;21604:5;21590:11;:19;21586:117;;;21662:4;21668:11;21681:5;21637:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21586:117;21858:5;21844:11;:19;21826:9;:15;21836:4;21826:15;;;;;;;;;;;;;;;:37;;;;21519:371;21338:552;21920:1;21906:16;;:2;:16;;;21902:435;;22088:5;22072:12;;:21;;;;;;;;;;;21902:435;;;22305:5;22288:9;:13;22298:2;22288:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21902:435;22369:2;22354:25;;22363:4;22354:25;;;22373:5;22354:25;;;;;;:::i;:::-;;;;;;;;21252:1135;;;:::o;865:98::-;918:7;945:10;938:17;;865:98;:::o;24045:130::-;24130:37;24139:5;24146:7;24155:5;24162:4;24130:8;:37::i;:::-;24045:130;;;:::o;25761:487::-;25861:24;25888:25;25898:5;25905:7;25888:9;:25::i;:::-;25861:52;;25948:17;25928:16;:37;25924:317;;26005:5;25986:16;:24;25982:132;;;26065:7;26074:16;26092:5;26038:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25982:132;26157:57;26166:5;26173:7;26201:5;26182:16;:24;26208:5;26157:8;:57::i;:::-;25924:317;25850:398;25761:487;;;:::o;20620:308::-;20720:1;20704:18;;:4;:18;;;20700:88;;20773:1;20746:30;;;;;;;;;;;:::i;:::-;;;;;;;;20700:88;20816:1;20802:16;;:2;:16;;;20798:88;;20871:1;20842:32;;;;;;;;;;;:::i;:::-;;;;;;;;20798:88;20896:24;20904:4;20910:2;20914:5;20896:7;:24::i;:::-;20620:308;;;:::o;76893:268::-;76946:7;76987:11;76970:28;;76978:4;76970:28;;;:63;;;;;77019:14;77002:13;:31;76970:63;76966:188;;;77057:22;77050:29;;;;76966:188;77119:23;:21;:23::i;:::-;77112:30;;76893:268;;:::o;23281:211::-;23371:1;23352:21;;:7;:21;;;23348:91;;23424:1;23397:30;;;;;;;;;;;:::i;:::-;;;;;;;;23348:91;23449:35;23457:7;23474:1;23478:5;23449:7;:35::i;:::-;23281:211;;:::o;3076:166::-;3147:12;:10;:12::i;:::-;3136:23;;:7;:5;:7::i;:::-;:23;;;3132:103;;3210:12;:10;:12::i;:::-;3183:40;;;;;;;;;;;:::i;:::-;;;;;;;;3132:103;3076:166::o;4224:191::-;4298:16;4317:6;;;;;;;;;;;4298:25;;4343:8;4334:6;;:17;;;;;;;;;;;;;;;;;;4398:8;4367:40;;4388:8;4367:40;;;;;;;;;;;;4287:128;4224:191;:::o;80376:109::-;80436:7;80463;:14;80471:5;80463:14;;;;;;;;;;;;;;;;80456:21;;80376:109;;;:::o;79135:128::-;79181:13;79214:41;79241:13;79214:5;:26;;:41;;;;:::i;:::-;79207:48;;79135:128;:::o;79598:137::-;79647:13;79680:47;79710:16;79680:8;:29;;:47;;;;:::i;:::-;79673:54;;79598:137;:::o;80606:402::-;80666:7;80973;:14;80981:5;80973:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;80966:23;;80606:402;;;:::o;77992:178::-;78069:7;78096:66;78129:20;:18;:20::i;:::-;78151:10;78096:32;:66::i;:::-;78089:73;;77992:178;;;:::o;38532:264::-;38617:7;38638:17;38657:18;38677:16;38697:25;38708:4;38714:1;38717;38720;38697:10;:25::i;:::-;38637:85;;;;;;38733:28;38745:5;38752:8;38733:11;:28::i;:::-;38779:9;38772:16;;;;;38532:264;;;;;;:::o;70380:292::-;70445:11;70469:17;70495:3;70469:30;;70528:2;70514:4;:11;:16;70510:74;;;70568:3;70554:18;;;;;;;;;;;:::i;:::-;;;;;;;;70510:74;70651:4;:11;70642:4;70634:13;;;:::i;:::-;70626:22;;:36;70618:45;;70594:70;;;70380:292;;;:::o;25026:443::-;25156:1;25139:19;;:5;:19;;;25135:91;;25211:1;25182:32;;;;;;;;;;;:::i;:::-;;;;;;;;25135:91;25259:1;25240:21;;:7;:21;;;25236:92;;25313:1;25285:31;;;;;;;;;;;:::i;:::-;;;;;;;;25236:92;25368:5;25338:11;:18;25350:5;25338:18;;;;;;;;;;;;;;;:27;25357:7;25338:27;;;;;;;;;;;;;;;:35;;;;25388:9;25384:78;;;25435:7;25419:31;;25428:5;25419:31;;;25444:5;25419:31;;;;;;:::i;:::-;;;;;;;;25384:78;25026:443;;;;:::o;85890:396::-;86019:30;86033:4;86039:2;86043:5;86019:13;:30::i;:::-;86064:15;;;;;;;;;;;86060:103;;;86104:9;:15;86114:4;86104:15;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;86123:9;:13;86133:2;86123:13;;;;;;;;;;;;;;;;;;;;;;;;;86104:32;86096:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;86060:103;86179:15;;;;;;;;;;;86175:104;;;86220:9;:13;86230:2;86220:13;;;;;;;;;;;;;;;;;;;;;;;;;86219:14;:34;;;;;86238:9;:15;86248:4;86238:15;;;;;;;;;;;;;;;;;;;;;;;;;86237:16;86219:34;86211:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;86175:104;85890:396;;;:::o;77169:181::-;77224:7;75085:95;77283:11;77296:14;77312:13;77335:4;77261:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77251:91;;;;;;77244:98;;77169:181;:::o;72106:273::-;72200:13;70052:66;72259:17;;72249:5;72230:46;72226:146;;72300:15;72309:5;72300:8;:15::i;:::-;72293:22;;;;72226:146;72355:5;72348:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72106:273;;;;;:::o;64019:410::-;64112:14;64224:4;64218:11;64255:10;64250:3;64243:23;64303:15;64296:4;64291:3;64287:14;64280:39;64356:10;64349:4;64344:3;64340:14;64333:34;64406:4;64401:3;64391:20;64381:30;;64192:230;64019:410;;;;:::o;36837:1556::-;36968:7;36977:12;36991:7;37911:66;37906:1;37898:10;;:79;37894:166;;;38010:1;38014:30;38046:1;37994:54;;;;;;;;37894:166;38157:14;38174:24;38184:4;38190:1;38193;38196;38174:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38157:41;;38231:1;38213:20;;:6;:20;;;38209:115;;38266:1;38270:29;38309:1;38301:10;;38250:62;;;;;;;;;38209:115;38344:6;38352:20;38382:1;38374:10;;38336:49;;;;;;;36837:1556;;;;;;;;;:::o;38934:542::-;39030:20;39021:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;39017:452;39067:7;39017:452;39128:29;39119:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;39115:354;;39181:23;;;;;;;;;;;;;;39115:354;39235:35;39226:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;39222:247;;39330:8;39322:17;;39294:46;;;;;;;;;;;:::i;:::-;;;;;;;;39222:247;39371:30;39362:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;39358:111;;39448:8;39425:32;;;;;;;;;;;:::i;:::-;;;;;;;;39358:111;38934:542;;;:::o;70761:415::-;70820:13;70846:11;70860:16;70871:4;70860:10;:16::i;:::-;70846:30;;70966:17;70997:2;70986:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70966:34;;71091:3;71086;71079:16;71132:4;71125;71120:3;71116:14;71109:28;71165:3;71158:10;;;;70761:415;;;:::o;71253:251::-;71314:7;71334:14;71387:4;71378;71351:33;;:40;71334:57;;71415:2;71406:6;:11;71402:71;;;71441:20;;;;;;;;;;;;;;71402:71;71490:6;71483:13;;;71253:251;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:::-;5682:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5623:329;;;;:::o;5958:149::-;5994:7;6034:66;6027:5;6023:78;6012:89;;5958:149;;;:::o;6113:115::-;6198:23;6215:5;6198:23;:::i;:::-;6193:3;6186:36;6113:115;;:::o;6234:118::-;6321:24;6339:5;6321:24;:::i;:::-;6316:3;6309:37;6234:118;;:::o;6358:114::-;6425:6;6459:5;6453:12;6443:22;;6358:114;;;:::o;6478:184::-;6577:11;6611:6;6606:3;6599:19;6651:4;6646:3;6642:14;6627:29;;6478:184;;;;:::o;6668:132::-;6735:4;6758:3;6750:11;;6788:4;6783:3;6779:14;6771:22;;6668:132;;;:::o;6806:108::-;6883:24;6901:5;6883:24;:::i;:::-;6878:3;6871:37;6806:108;;:::o;6920:179::-;6989:10;7010:46;7052:3;7044:6;7010:46;:::i;:::-;7088:4;7083:3;7079:14;7065:28;;6920:179;;;;:::o;7105:113::-;7175:4;7207;7202:3;7198:14;7190:22;;7105:113;;;:::o;7254:732::-;7373:3;7402:54;7450:5;7402:54;:::i;:::-;7472:86;7551:6;7546:3;7472:86;:::i;:::-;7465:93;;7582:56;7632:5;7582:56;:::i;:::-;7661:7;7692:1;7677:284;7702:6;7699:1;7696:13;7677:284;;;7778:6;7772:13;7805:63;7864:3;7849:13;7805:63;:::i;:::-;7798:70;;7891:60;7944:6;7891:60;:::i;:::-;7881:70;;7737:224;7724:1;7721;7717:9;7712:14;;7677:284;;;7681:14;7977:3;7970:10;;7378:608;;;7254:732;;;;:::o;7992:1215::-;8341:4;8379:3;8368:9;8364:19;8356:27;;8393:69;8459:1;8448:9;8444:17;8435:6;8393:69;:::i;:::-;8509:9;8503:4;8499:20;8494:2;8483:9;8479:18;8472:48;8537:78;8610:4;8601:6;8537:78;:::i;:::-;8529:86;;8662:9;8656:4;8652:20;8647:2;8636:9;8632:18;8625:48;8690:78;8763:4;8754:6;8690:78;:::i;:::-;8682:86;;8778:72;8846:2;8835:9;8831:18;8822:6;8778:72;:::i;:::-;8860:73;8928:3;8917:9;8913:19;8904:6;8860:73;:::i;:::-;8943;9011:3;9000:9;8996:19;8987:6;8943:73;:::i;:::-;9064:9;9058:4;9054:20;9048:3;9037:9;9033:19;9026:49;9092:108;9195:4;9186:6;9092:108;:::i;:::-;9084:116;;7992:1215;;;;;;;;;;:::o;9213:222::-;9306:4;9344:2;9333:9;9329:18;9321:26;;9357:71;9425:1;9414:9;9410:17;9401:6;9357:71;:::i;:::-;9213:222;;;;:::o;9441:116::-;9511:21;9526:5;9511:21;:::i;:::-;9504:5;9501:32;9491:60;;9547:1;9544;9537:12;9491:60;9441:116;:::o;9563:133::-;9606:5;9644:6;9631:20;9622:29;;9660:30;9684:5;9660:30;:::i;:::-;9563:133;;;;:::o;9702:468::-;9767:6;9775;9824:2;9812:9;9803:7;9799:23;9795:32;9792:119;;;9830:79;;:::i;:::-;9792:119;9950:1;9975:53;10020:7;10011:6;10000:9;9996:22;9975:53;:::i;:::-;9965:63;;9921:117;10077:2;10103:50;10145:7;10136:6;10125:9;10121:22;10103:50;:::i;:::-;10093:60;;10048:115;9702:468;;;;;:::o;10176:118::-;10247:22;10263:5;10247:22;:::i;:::-;10240:5;10237:33;10227:61;;10284:1;10281;10274:12;10227:61;10176:118;:::o;10300:135::-;10344:5;10382:6;10369:20;10360:29;;10398:31;10423:5;10398:31;:::i;:::-;10300:135;;;;:::o;10441:122::-;10514:24;10532:5;10514:24;:::i;:::-;10507:5;10504:35;10494:63;;10553:1;10550;10543:12;10494:63;10441:122;:::o;10569:139::-;10615:5;10653:6;10640:20;10631:29;;10669:33;10696:5;10669:33;:::i;:::-;10569:139;;;;:::o;10714:1199::-;10825:6;10833;10841;10849;10857;10865;10873;10922:3;10910:9;10901:7;10897:23;10893:33;10890:120;;;10929:79;;:::i;:::-;10890:120;11049:1;11074:53;11119:7;11110:6;11099:9;11095:22;11074:53;:::i;:::-;11064:63;;11020:117;11176:2;11202:53;11247:7;11238:6;11227:9;11223:22;11202:53;:::i;:::-;11192:63;;11147:118;11304:2;11330:53;11375:7;11366:6;11355:9;11351:22;11330:53;:::i;:::-;11320:63;;11275:118;11432:2;11458:53;11503:7;11494:6;11483:9;11479:22;11458:53;:::i;:::-;11448:63;;11403:118;11560:3;11587:51;11630:7;11621:6;11610:9;11606:22;11587:51;:::i;:::-;11577:61;;11531:117;11687:3;11714:53;11759:7;11750:6;11739:9;11735:22;11714:53;:::i;:::-;11704:63;;11658:119;11816:3;11843:53;11888:7;11879:6;11868:9;11864:22;11843:53;:::i;:::-;11833:63;;11787:119;10714:1199;;;;;;;;;;:::o;11919:474::-;11987:6;11995;12044:2;12032:9;12023:7;12019:23;12015:32;12012:119;;;12050:79;;:::i;:::-;12012:119;12170:1;12195:53;12240:7;12231:6;12220:9;12216:22;12195:53;:::i;:::-;12185:63;;12141:117;12297:2;12323:53;12368:7;12359:6;12348:9;12344:22;12323:53;:::i;:::-;12313:63;;12268:118;11919:474;;;;;:::o;12399:462::-;12461:6;12469;12518:2;12506:9;12497:7;12493:23;12489:32;12486:119;;;12524:79;;:::i;:::-;12486:119;12644:1;12669:50;12711:7;12702:6;12691:9;12687:22;12669:50;:::i;:::-;12659:60;;12615:114;12768:2;12794:50;12836:7;12827:6;12816:9;12812:22;12794:50;:::i;:::-;12784:60;;12739:115;12399:462;;;;;:::o;12867:180::-;12915:77;12912:1;12905:88;13012:4;13009:1;13002:15;13036:4;13033:1;13026:15;13053:320;13097:6;13134:1;13128:4;13124:12;13114:22;;13181:1;13175:4;13171:12;13202:18;13192:81;;13258:4;13250:6;13246:17;13236:27;;13192:81;13320:2;13312:6;13309:14;13289:18;13286:38;13283:84;;13339:18;;:::i;:::-;13283:84;13104:269;13053:320;;;:::o;13379:180::-;13427:77;13424:1;13417:88;13524:4;13521:1;13514:15;13548:4;13545:1;13538:15;13565:775;13798:4;13836:3;13825:9;13821:19;13813:27;;13850:71;13918:1;13907:9;13903:17;13894:6;13850:71;:::i;:::-;13931:72;13999:2;13988:9;13984:18;13975:6;13931:72;:::i;:::-;14013;14081:2;14070:9;14066:18;14057:6;14013:72;:::i;:::-;14095;14163:2;14152:9;14148:18;14139:6;14095:72;:::i;:::-;14177:73;14245:3;14234:9;14230:19;14221:6;14177:73;:::i;:::-;14260;14328:3;14317:9;14313:19;14304:6;14260:73;:::i;:::-;13565:775;;;;;;;;;:::o;14346:332::-;14467:4;14505:2;14494:9;14490:18;14482:26;;14518:71;14586:1;14575:9;14571:17;14562:6;14518:71;:::i;:::-;14599:72;14667:2;14656:9;14652:18;14643:6;14599:72;:::i;:::-;14346:332;;;;;:::o;14684:141::-;14733:4;14756:3;14748:11;;14779:3;14776:1;14769:14;14813:4;14810:1;14800:18;14792:26;;14684:141;;;:::o;14831:93::-;14868:6;14915:2;14910;14903:5;14899:14;14895:23;14885:33;;14831:93;;;:::o;14930:107::-;14974:8;15024:5;15018:4;15014:16;14993:37;;14930:107;;;;:::o;15043:393::-;15112:6;15162:1;15150:10;15146:18;15185:97;15215:66;15204:9;15185:97;:::i;:::-;15303:39;15333:8;15322:9;15303:39;:::i;:::-;15291:51;;15375:4;15371:9;15364:5;15360:21;15351:30;;15424:4;15414:8;15410:19;15403:5;15400:30;15390:40;;15119:317;;15043:393;;;;;:::o;15442:60::-;15470:3;15491:5;15484:12;;15442:60;;;:::o;15508:142::-;15558:9;15591:53;15609:34;15618:24;15636:5;15618:24;:::i;:::-;15609:34;:::i;:::-;15591:53;:::i;:::-;15578:66;;15508:142;;;:::o;15656:75::-;15699:3;15720:5;15713:12;;15656:75;;;:::o;15737:269::-;15847:39;15878:7;15847:39;:::i;:::-;15908:91;15957:41;15981:16;15957:41;:::i;:::-;15949:6;15942:4;15936:11;15908:91;:::i;:::-;15902:4;15895:105;15813:193;15737:269;;;:::o;16012:73::-;16057:3;16012:73;:::o;16091:189::-;16168:32;;:::i;:::-;16209:65;16267:6;16259;16253:4;16209:65;:::i;:::-;16144:136;16091:189;;:::o;16286:186::-;16346:120;16363:3;16356:5;16353:14;16346:120;;;16417:39;16454:1;16447:5;16417:39;:::i;:::-;16390:1;16383:5;16379:13;16370:22;;16346:120;;;16286:186;;:::o;16478:543::-;16579:2;16574:3;16571:11;16568:446;;;16613:38;16645:5;16613:38;:::i;:::-;16697:29;16715:10;16697:29;:::i;:::-;16687:8;16683:44;16880:2;16868:10;16865:18;16862:49;;;16901:8;16886:23;;16862:49;16924:80;16980:22;16998:3;16980:22;:::i;:::-;16970:8;16966:37;16953:11;16924:80;:::i;:::-;16583:431;;16568:446;16478:543;;;:::o;17027:117::-;17081:8;17131:5;17125:4;17121:16;17100:37;;17027:117;;;;:::o;17150:169::-;17194:6;17227:51;17275:1;17271:6;17263:5;17260:1;17256:13;17227:51;:::i;:::-;17223:56;17308:4;17302;17298:15;17288:25;;17201:118;17150:169;;;;:::o;17324:295::-;17400:4;17546:29;17571:3;17565:4;17546:29;:::i;:::-;17538:37;;17608:3;17605:1;17601:11;17595:4;17592:21;17584:29;;17324:295;;;;:::o;17624:1395::-;17741:37;17774:3;17741:37;:::i;:::-;17843:18;17835:6;17832:30;17829:56;;;17865:18;;:::i;:::-;17829:56;17909:38;17941:4;17935:11;17909:38;:::i;:::-;17994:67;18054:6;18046;18040:4;17994:67;:::i;:::-;18088:1;18112:4;18099:17;;18144:2;18136:6;18133:14;18161:1;18156:618;;;;18818:1;18835:6;18832:77;;;18884:9;18879:3;18875:19;18869:26;18860:35;;18832:77;18935:67;18995:6;18988:5;18935:67;:::i;:::-;18929:4;18922:81;18791:222;18126:887;;18156:618;18208:4;18204:9;18196:6;18192:22;18242:37;18274:4;18242:37;:::i;:::-;18301:1;18315:208;18329:7;18326:1;18323:14;18315:208;;;18408:9;18403:3;18399:19;18393:26;18385:6;18378:42;18459:1;18451:6;18447:14;18437:24;;18506:2;18495:9;18491:18;18478:31;;18352:4;18349:1;18345:12;18340:17;;18315:208;;;18551:6;18542:7;18539:19;18536:179;;;18609:9;18604:3;18600:19;18594:26;18652:48;18694:4;18686:6;18682:17;18671:9;18652:48;:::i;:::-;18644:6;18637:64;18559:156;18536:179;18761:1;18757;18749:6;18745:14;18741:22;18735:4;18728:36;18163:611;;;18126:887;;17716:1303;;;17624:1395;;:::o;19025:180::-;19073:77;19070:1;19063:88;19170:4;19167:1;19160:15;19194:4;19191:1;19184:15;19211:191;19251:3;19270:20;19288:1;19270:20;:::i;:::-;19265:25;;19304:20;19322:1;19304:20;:::i;:::-;19299:25;;19347:1;19344;19340:9;19333:16;;19368:3;19365:1;19362:10;19359:36;;;19375:18;;:::i;:::-;19359:36;19211:191;;;;:::o;19408:442::-;19557:4;19595:2;19584:9;19580:18;19572:26;;19608:71;19676:1;19665:9;19661:17;19652:6;19608:71;:::i;:::-;19689:72;19757:2;19746:9;19742:18;19733:6;19689:72;:::i;:::-;19771;19839:2;19828:9;19824:18;19815:6;19771:72;:::i;:::-;19408:442;;;;;;:::o;19856:98::-;19907:6;19941:5;19935:12;19925:22;;19856:98;;;:::o;19960:116::-;20011:4;20034:3;20026:11;;20064:4;20059:3;20055:14;20047:22;;19960:116;;;:::o;20082:154::-;20125:11;20161:29;20185:3;20179:10;20161:29;:::i;:::-;20224:5;20200:29;;20137:99;20082:154;;;:::o;20242:594::-;20326:5;20357:38;20389:5;20357:38;:::i;:::-;20420:5;20447:40;20481:5;20447:40;:::i;:::-;20435:52;;20506:35;20532:8;20506:35;:::i;:::-;20497:44;;20565:2;20557:6;20554:14;20551:278;;;20636:169;20721:66;20691:6;20687:2;20683:15;20680:1;20676:23;20636:169;:::i;:::-;20613:5;20592:227;20583:236;;20551:278;20332:504;;20242:594;;;:::o;20842:160::-;20982:12;20978:1;20970:6;20966:14;20959:36;20842:160;:::o;21008:366::-;21150:3;21171:67;21235:2;21230:3;21171:67;:::i;:::-;21164:74;;21247:93;21336:3;21247:93;:::i;:::-;21365:2;21360:3;21356:12;21349:19;;21008:366;;;:::o;21380:419::-;21546:4;21584:2;21573:9;21569:18;21561:26;;21633:9;21627:4;21623:20;21619:1;21608:9;21604:17;21597:47;21661:131;21787:4;21661:131;:::i;:::-;21653:139;;21380:419;;;:::o;21805:159::-;21945:11;21941:1;21933:6;21929:14;21922:35;21805:159;:::o;21970:365::-;22112:3;22133:66;22197:1;22192:3;22133:66;:::i;:::-;22126:73;;22208:93;22297:3;22208:93;:::i;:::-;22326:2;22321:3;22317:12;22310:19;;21970:365;;;:::o;22341:419::-;22507:4;22545:2;22534:9;22530:18;22522:26;;22594:9;22588:4;22584:20;22580:1;22569:9;22565:17;22558:47;22622:131;22748:4;22622:131;:::i;:::-;22614:139;;22341:419;;;:::o;22766:664::-;22971:4;23009:3;22998:9;22994:19;22986:27;;23023:71;23091:1;23080:9;23076:17;23067:6;23023:71;:::i;:::-;23104:72;23172:2;23161:9;23157:18;23148:6;23104:72;:::i;:::-;23186;23254:2;23243:9;23239:18;23230:6;23186:72;:::i;:::-;23268;23336:2;23325:9;23321:18;23312:6;23268:72;:::i;:::-;23350:73;23418:3;23407:9;23403:19;23394:6;23350:73;:::i;:::-;22766:664;;;;;;;;:::o;23436:545::-;23609:4;23647:3;23636:9;23632:19;23624:27;;23661:71;23729:1;23718:9;23714:17;23705:6;23661:71;:::i;:::-;23742:68;23806:2;23795:9;23791:18;23782:6;23742:68;:::i;:::-;23820:72;23888:2;23877:9;23873:18;23864:6;23820:72;:::i;:::-;23902;23970:2;23959:9;23955:18;23946:6;23902:72;:::i;:::-;23436:545;;;;;;;:::o;23987:180::-;24035:77;24032:1;24025:88;24132:4;24129:1;24122:15;24156:4;24153:1;24146:15

Swarm Source

ipfs://587b13166533e4f815acfa794aaa55fafa47953070dbeae724ba15d135f40ba4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.