ETH Price: $3,302.46 (-3.17%)
Gas: 9 Gwei

Token

FeeToken (FEE)
 

Overview

Max Total Supply

43,180,748.0152148015299 FEE

Holders

418

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
iamgilroy.eth
Balance
1,000 FEE

Value
$0.00
0x832d0917b83cc41d5c049493ab6fc34ff6074af0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FeeToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-03
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

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

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

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

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

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

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

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

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

        return (signer, RecoverError.NoError);
    }

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

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

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

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

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

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

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

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

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

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

contract FeeToken is ERC20, ERC20Burnable, ERC20Permit {
    constructor() ERC20("FeeToken", "FEE") ERC20Permit("FeeToken") {
        super._mint(_msgSender(), 100_000_000 ether);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600881526020017f466565546f6b656e000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f466565546f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464545000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c929190620003c4565b50806004908051906020019062000145929190620003c4565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001b0818484620001fd60201b60201c565b60808181525050806101008181525050505050505050620001f7620001da6200023960201b60201c565b6a52b7d2dcc80cd2e40000006200024160201b62000a701760201c565b620006dd565b600083838346306040516020016200021a959493929190620004ef565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab90620005ad565b60405180910390fd5b620002c860008383620003ba60201b60201c565b8060026000828254620002dc9190620005fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003339190620005fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039a91906200065b565b60405180910390a3620003b660008383620003bf60201b60201c565b5050565b505050565b505050565b828054620003d290620006a7565b90600052602060002090601f016020900481019282620003f6576000855562000442565b82601f106200041157805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044157825182559160200191906001019062000424565b5b50905062000451919062000455565b5090565b5b808211156200047057600081600090555060010162000456565b5090565b6000819050919050565b620004898162000474565b82525050565b6000819050919050565b620004a4816200048f565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004d782620004aa565b9050919050565b620004e981620004ca565b82525050565b600060a0820190506200050660008301886200047e565b6200051560208301876200047e565b6200052460408301866200047e565b62000533606083018562000499565b620005426080830184620004de565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000595601f836200054c565b9150620005a2826200055d565b602082019050919050565b60006020820190508181036000830152620005c88162000586565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200060b826200048f565b915062000618836200048f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000650576200064f620005cf565b5b828201905092915050565b600060208201905062000672600083018462000499565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c057607f821691505b60208210811415620006d757620006d662000678565b5b50919050565b60805160a05160c05160e051610100516101205161274e6200072d60003960006108ee0152600061107b015260006110bd0152600061109c0152600061102801526000611050015261274e6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102c3578063a9059cbb146102f3578063d505accf14610323578063dd62ed3e1461033f57610100565b806370a082311461022957806379cc6790146102595780637ecebe001461027557806395d89b41146102a557610100565b8063313ce567116100d3578063313ce567146101a15780633644e515146101bf57806339509351146101dd57806342966c681461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61036f565b60405161011a9190611777565b60405180910390f35b61013d60048036038101906101389190611832565b610401565b60405161014a919061188d565b60405180910390f35b61015b61041f565b60405161016891906118b7565b60405180910390f35b61018b600480360381019061018691906118d2565b610429565b604051610198919061188d565b60405180910390f35b6101a9610521565b6040516101b69190611941565b60405180910390f35b6101c761052a565b6040516101d49190611975565b60405180910390f35b6101f760048036038101906101f29190611832565b610539565b604051610204919061188d565b60405180910390f35b61022760048036038101906102229190611990565b6105e5565b005b610243600480360381019061023e91906119bd565b6105f9565b60405161025091906118b7565b60405180910390f35b610273600480360381019061026e9190611832565b610641565b005b61028f600480360381019061028a91906119bd565b6106bc565b60405161029c91906118b7565b60405180910390f35b6102ad61070c565b6040516102ba9190611777565b60405180910390f35b6102dd60048036038101906102d89190611832565b61079e565b6040516102ea919061188d565b60405180910390f35b61030d60048036038101906103089190611832565b610889565b60405161031a919061188d565b60405180910390f35b61033d60048036038101906103389190611a42565b6108a7565b005b61035960048036038101906103549190611ae4565b6109e9565b60405161036691906118b7565b60405180910390f35b60606003805461037e90611b53565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa90611b53565b80156103f75780601f106103cc576101008083540402835291602001916103f7565b820191906000526020600020905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b600061041561040e610bd0565b8484610bd8565b6001905092915050565b6000600254905090565b6000610436848484610da3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610481610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f890611bf7565b60405180910390fd5b6105158561050d610bd0565b858403610bd8565b60019150509392505050565b60006012905090565b6000610534611024565b905090565b60006105db610546610bd0565b848460016000610554610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611c46565b610bd8565b6001905092915050565b6105f66105f0610bd0565b826110e7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106548361064f610bd0565b6109e9565b905081811015610699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069090611d0e565b60405180910390fd5b6106ad836106a5610bd0565b848403610bd8565b6106b783836110e7565b505050565b6000610705600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206112be565b9050919050565b60606004805461071b90611b53565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611b53565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b600080600160006107ad610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190611da0565b60405180910390fd5b61087e610875610bd0565b85858403610bd8565b600191505092915050565b600061089d610896610bd0565b8484610da3565b6001905092915050565b834211156108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190611e0c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008888886109198c6112cc565b8960405160200161092f96959493929190611e3b565b60405160208183030381529060405280519060200120905060006109528261132a565b9050600061096282878787611344565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990611ee8565b60405180910390fd5b6109dd8a8a8a610bd8565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790611f54565b60405180910390fd5b610aec6000838361136f565b8060026000828254610afe9190611c46565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b539190611c46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb891906118b7565b60405180910390a3610bcc60008383611374565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90611fe6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90612078565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9691906118b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061210a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a9061219c565b60405180910390fd5b610e8e83838361136f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061222e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa79190611c46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100b91906118b7565b60405180910390a361101e848484611374565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611076577f000000000000000000000000000000000000000000000000000000000000000090506110e4565b6110e17f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611379565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906122c0565b60405180910390fd5b6111638260008361136f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612352565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112409190612372565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a591906118b7565b60405180910390a36112b983600084611374565b505050565b600081600001549050919050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611319816112be565b9150611324816113b3565b50919050565b600061133d611337611024565b836113c9565b9050919050565b6000806000611355878787876113fc565b9150915061136281611509565b8192505050949350505050565b505050565b505050565b600083838346306040516020016113949594939291906123a6565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b600082826040516020016113de929190612471565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611437576000600391509150611500565b601b8560ff161415801561144f5750601c8560ff1614155b15611461576000600491509150611500565b60006001878787876040516000815260200160405260405161148694939291906124a8565b6020604051602081039080840390855afa1580156114a8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f757600060019250925050611500565b80600092509250505b94509492505050565b6000600481111561151d5761151c6124ed565b5b8160048111156115305761152f6124ed565b5b141561153b576116db565b6001600481111561154f5761154e6124ed565b5b816004811115611562576115616124ed565b5b14156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90612568565b60405180910390fd5b600260048111156115b7576115b66124ed565b5b8160048111156115ca576115c96124ed565b5b141561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906125d4565b60405180910390fd5b6003600481111561161f5761161e6124ed565b5b816004811115611632576116316124ed565b5b1415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90612666565b60405180910390fd5b600480811115611686576116856124ed565b5b816004811115611699576116986124ed565b5b14156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906126f8565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b83811115611727576000848401525b50505050565b6000601f19601f8301169050919050565b6000611749826116de565b61175381856116e9565b93506117638185602086016116fa565b61176c8161172d565b840191505092915050565b60006020820190508181036000830152611791818461173e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c98261179e565b9050919050565b6117d9816117be565b81146117e457600080fd5b50565b6000813590506117f6816117d0565b92915050565b6000819050919050565b61180f816117fc565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000806040838503121561184957611848611799565b5b6000611857858286016117e7565b92505060206118688582860161181d565b9150509250929050565b60008115159050919050565b61188781611872565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6118b1816117fc565b82525050565b60006020820190506118cc60008301846118a8565b92915050565b6000806000606084860312156118eb576118ea611799565b5b60006118f9868287016117e7565b935050602061190a868287016117e7565b925050604061191b8682870161181d565b9150509250925092565b600060ff82169050919050565b61193b81611925565b82525050565b60006020820190506119566000830184611932565b92915050565b6000819050919050565b61196f8161195c565b82525050565b600060208201905061198a6000830184611966565b92915050565b6000602082840312156119a6576119a5611799565b5b60006119b48482850161181d565b91505092915050565b6000602082840312156119d3576119d2611799565b5b60006119e1848285016117e7565b91505092915050565b6119f381611925565b81146119fe57600080fd5b50565b600081359050611a10816119ea565b92915050565b611a1f8161195c565b8114611a2a57600080fd5b50565b600081359050611a3c81611a16565b92915050565b600080600080600080600060e0888a031215611a6157611a60611799565b5b6000611a6f8a828b016117e7565b9750506020611a808a828b016117e7565b9650506040611a918a828b0161181d565b9550506060611aa28a828b0161181d565b9450506080611ab38a828b01611a01565b93505060a0611ac48a828b01611a2d565b92505060c0611ad58a828b01611a2d565b91505092959891949750929550565b60008060408385031215611afb57611afa611799565b5b6000611b09858286016117e7565b9250506020611b1a858286016117e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b6b57607f821691505b60208210811415611b7f57611b7e611b24565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611be16028836116e9565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c51826117fc565b9150611c5c836117fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9157611c90611c17565b5b828201905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611cf86024836116e9565b9150611d0382611c9c565b604082019050919050565b60006020820190508181036000830152611d2781611ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d8a6025836116e9565b9150611d9582611d2e565b604082019050919050565b60006020820190508181036000830152611db981611d7d565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611df6601d836116e9565b9150611e0182611dc0565b602082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b611e35816117be565b82525050565b600060c082019050611e506000830189611966565b611e5d6020830188611e2c565b611e6a6040830187611e2c565b611e7760608301866118a8565b611e8460808301856118a8565b611e9160a08301846118a8565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611ed2601e836116e9565b9150611edd82611e9c565b602082019050919050565b60006020820190508181036000830152611f0181611ec5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f3e601f836116e9565b9150611f4982611f08565b602082019050919050565b60006020820190508181036000830152611f6d81611f31565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fd06024836116e9565b9150611fdb82611f74565b604082019050919050565b60006020820190508181036000830152611fff81611fc3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120626022836116e9565b915061206d82612006565b604082019050919050565b6000602082019050818103600083015261209181612055565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120f46025836116e9565b91506120ff82612098565b604082019050919050565b60006020820190508181036000830152612123816120e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121866023836116e9565b91506121918261212a565b604082019050919050565b600060208201905081810360008301526121b581612179565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122186026836116e9565b9150612223826121bc565b604082019050919050565b600060208201905081810360008301526122478161220b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006122aa6021836116e9565b91506122b58261224e565b604082019050919050565b600060208201905081810360008301526122d98161229d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061233c6022836116e9565b9150612347826122e0565b604082019050919050565b6000602082019050818103600083015261236b8161232f565b9050919050565b600061237d826117fc565b9150612388836117fc565b92508282101561239b5761239a611c17565b5b828203905092915050565b600060a0820190506123bb6000830188611966565b6123c86020830187611966565b6123d56040830186611966565b6123e260608301856118a8565b6123ef6080830184611e2c565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061243a6002836123f9565b915061244582612404565b600282019050919050565b6000819050919050565b61246b6124668261195c565b612450565b82525050565b600061247c8261242d565b9150612488828561245a565b602082019150612498828461245a565b6020820191508190509392505050565b60006080820190506124bd6000830187611966565b6124ca6020830186611932565b6124d76040830185611966565b6124e46060830184611966565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006125526018836116e9565b915061255d8261251c565b602082019050919050565b6000602082019050818103600083015261258181612545565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006125be601f836116e9565b91506125c982612588565b602082019050919050565b600060208201905081810360008301526125ed816125b1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006126506022836116e9565b915061265b826125f4565b604082019050919050565b6000602082019050818103600083015261267f81612643565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006126e26022836116e9565b91506126ed82612686565b604082019050919050565b60006020820190508181036000830152612711816126d5565b905091905056fea26469706673582212206308f323b2bddf4ec358aa42437a03c52850a674cd43e6f34c7d250b15f859ec64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102c3578063a9059cbb146102f3578063d505accf14610323578063dd62ed3e1461033f57610100565b806370a082311461022957806379cc6790146102595780637ecebe001461027557806395d89b41146102a557610100565b8063313ce567116100d3578063313ce567146101a15780633644e515146101bf57806339509351146101dd57806342966c681461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61036f565b60405161011a9190611777565b60405180910390f35b61013d60048036038101906101389190611832565b610401565b60405161014a919061188d565b60405180910390f35b61015b61041f565b60405161016891906118b7565b60405180910390f35b61018b600480360381019061018691906118d2565b610429565b604051610198919061188d565b60405180910390f35b6101a9610521565b6040516101b69190611941565b60405180910390f35b6101c761052a565b6040516101d49190611975565b60405180910390f35b6101f760048036038101906101f29190611832565b610539565b604051610204919061188d565b60405180910390f35b61022760048036038101906102229190611990565b6105e5565b005b610243600480360381019061023e91906119bd565b6105f9565b60405161025091906118b7565b60405180910390f35b610273600480360381019061026e9190611832565b610641565b005b61028f600480360381019061028a91906119bd565b6106bc565b60405161029c91906118b7565b60405180910390f35b6102ad61070c565b6040516102ba9190611777565b60405180910390f35b6102dd60048036038101906102d89190611832565b61079e565b6040516102ea919061188d565b60405180910390f35b61030d60048036038101906103089190611832565b610889565b60405161031a919061188d565b60405180910390f35b61033d60048036038101906103389190611a42565b6108a7565b005b61035960048036038101906103549190611ae4565b6109e9565b60405161036691906118b7565b60405180910390f35b60606003805461037e90611b53565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa90611b53565b80156103f75780601f106103cc576101008083540402835291602001916103f7565b820191906000526020600020905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b600061041561040e610bd0565b8484610bd8565b6001905092915050565b6000600254905090565b6000610436848484610da3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610481610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f890611bf7565b60405180910390fd5b6105158561050d610bd0565b858403610bd8565b60019150509392505050565b60006012905090565b6000610534611024565b905090565b60006105db610546610bd0565b848460016000610554610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611c46565b610bd8565b6001905092915050565b6105f66105f0610bd0565b826110e7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106548361064f610bd0565b6109e9565b905081811015610699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069090611d0e565b60405180910390fd5b6106ad836106a5610bd0565b848403610bd8565b6106b783836110e7565b505050565b6000610705600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206112be565b9050919050565b60606004805461071b90611b53565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611b53565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b600080600160006107ad610bd0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190611da0565b60405180910390fd5b61087e610875610bd0565b85858403610bd8565b600191505092915050565b600061089d610896610bd0565b8484610da3565b6001905092915050565b834211156108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190611e0c565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109198c6112cc565b8960405160200161092f96959493929190611e3b565b60405160208183030381529060405280519060200120905060006109528261132a565b9050600061096282878787611344565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990611ee8565b60405180910390fd5b6109dd8a8a8a610bd8565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790611f54565b60405180910390fd5b610aec6000838361136f565b8060026000828254610afe9190611c46565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b539190611c46565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb891906118b7565b60405180910390a3610bcc60008383611374565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90611fe6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90612078565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9691906118b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061210a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a9061219c565b60405180910390fd5b610e8e83838361136f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061222e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fa79190611c46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100b91906118b7565b60405180910390a361101e848484611374565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461415611076577f07436b4ebdac5a5d31e348052c0c07a8c1104a0e74278c132f686955968bdb8a90506110e4565b6110e17f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f039cd8698ed80064e5a96972230b49e434127d14319da6983e83cbe6709715b67fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611379565b90505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906122c0565b60405180910390fd5b6111638260008361136f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612352565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112409190612372565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a591906118b7565b60405180910390a36112b983600084611374565b505050565b600081600001549050919050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611319816112be565b9150611324816113b3565b50919050565b600061133d611337611024565b836113c9565b9050919050565b6000806000611355878787876113fc565b9150915061136281611509565b8192505050949350505050565b505050565b505050565b600083838346306040516020016113949594939291906123a6565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b600082826040516020016113de929190612471565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611437576000600391509150611500565b601b8560ff161415801561144f5750601c8560ff1614155b15611461576000600491509150611500565b60006001878787876040516000815260200160405260405161148694939291906124a8565b6020604051602081039080840390855afa1580156114a8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f757600060019250925050611500565b80600092509250505b94509492505050565b6000600481111561151d5761151c6124ed565b5b8160048111156115305761152f6124ed565b5b141561153b576116db565b6001600481111561154f5761154e6124ed565b5b816004811115611562576115616124ed565b5b14156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90612568565b60405180910390fd5b600260048111156115b7576115b66124ed565b5b8160048111156115ca576115c96124ed565b5b141561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906125d4565b60405180910390fd5b6003600481111561161f5761161e6124ed565b5b816004811115611632576116316124ed565b5b1415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90612666565b60405180910390fd5b600480811115611686576116856124ed565b5b816004811115611699576116986124ed565b5b14156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906126f8565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b83811115611727576000848401525b50505050565b6000601f19601f8301169050919050565b6000611749826116de565b61175381856116e9565b93506117638185602086016116fa565b61176c8161172d565b840191505092915050565b60006020820190508181036000830152611791818461173e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c98261179e565b9050919050565b6117d9816117be565b81146117e457600080fd5b50565b6000813590506117f6816117d0565b92915050565b6000819050919050565b61180f816117fc565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000806040838503121561184957611848611799565b5b6000611857858286016117e7565b92505060206118688582860161181d565b9150509250929050565b60008115159050919050565b61188781611872565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6118b1816117fc565b82525050565b60006020820190506118cc60008301846118a8565b92915050565b6000806000606084860312156118eb576118ea611799565b5b60006118f9868287016117e7565b935050602061190a868287016117e7565b925050604061191b8682870161181d565b9150509250925092565b600060ff82169050919050565b61193b81611925565b82525050565b60006020820190506119566000830184611932565b92915050565b6000819050919050565b61196f8161195c565b82525050565b600060208201905061198a6000830184611966565b92915050565b6000602082840312156119a6576119a5611799565b5b60006119b48482850161181d565b91505092915050565b6000602082840312156119d3576119d2611799565b5b60006119e1848285016117e7565b91505092915050565b6119f381611925565b81146119fe57600080fd5b50565b600081359050611a10816119ea565b92915050565b611a1f8161195c565b8114611a2a57600080fd5b50565b600081359050611a3c81611a16565b92915050565b600080600080600080600060e0888a031215611a6157611a60611799565b5b6000611a6f8a828b016117e7565b9750506020611a808a828b016117e7565b9650506040611a918a828b0161181d565b9550506060611aa28a828b0161181d565b9450506080611ab38a828b01611a01565b93505060a0611ac48a828b01611a2d565b92505060c0611ad58a828b01611a2d565b91505092959891949750929550565b60008060408385031215611afb57611afa611799565b5b6000611b09858286016117e7565b9250506020611b1a858286016117e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b6b57607f821691505b60208210811415611b7f57611b7e611b24565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611be16028836116e9565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c51826117fc565b9150611c5c836117fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9157611c90611c17565b5b828201905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000611cf86024836116e9565b9150611d0382611c9c565b604082019050919050565b60006020820190508181036000830152611d2781611ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d8a6025836116e9565b9150611d9582611d2e565b604082019050919050565b60006020820190508181036000830152611db981611d7d565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611df6601d836116e9565b9150611e0182611dc0565b602082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b611e35816117be565b82525050565b600060c082019050611e506000830189611966565b611e5d6020830188611e2c565b611e6a6040830187611e2c565b611e7760608301866118a8565b611e8460808301856118a8565b611e9160a08301846118a8565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611ed2601e836116e9565b9150611edd82611e9c565b602082019050919050565b60006020820190508181036000830152611f0181611ec5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f3e601f836116e9565b9150611f4982611f08565b602082019050919050565b60006020820190508181036000830152611f6d81611f31565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fd06024836116e9565b9150611fdb82611f74565b604082019050919050565b60006020820190508181036000830152611fff81611fc3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120626022836116e9565b915061206d82612006565b604082019050919050565b6000602082019050818103600083015261209181612055565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120f46025836116e9565b91506120ff82612098565b604082019050919050565b60006020820190508181036000830152612123816120e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121866023836116e9565b91506121918261212a565b604082019050919050565b600060208201905081810360008301526121b581612179565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122186026836116e9565b9150612223826121bc565b604082019050919050565b600060208201905081810360008301526122478161220b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006122aa6021836116e9565b91506122b58261224e565b604082019050919050565b600060208201905081810360008301526122d98161229d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061233c6022836116e9565b9150612347826122e0565b604082019050919050565b6000602082019050818103600083015261236b8161232f565b9050919050565b600061237d826117fc565b9150612388836117fc565b92508282101561239b5761239a611c17565b5b828203905092915050565b600060a0820190506123bb6000830188611966565b6123c86020830187611966565b6123d56040830186611966565b6123e260608301856118a8565b6123ef6080830184611e2c565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061243a6002836123f9565b915061244582612404565b600282019050919050565b6000819050919050565b61246b6124668261195c565b612450565b82525050565b600061247c8261242d565b9150612488828561245a565b602082019150612498828461245a565b6020820191508190509392505050565b60006080820190506124bd6000830187611966565b6124ca6020830186611932565b6124d76040830185611966565b6124e46060830184611966565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006125526018836116e9565b915061255d8261251c565b602082019050919050565b6000602082019050818103600083015261258181612545565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006125be601f836116e9565b91506125c982612588565b602082019050919050565b600060208201905081810360008301526125ed816125b1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006126506022836116e9565b915061265b826125f4565b604082019050919050565b6000602082019050818103600083015261267f81612643565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006126e26022836116e9565b91506126ed82612686565b604082019050919050565b60006020820190508181036000830152612711816126d5565b905091905056fea26469706673582212206308f323b2bddf4ec358aa42437a03c52850a674cd43e6f34c7d250b15f859ec64736f6c634300080a0033

Deployed Bytecode Sourcemap

36647:191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8252:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7205:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8903:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7047:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36180:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16425:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7376:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16835:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35922:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6304:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10522:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7716:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35211:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7954:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6085:100;6139:13;6172:5;6165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:100;:::o;8252:169::-;8335:4;8352:39;8361:12;:10;:12::i;:::-;8375:7;8384:6;8352:8;:39::i;:::-;8409:4;8402:11;;8252:169;;;;:::o;7205:108::-;7266:7;7293:12;;7286:19;;7205:108;:::o;8903:492::-;9043:4;9060:36;9070:6;9078:9;9089:6;9060:9;:36::i;:::-;9109:24;9136:11;:19;9148:6;9136:19;;;;;;;;;;;;;;;:33;9156:12;:10;:12::i;:::-;9136:33;;;;;;;;;;;;;;;;9109:60;;9208:6;9188:16;:26;;9180:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9295:57;9304:6;9312:12;:10;:12::i;:::-;9345:6;9326:16;:25;9295:8;:57::i;:::-;9383:4;9376:11;;;8903:492;;;;;:::o;7047:93::-;7105:5;7130:2;7123:9;;7047:93;:::o;36180:115::-;36240:7;36267:20;:18;:20::i;:::-;36260:27;;36180:115;:::o;9804:215::-;9892:4;9909:80;9918:12;:10;:12::i;:::-;9932:7;9978:10;9941:11;:25;9953:12;:10;:12::i;:::-;9941:25;;;;;;;;;;;;;;;:34;9967:7;9941:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9909:8;:80::i;:::-;10007:4;10000:11;;9804:215;;;;:::o;16425:91::-;16481:27;16487:12;:10;:12::i;:::-;16501:6;16481:5;:27::i;:::-;16425:91;:::o;7376:127::-;7450:7;7477:9;:18;7487:7;7477:18;;;;;;;;;;;;;;;;7470:25;;7376:127;;;:::o;16835:368::-;16912:24;16939:32;16949:7;16958:12;:10;:12::i;:::-;16939:9;:32::i;:::-;16912:59;;17010:6;16990:16;:26;;16982:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17093:58;17102:7;17111:12;:10;:12::i;:::-;17144:6;17125:16;:25;17093:8;:58::i;:::-;17173:22;17179:7;17188:6;17173:5;:22::i;:::-;16901:302;16835:368;;:::o;35922:128::-;35991:7;36018:24;:7;:14;36026:5;36018:14;;;;;;;;;;;;;;;:22;:24::i;:::-;36011:31;;35922:128;;;:::o;6304:104::-;6360:13;6393:7;6386:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6304:104;:::o;10522:413::-;10615:4;10632:24;10659:11;:25;10671:12;:10;:12::i;:::-;10659:25;;;;;;;;;;;;;;;:34;10685:7;10659:34;;;;;;;;;;;;;;;;10632:61;;10732:15;10712:16;:35;;10704:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10825:67;10834:12;:10;:12::i;:::-;10848:7;10876:15;10857:16;:34;10825:8;:67::i;:::-;10923:4;10916:11;;;10522:413;;;;:::o;7716:175::-;7802:4;7819:42;7829:12;:10;:12::i;:::-;7843:9;7854:6;7819:9;:42::i;:::-;7879:4;7872:11;;7716:175;;;;:::o;35211:645::-;35455:8;35436:15;:27;;35428:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35510:18;35552:16;35570:5;35577:7;35586:5;35593:16;35603:5;35593:9;:16::i;:::-;35611:8;35541:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35531:90;;;;;;35510:111;;35634:12;35649:28;35666:10;35649:16;:28::i;:::-;35634:43;;35690:14;35707:28;35721:4;35727:1;35730;35733;35707:13;:28::i;:::-;35690:45;;35764:5;35754:15;;:6;:15;;;35746:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35817:31;35826:5;35833:7;35842:5;35817:8;:31::i;:::-;35417:439;;;35211:645;;;;;;;:::o;7954:151::-;8043:7;8070:11;:18;8082:5;8070:18;;;;;;;;;;;;;;;:27;8089:7;8070:27;;;;;;;;;;;;;;;;8063:34;;7954:151;;;;:::o;12445:399::-;12548:1;12529:21;;:7;:21;;;;12521:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12599:49;12628:1;12632:7;12641:6;12599:20;:49::i;:::-;12677:6;12661:12;;:22;;;;;;;:::i;:::-;;;;;;;;12716:6;12694:9;:18;12704:7;12694:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12759:7;12738:37;;12755:1;12738:37;;;12768:6;12738:37;;;;;;:::i;:::-;;;;;;;;12788:48;12816:1;12820:7;12829:6;12788:19;:48::i;:::-;12445:399;;:::o;3893:98::-;3946:7;3973:10;3966:17;;3893:98;:::o;14206:380::-;14359:1;14342:19;;:5;:19;;;;14334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14440:1;14421:21;;:7;:21;;;;14413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14524:6;14494:11;:18;14506:5;14494:18;;;;;;;;;;;;;;;:27;14513:7;14494:27;;;;;;;;;;;;;;;:36;;;;14562:7;14546:32;;14555:5;14546:32;;;14571:6;14546:32;;;;;;:::i;:::-;;;;;;;;14206:380;;;:::o;11425:733::-;11583:1;11565:20;;:6;:20;;;;11557:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11667:1;11646:23;;:9;:23;;;;11638:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11722:47;11743:6;11751:9;11762:6;11722:20;:47::i;:::-;11782:21;11806:9;:17;11816:6;11806:17;;;;;;;;;;;;;;;;11782:41;;11859:6;11842:13;:23;;11834:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11980:6;11964:13;:22;11944:9;:17;11954:6;11944:17;;;;;;;;;;;;;;;:42;;;;12032:6;12008:9;:20;12018:9;12008:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12073:9;12056:35;;12065:6;12056:35;;;12084:6;12056:35;;;;;;:::i;:::-;;;;;;;;12104:46;12124:6;12132:9;12143:6;12104:19;:46::i;:::-;11546:612;11425:733;;;:::o;31259:281::-;31312:7;31353:16;31336:13;:33;31332:201;;;31393:24;31386:31;;;;31332:201;31457:64;31479:10;31491:12;31505:15;31457:21;:64::i;:::-;31450:71;;31259:281;;:::o;13177:591::-;13280:1;13261:21;;:7;:21;;;;13253:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13333:49;13354:7;13371:1;13375:6;13333:20;:49::i;:::-;13395:22;13420:9;:18;13430:7;13420:18;;;;;;;;;;;;;;;;13395:43;;13475:6;13457:14;:24;;13449:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13594:6;13577:14;:23;13556:9;:18;13566:7;13556:18;;;;;;;;;;;;;;;:44;;;;13638:6;13622:12;;:22;;;;;;;:::i;:::-;;;;;;;;13688:1;13662:37;;13671:7;13662:37;;;13692:6;13662:37;;;;;;:::i;:::-;;;;;;;;13712:48;13732:7;13749:1;13753:6;13712:19;:48::i;:::-;13242:526;13177:591;;:::o;33358:114::-;33423:7;33450;:14;;;33443:21;;33358:114;;;:::o;36433:207::-;36493:15;36521:30;36554:7;:14;36562:5;36554:14;;;;;;;;;;;;;;;36521:47;;36589:15;:5;:13;:15::i;:::-;36579:25;;36615:17;:5;:15;:17::i;:::-;36510:130;36433:207;;;:::o;32453:167::-;32530:7;32557:55;32579:20;:18;:20::i;:::-;32601:10;32557:21;:55::i;:::-;32550:62;;32453:167;;;:::o;26889:279::-;27017:7;27038:17;27057:18;27079:25;27090:4;27096:1;27099;27102;27079:10;:25::i;:::-;27037:67;;;;27115:18;27127:5;27115:11;:18::i;:::-;27151:9;27144:16;;;;26889:279;;;;;;:::o;15186:125::-;;;;:::o;15915:124::-;;;;:::o;31548:263::-;31692:7;31740:8;31750;31760:11;31773:13;31796:4;31729:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31719:84;;;;;;31712:91;;31548:263;;;;;:::o;33480:127::-;33587:1;33569:7;:14;;;:19;;;;;;;;;;;33480:127;:::o;28087:196::-;28180:7;28246:15;28263:10;28217:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28207:68;;;;;;28200:75;;28087:196;;;;:::o;25118:1632::-;25249:7;25258:12;26183:66;26178:1;26170:10;;:79;26166:163;;;26282:1;26286:30;26266:51;;;;;;26166:163;26348:2;26343:1;:7;;;;:18;;;;;26359:2;26354:1;:7;;;;26343:18;26339:102;;;26394:1;26398:30;26378:51;;;;;;26339:102;26538:14;26555:24;26565:4;26571:1;26574;26577;26555:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26538:41;;26612:1;26594:20;;:6;:20;;;26590:103;;;26647:1;26651:29;26631:50;;;;;;;26590:103;26713:6;26721:20;26705:37;;;;;25118:1632;;;;;;;;:::o;19780:643::-;19858:20;19849:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;19845:571;;;19895:7;;19845:571;19956:29;19947:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;19943:473;;;20002:34;;;;;;;;;;:::i;:::-;;;;;;;;19943:473;20067:35;20058:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;20054:362;;;20119:41;;;;;;;;;;:::i;:::-;;;;;;;;20054:362;20191:30;20182:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;20178:238;;;20238:44;;;;;;;;;;:::i;:::-;;;;;;;;20178:238;20313:30;20304:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;20300:116;;;20360:44;;;;;;;;;;:::i;:::-;;;;;;;;20300:116;19780:643;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:77::-;4938:7;4967:5;4956:16;;4901:77;;;:::o;4984:118::-;5071:24;5089:5;5071:24;:::i;:::-;5066:3;5059:37;4984:118;;:::o;5108:222::-;5201:4;5239:2;5228:9;5224:18;5216:26;;5252:71;5320:1;5309:9;5305:17;5296:6;5252:71;:::i;:::-;5108:222;;;;:::o;5336:329::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:119;;;5450:79;;:::i;:::-;5412:119;5570:1;5595:53;5640:7;5631:6;5620:9;5616:22;5595:53;:::i;:::-;5585:63;;5541:117;5336:329;;;;:::o;5671:::-;5730:6;5779:2;5767:9;5758:7;5754:23;5750:32;5747:119;;;5785:79;;:::i;:::-;5747:119;5905:1;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5876:117;5671:329;;;;:::o;6006:118::-;6077:22;6093:5;6077:22;:::i;:::-;6070:5;6067:33;6057:61;;6114:1;6111;6104:12;6057:61;6006:118;:::o;6130:135::-;6174:5;6212:6;6199:20;6190:29;;6228:31;6253:5;6228:31;:::i;:::-;6130:135;;;;:::o;6271:122::-;6344:24;6362:5;6344:24;:::i;:::-;6337:5;6334:35;6324:63;;6383:1;6380;6373:12;6324:63;6271:122;:::o;6399:139::-;6445:5;6483:6;6470:20;6461:29;;6499:33;6526:5;6499:33;:::i;:::-;6399:139;;;;:::o;6544:1199::-;6655:6;6663;6671;6679;6687;6695;6703;6752:3;6740:9;6731:7;6727:23;6723:33;6720:120;;;6759:79;;:::i;:::-;6720:120;6879:1;6904:53;6949:7;6940:6;6929:9;6925:22;6904:53;:::i;:::-;6894:63;;6850:117;7006:2;7032:53;7077:7;7068:6;7057:9;7053:22;7032:53;:::i;:::-;7022:63;;6977:118;7134:2;7160:53;7205:7;7196:6;7185:9;7181:22;7160:53;:::i;:::-;7150:63;;7105:118;7262:2;7288:53;7333:7;7324:6;7313:9;7309:22;7288:53;:::i;:::-;7278:63;;7233:118;7390:3;7417:51;7460:7;7451:6;7440:9;7436:22;7417:51;:::i;:::-;7407:61;;7361:117;7517:3;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7488:119;7646:3;7673:53;7718:7;7709:6;7698:9;7694:22;7673:53;:::i;:::-;7663:63;;7617:119;6544:1199;;;;;;;;;;:::o;7749:474::-;7817:6;7825;7874:2;7862:9;7853:7;7849:23;7845:32;7842:119;;;7880:79;;:::i;:::-;7842:119;8000:1;8025:53;8070:7;8061:6;8050:9;8046:22;8025:53;:::i;:::-;8015:63;;7971:117;8127:2;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8098:118;7749:474;;;;;:::o;8229:180::-;8277:77;8274:1;8267:88;8374:4;8371:1;8364:15;8398:4;8395:1;8388:15;8415:320;8459:6;8496:1;8490:4;8486:12;8476:22;;8543:1;8537:4;8533:12;8564:18;8554:81;;8620:4;8612:6;8608:17;8598:27;;8554:81;8682:2;8674:6;8671:14;8651:18;8648:38;8645:84;;;8701:18;;:::i;:::-;8645:84;8466:269;8415:320;;;:::o;8741:227::-;8881:34;8877:1;8869:6;8865:14;8858:58;8950:10;8945:2;8937:6;8933:15;8926:35;8741:227;:::o;8974:366::-;9116:3;9137:67;9201:2;9196:3;9137:67;:::i;:::-;9130:74;;9213:93;9302:3;9213:93;:::i;:::-;9331:2;9326:3;9322:12;9315:19;;8974:366;;;:::o;9346:419::-;9512:4;9550:2;9539:9;9535:18;9527:26;;9599:9;9593:4;9589:20;9585:1;9574:9;9570:17;9563:47;9627:131;9753:4;9627:131;:::i;:::-;9619:139;;9346:419;;;:::o;9771:180::-;9819:77;9816:1;9809:88;9916:4;9913:1;9906:15;9940:4;9937:1;9930:15;9957:305;9997:3;10016:20;10034:1;10016:20;:::i;:::-;10011:25;;10050:20;10068:1;10050:20;:::i;:::-;10045:25;;10204:1;10136:66;10132:74;10129:1;10126:81;10123:107;;;10210:18;;:::i;:::-;10123:107;10254:1;10251;10247:9;10240:16;;9957:305;;;;:::o;10268:223::-;10408:34;10404:1;10396:6;10392:14;10385:58;10477:6;10472:2;10464:6;10460:15;10453:31;10268:223;:::o;10497:366::-;10639:3;10660:67;10724:2;10719:3;10660:67;:::i;:::-;10653:74;;10736:93;10825:3;10736:93;:::i;:::-;10854:2;10849:3;10845:12;10838:19;;10497:366;;;:::o;10869:419::-;11035:4;11073:2;11062:9;11058:18;11050:26;;11122:9;11116:4;11112:20;11108:1;11097:9;11093:17;11086:47;11150:131;11276:4;11150:131;:::i;:::-;11142:139;;10869:419;;;:::o;11294:224::-;11434:34;11430:1;11422:6;11418:14;11411:58;11503:7;11498:2;11490:6;11486:15;11479:32;11294:224;:::o;11524:366::-;11666:3;11687:67;11751:2;11746:3;11687:67;:::i;:::-;11680:74;;11763:93;11852:3;11763:93;:::i;:::-;11881:2;11876:3;11872:12;11865:19;;11524:366;;;:::o;11896:419::-;12062:4;12100:2;12089:9;12085:18;12077:26;;12149:9;12143:4;12139:20;12135:1;12124:9;12120:17;12113:47;12177:131;12303:4;12177:131;:::i;:::-;12169:139;;11896:419;;;:::o;12321:179::-;12461:31;12457:1;12449:6;12445:14;12438:55;12321:179;:::o;12506:366::-;12648:3;12669:67;12733:2;12728:3;12669:67;:::i;:::-;12662:74;;12745:93;12834:3;12745:93;:::i;:::-;12863:2;12858:3;12854:12;12847:19;;12506:366;;;:::o;12878:419::-;13044:4;13082:2;13071:9;13067:18;13059:26;;13131:9;13125:4;13121:20;13117:1;13106:9;13102:17;13095:47;13159:131;13285:4;13159:131;:::i;:::-;13151:139;;12878:419;;;:::o;13303:118::-;13390:24;13408:5;13390:24;:::i;:::-;13385:3;13378:37;13303:118;;:::o;13427:775::-;13660:4;13698:3;13687:9;13683:19;13675:27;;13712:71;13780:1;13769:9;13765:17;13756:6;13712:71;:::i;:::-;13793:72;13861:2;13850:9;13846:18;13837:6;13793:72;:::i;:::-;13875;13943:2;13932:9;13928:18;13919:6;13875:72;:::i;:::-;13957;14025:2;14014:9;14010:18;14001:6;13957:72;:::i;:::-;14039:73;14107:3;14096:9;14092:19;14083:6;14039:73;:::i;:::-;14122;14190:3;14179:9;14175:19;14166:6;14122:73;:::i;:::-;13427:775;;;;;;;;;:::o;14208:180::-;14348:32;14344:1;14336:6;14332:14;14325:56;14208:180;:::o;14394:366::-;14536:3;14557:67;14621:2;14616:3;14557:67;:::i;:::-;14550:74;;14633:93;14722:3;14633:93;:::i;:::-;14751:2;14746:3;14742:12;14735:19;;14394:366;;;:::o;14766:419::-;14932:4;14970:2;14959:9;14955:18;14947:26;;15019:9;15013:4;15009:20;15005:1;14994:9;14990:17;14983:47;15047:131;15173:4;15047:131;:::i;:::-;15039:139;;14766:419;;;:::o;15191:181::-;15331:33;15327:1;15319:6;15315:14;15308:57;15191:181;:::o;15378:366::-;15520:3;15541:67;15605:2;15600:3;15541:67;:::i;:::-;15534:74;;15617:93;15706:3;15617:93;:::i;:::-;15735:2;15730:3;15726:12;15719:19;;15378:366;;;:::o;15750:419::-;15916:4;15954:2;15943:9;15939:18;15931:26;;16003:9;15997:4;15993:20;15989:1;15978:9;15974:17;15967:47;16031:131;16157:4;16031:131;:::i;:::-;16023:139;;15750:419;;;:::o;16175:223::-;16315:34;16311:1;16303:6;16299:14;16292:58;16384:6;16379:2;16371:6;16367:15;16360:31;16175:223;:::o;16404:366::-;16546:3;16567:67;16631:2;16626:3;16567:67;:::i;:::-;16560:74;;16643:93;16732:3;16643:93;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16404:366;;;:::o;16776:419::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:221::-;17341:34;17337:1;17329:6;17325:14;17318:58;17410:4;17405:2;17397:6;17393:15;17386:29;17201:221;:::o;17428:366::-;17570:3;17591:67;17655:2;17650:3;17591:67;:::i;:::-;17584:74;;17667:93;17756:3;17667:93;:::i;:::-;17785:2;17780:3;17776:12;17769:19;;17428:366;;;:::o;17800:419::-;17966:4;18004:2;17993:9;17989:18;17981:26;;18053:9;18047:4;18043:20;18039:1;18028:9;18024:17;18017:47;18081:131;18207:4;18081:131;:::i;:::-;18073:139;;17800:419;;;:::o;18225:224::-;18365:34;18361:1;18353:6;18349:14;18342:58;18434:7;18429:2;18421:6;18417:15;18410:32;18225:224;:::o;18455:366::-;18597:3;18618:67;18682:2;18677:3;18618:67;:::i;:::-;18611:74;;18694:93;18783:3;18694:93;:::i;:::-;18812:2;18807:3;18803:12;18796:19;;18455:366;;;:::o;18827:419::-;18993:4;19031:2;19020:9;19016:18;19008:26;;19080:9;19074:4;19070:20;19066:1;19055:9;19051:17;19044:47;19108:131;19234:4;19108:131;:::i;:::-;19100:139;;18827:419;;;:::o;19252:222::-;19392:34;19388:1;19380:6;19376:14;19369:58;19461:5;19456:2;19448:6;19444:15;19437:30;19252:222;:::o;19480:366::-;19622:3;19643:67;19707:2;19702:3;19643:67;:::i;:::-;19636:74;;19719:93;19808:3;19719:93;:::i;:::-;19837:2;19832:3;19828:12;19821:19;;19480:366;;;:::o;19852:419::-;20018:4;20056:2;20045:9;20041:18;20033:26;;20105:9;20099:4;20095:20;20091:1;20080:9;20076:17;20069:47;20133:131;20259:4;20133:131;:::i;:::-;20125:139;;19852:419;;;:::o;20277:225::-;20417:34;20413:1;20405:6;20401:14;20394:58;20486:8;20481:2;20473:6;20469:15;20462:33;20277:225;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:220::-;21445:34;21441:1;21433:6;21429:14;21422:58;21514:3;21509:2;21501:6;21497:15;21490:28;21305:220;:::o;21531:366::-;21673:3;21694:67;21758:2;21753:3;21694:67;:::i;:::-;21687:74;;21770:93;21859:3;21770:93;:::i;:::-;21888:2;21883:3;21879:12;21872:19;;21531:366;;;:::o;21903:419::-;22069:4;22107:2;22096:9;22092:18;22084:26;;22156:9;22150:4;22146:20;22142:1;22131:9;22127:17;22120:47;22184:131;22310:4;22184:131;:::i;:::-;22176:139;;21903:419;;;:::o;22328:221::-;22468:34;22464:1;22456:6;22452:14;22445:58;22537:4;22532:2;22524:6;22520:15;22513:29;22328:221;:::o;22555:366::-;22697:3;22718:67;22782:2;22777:3;22718:67;:::i;:::-;22711:74;;22794:93;22883:3;22794:93;:::i;:::-;22912:2;22907:3;22903:12;22896:19;;22555:366;;;:::o;22927:419::-;23093:4;23131:2;23120:9;23116:18;23108:26;;23180:9;23174:4;23170:20;23166:1;23155:9;23151:17;23144:47;23208:131;23334:4;23208:131;:::i;:::-;23200:139;;22927:419;;;:::o;23352:191::-;23392:4;23412:20;23430:1;23412:20;:::i;:::-;23407:25;;23446:20;23464:1;23446:20;:::i;:::-;23441:25;;23485:1;23482;23479:8;23476:34;;;23490:18;;:::i;:::-;23476:34;23535:1;23532;23528:9;23520:17;;23352:191;;;;:::o;23549:664::-;23754:4;23792:3;23781:9;23777:19;23769:27;;23806:71;23874:1;23863:9;23859:17;23850:6;23806:71;:::i;:::-;23887:72;23955:2;23944:9;23940:18;23931:6;23887:72;:::i;:::-;23969;24037:2;24026:9;24022:18;24013:6;23969:72;:::i;:::-;24051;24119:2;24108:9;24104:18;24095:6;24051:72;:::i;:::-;24133:73;24201:3;24190:9;24186:19;24177:6;24133:73;:::i;:::-;23549:664;;;;;;;;:::o;24219:148::-;24321:11;24358:3;24343:18;;24219:148;;;;:::o;24373:214::-;24513:66;24509:1;24501:6;24497:14;24490:90;24373:214;:::o;24593:400::-;24753:3;24774:84;24856:1;24851:3;24774:84;:::i;:::-;24767:91;;24867:93;24956:3;24867:93;:::i;:::-;24985:1;24980:3;24976:11;24969:18;;24593:400;;;:::o;24999:79::-;25038:7;25067:5;25056:16;;24999:79;;;:::o;25084:157::-;25189:45;25209:24;25227:5;25209:24;:::i;:::-;25189:45;:::i;:::-;25184:3;25177:58;25084:157;;:::o;25247:663::-;25488:3;25510:148;25654:3;25510:148;:::i;:::-;25503:155;;25668:75;25739:3;25730:6;25668:75;:::i;:::-;25768:2;25763:3;25759:12;25752:19;;25781:75;25852:3;25843:6;25781:75;:::i;:::-;25881:2;25876:3;25872:12;25865:19;;25901:3;25894:10;;25247:663;;;;;:::o;25916:545::-;26089:4;26127:3;26116:9;26112:19;26104:27;;26141:71;26209:1;26198:9;26194:17;26185:6;26141:71;:::i;:::-;26222:68;26286:2;26275:9;26271:18;26262:6;26222:68;:::i;:::-;26300:72;26368:2;26357:9;26353:18;26344:6;26300:72;:::i;:::-;26382;26450:2;26439:9;26435:18;26426:6;26382:72;:::i;:::-;25916:545;;;;;;;:::o;26467:180::-;26515:77;26512:1;26505:88;26612:4;26609:1;26602:15;26636:4;26633:1;26626:15;26653:174;26793:26;26789:1;26781:6;26777:14;26770:50;26653:174;:::o;26833:366::-;26975:3;26996:67;27060:2;27055:3;26996:67;:::i;:::-;26989:74;;27072:93;27161:3;27072:93;:::i;:::-;27190:2;27185:3;27181:12;27174:19;;26833:366;;;:::o;27205:419::-;27371:4;27409:2;27398:9;27394:18;27386:26;;27458:9;27452:4;27448:20;27444:1;27433:9;27429:17;27422:47;27486:131;27612:4;27486:131;:::i;:::-;27478:139;;27205:419;;;:::o;27630:181::-;27770:33;27766:1;27758:6;27754:14;27747:57;27630:181;:::o;27817:366::-;27959:3;27980:67;28044:2;28039:3;27980:67;:::i;:::-;27973:74;;28056:93;28145:3;28056:93;:::i;:::-;28174:2;28169:3;28165:12;28158:19;;27817:366;;;:::o;28189:419::-;28355:4;28393:2;28382:9;28378:18;28370:26;;28442:9;28436:4;28432:20;28428:1;28417:9;28413:17;28406:47;28470:131;28596:4;28470:131;:::i;:::-;28462:139;;28189:419;;;:::o;28614:221::-;28754:34;28750:1;28742:6;28738:14;28731:58;28823:4;28818:2;28810:6;28806:15;28799:29;28614:221;:::o;28841:366::-;28983:3;29004:67;29068:2;29063:3;29004:67;:::i;:::-;28997:74;;29080:93;29169:3;29080:93;:::i;:::-;29198:2;29193:3;29189:12;29182:19;;28841:366;;;:::o;29213:419::-;29379:4;29417:2;29406:9;29402:18;29394:26;;29466:9;29460:4;29456:20;29452:1;29441:9;29437:17;29430:47;29494:131;29620:4;29494:131;:::i;:::-;29486:139;;29213:419;;;:::o;29638:221::-;29778:34;29774:1;29766:6;29762:14;29755:58;29847:4;29842:2;29834:6;29830:15;29823:29;29638:221;:::o;29865:366::-;30007:3;30028:67;30092:2;30087:3;30028:67;:::i;:::-;30021:74;;30104:93;30193:3;30104:93;:::i;:::-;30222:2;30217:3;30213:12;30206:19;;29865:366;;;:::o;30237:419::-;30403:4;30441:2;30430:9;30426:18;30418:26;;30490:9;30484:4;30480:20;30476:1;30465:9;30461:17;30454:47;30518:131;30644:4;30518:131;:::i;:::-;30510:139;;30237:419;;;:::o

Swarm Source

ipfs://6308f323b2bddf4ec358aa42437a03c52850a674cd43e6f34c7d250b15f859ec
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.