ETH Price: $2,389.36 (-4.13%)

Token

Space Node (SNODE)
 

Overview

Max Total Supply

1 SNODE

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: SNODE 2
Balance
0.003540719688875099 SNODE

Value
$0.00
0x1cdf8378f2d20d82dd4edaa06e9533b3fcad2695
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:
SpaceNode

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

    /**
     * @dev Transfers `amount` of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 amount) internal virtual {
        if (from == address(0)) {
            _totalSupply += amount;
        } else {
            uint256 fromBalance = _balances[from];
            require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
            unchecked {
                // Overflow not possible: amount <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - amount;
            }
        }

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

        emit Transfer(from, to, amount);
    }

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

    /**
     * @dev Destroys `amount` tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");
        _update(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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();
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Space Node ERC20 Token contract.
 * https://www.mysnode.com/
 */
contract SpaceNode is ERC20, ERC20Permit, Ownable {
    constructor() ERC20("Space Node", "SNODE") ERC20Permit("Space Node") {
        _mint(msg.sender, 1 * 10 ** decimals());
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b506040518060400160405280600a8152602001695370616365204e6f646560b01b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600a8152602001695370616365204e6f646560b01b81525060405180604001604052806005815260200164534e4f444560d81b8152508160039080519060200190620000cf929190620003c2565b508051620000e5906004906020840190620003c2565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a0181905281830198909852606081019590955260808086019390935230858301528051808603909201825293909201909252805194019390932090925261010052506200017e905033620001aa565b620001a433620001916012600a6200057d565b6200019e90600162000595565b620001fc565b6200060f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002585760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000266600083836200026a565b5050565b6001600160a01b038316620002995780600260008282546200028d9190620005b7565b90915550620003329050565b6001600160a01b03831660009081526020819052604090205481811015620003135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200024f565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000350576002805482900390556200036f565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b591815260200190565b60405180910390a3505050565b828054620003d090620005d2565b90600052602060002090601f016020900481019282620003f457600085556200043f565b82601f106200040f57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043f57825182559160200191906001019062000422565b506200044d92915062000451565b5090565b5b808211156200044d576000815560010162000452565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004bf578160001904821115620004a357620004a362000468565b80851615620004b157918102915b93841c939080029062000483565b509250929050565b600082620004d85750600162000577565b81620004e75750600062000577565b81600181146200050057600281146200050b576200052b565b600191505062000577565b60ff8411156200051f576200051f62000468565b50506001821b62000577565b5060208310610133831016604e8410600b841016171562000550575081810a62000577565b6200055c83836200047e565b806000190482111562000573576200057362000468565b0290505b92915050565b60006200058e60ff841683620004c7565b9392505050565b6000816000190483118215151615620005b257620005b262000468565b500290565b60008219821115620005cd57620005cd62000468565b500190565b600181811c90821680620005e757607f821691505b602082108114156200060957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161116c6200065f60003960006104de015260006109af015260006109fe015260006109d90152600061095d01526000610986015261116c6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610209578063a9059cbb1461021c578063d505accf1461022f578063dd62ed3e14610242578063f2fde38b1461025557600080fd5b8063715018a6146101c95780637ecebe00146101d35780638da5cb5b146101e657806395d89b411461020157600080fd5b8063313ce567116100de578063313ce567146101765780633644e51514610185578063395093511461018d57806370a08231146101a057600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610268565b6040516101259190610f26565b60405180910390f35b61014161013c366004610f97565b6102fa565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610fc1565b610312565b60405160128152602001610125565b610155610336565b61014161019b366004610f97565b610345565b6101556101ae366004610ffd565b6001600160a01b031660009081526020819052604090205490565b6101d1610367565b005b6101556101e1366004610ffd565b6103d2565b6006546040516001600160a01b039091168152602001610125565b6101186103f2565b610141610217366004610f97565b610401565b61014161022a366004610f97565b61047c565b6101d161023d36600461101f565b61048a565b610155610250366004611092565b6105ee565b6101d1610263366004610ffd565b610619565b606060038054610277906110c5565b80601f01602080910402602001604051908101604052809291908181526020018280546102a3906110c5565b80156102f05780601f106102c5576101008083540402835291602001916102f0565b820191906000526020600020905b8154815290600101906020018083116102d357829003601f168201915b5050505050905090565b6000336103088185856106e4565b5060019392505050565b600033610320858285610809565b61032b858585610883565b506001949350505050565b6000610340610959565b905090565b60003361030881858561035883836105ee565b61036291906110fa565b6106e4565b6006546001600160a01b031633146103c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103d06000610a4c565b565b6001600160a01b0381166000908152600560205260408120545b92915050565b606060048054610277906110c5565b6000338161040f82866105ee565b90508381101561046f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b61032b82868684036106e4565b600033610308818585610883565b834211156104da5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016103bd565b60007f00000000000000000000000000000000000000000000000000000000000000008888886105098c610a9e565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061056482610ac6565b9050600061057482878787610b14565b9050896001600160a01b0316816001600160a01b0316146105d75760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016103bd565b6105e28a8a8a6106e4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031633146106735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bd565b6001600160a01b0381166106d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6106e181610a4c565b50565b6001600160a01b0383166107465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061081584846105ee565b9050600019811461087d57818110156108705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103bd565b61087d84848484036106e4565b50505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b610954838383610b3c565b505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614156109a857507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b60006103ec610ad3610959565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610b2587878787610c7e565b91509150610b3281610d6b565b5095945050505050565b6001600160a01b038316610b67578060026000828254610b5c91906110fa565b90915550610bfe9050565b6001600160a01b03831660009081526020819052604090205481811015610bdf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610c1a57600280548290039055610c39565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107fc91815260200190565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610cb55750600090506003610d62565b8460ff16601b14158015610ccd57508460ff16601c14155b15610cde5750600090506004610d62565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610d32573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d5b57600060019250925050610d62565b9150600090505b94509492505050565b6000816004811115610d7f57610d7f611120565b1415610d885750565b6001816004811115610d9c57610d9c611120565b1415610dea5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103bd565b6002816004811115610dfe57610dfe611120565b1415610e4c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103bd565b6003816004811115610e6057610e60611120565b1415610eb95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016103bd565b6004816004811115610ecd57610ecd611120565b14156106e15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016103bd565b600060208083528351808285015260005b81811015610f5357858101830151858201604001528201610f37565b81811115610f65576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f9257600080fd5b919050565b60008060408385031215610faa57600080fd5b610fb383610f7b565b946020939093013593505050565b600080600060608486031215610fd657600080fd5b610fdf84610f7b565b9250610fed60208501610f7b565b9150604084013590509250925092565b60006020828403121561100f57600080fd5b61101882610f7b565b9392505050565b600080600080600080600060e0888a03121561103a57600080fd5b61104388610f7b565b965061105160208901610f7b565b95506040880135945060608801359350608088013560ff8116811461107557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156110a557600080fd5b6110ae83610f7b565b91506110bc60208401610f7b565b90509250929050565b600181811c908216806110d957607f821691505b60208210811415610ac057634e487b7160e01b600052602260045260246000fd5b6000821982111561111b57634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220354591f18bc3ddd9bf5c825032dbbebb6f830f9041f028041da3e502d705d20564736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610209578063a9059cbb1461021c578063d505accf1461022f578063dd62ed3e14610242578063f2fde38b1461025557600080fd5b8063715018a6146101c95780637ecebe00146101d35780638da5cb5b146101e657806395d89b411461020157600080fd5b8063313ce567116100de578063313ce567146101765780633644e51514610185578063395093511461018d57806370a08231146101a057600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610268565b6040516101259190610f26565b60405180910390f35b61014161013c366004610f97565b6102fa565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610fc1565b610312565b60405160128152602001610125565b610155610336565b61014161019b366004610f97565b610345565b6101556101ae366004610ffd565b6001600160a01b031660009081526020819052604090205490565b6101d1610367565b005b6101556101e1366004610ffd565b6103d2565b6006546040516001600160a01b039091168152602001610125565b6101186103f2565b610141610217366004610f97565b610401565b61014161022a366004610f97565b61047c565b6101d161023d36600461101f565b61048a565b610155610250366004611092565b6105ee565b6101d1610263366004610ffd565b610619565b606060038054610277906110c5565b80601f01602080910402602001604051908101604052809291908181526020018280546102a3906110c5565b80156102f05780601f106102c5576101008083540402835291602001916102f0565b820191906000526020600020905b8154815290600101906020018083116102d357829003601f168201915b5050505050905090565b6000336103088185856106e4565b5060019392505050565b600033610320858285610809565b61032b858585610883565b506001949350505050565b6000610340610959565b905090565b60003361030881858561035883836105ee565b61036291906110fa565b6106e4565b6006546001600160a01b031633146103c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103d06000610a4c565b565b6001600160a01b0381166000908152600560205260408120545b92915050565b606060048054610277906110c5565b6000338161040f82866105ee565b90508381101561046f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b61032b82868684036106e4565b600033610308818585610883565b834211156104da5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016103bd565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105098c610a9e565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061056482610ac6565b9050600061057482878787610b14565b9050896001600160a01b0316816001600160a01b0316146105d75760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016103bd565b6105e28a8a8a6106e4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031633146106735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bd565b6001600160a01b0381166106d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6106e181610a4c565b50565b6001600160a01b0383166107465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061081584846105ee565b9050600019811461087d57818110156108705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103bd565b61087d84848484036106e4565b50505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b610954838383610b3c565b505050565b60007f00000000000000000000000000000000000000000000000000000000000000014614156109a857507fd926a299752449f30902f8a6536afdda7abcf25e9be500c0aa9f4fd6c0dd0e4b90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f8cf3cb070ac2e199c38e9b879f27f9155b2b866cbda1ffa9c4f1e1dbc29f70a7828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b60006103ec610ad3610959565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610b2587878787610c7e565b91509150610b3281610d6b565b5095945050505050565b6001600160a01b038316610b67578060026000828254610b5c91906110fa565b90915550610bfe9050565b6001600160a01b03831660009081526020819052604090205481811015610bdf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610c1a57600280548290039055610c39565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107fc91815260200190565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610cb55750600090506003610d62565b8460ff16601b14158015610ccd57508460ff16601c14155b15610cde5750600090506004610d62565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610d32573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d5b57600060019250925050610d62565b9150600090505b94509492505050565b6000816004811115610d7f57610d7f611120565b1415610d885750565b6001816004811115610d9c57610d9c611120565b1415610dea5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016103bd565b6002816004811115610dfe57610dfe611120565b1415610e4c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016103bd565b6003816004811115610e6057610e60611120565b1415610eb95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016103bd565b6004816004811115610ecd57610ecd611120565b14156106e15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016103bd565b600060208083528351808285015260005b81811015610f5357858101830151858201604001528201610f37565b81811115610f65576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f9257600080fd5b919050565b60008060408385031215610faa57600080fd5b610fb383610f7b565b946020939093013593505050565b600080600060608486031215610fd657600080fd5b610fdf84610f7b565b9250610fed60208501610f7b565b9150604084013590509250925092565b60006020828403121561100f57600080fd5b61101882610f7b565b9392505050565b600080600080600080600060e0888a03121561103a57600080fd5b61104388610f7b565b965061105160208901610f7b565b95506040880135945060608801359350608088013560ff8116811461107557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156110a557600080fd5b6110ae83610f7b565b91506110bc60208401610f7b565b90509250929050565b600181811c908216806110d957607f821691505b60208210811415610ac057634e487b7160e01b600052602260045260246000fd5b6000821982111561111b57634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220354591f18bc3ddd9bf5c825032dbbebb6f830f9041f028041da3e502d705d20564736f6c63430008090033

Deployed Bytecode Sourcemap

37152:187:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5960:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8320:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8320:201:0;1053:187:1;7089:108:0;7177:12;;7089:108;;;1391:25:1;;;1379:2;1364:18;7089:108:0;1245:177:1;9101:261:0;;;;;;:::i;:::-;;:::i;6931:93::-;;;7014:2;1902:36:1;;1890:2;1875:18;6931:93:0;1760:184:1;34414:115:0;;;:::i;9771:238::-;;;;;;:::i;:::-;;:::i;7260:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7361:18:0;7334:7;7361:18;;;;;;;;;;;;7260:127;36442:94;;;:::i;:::-;;34156:128;;;;;;:::i;:::-;;:::i;35791:87::-;35864:6;;35791:87;;-1:-1:-1;;;;;35864:6:0;;;2468:51:1;;2456:2;2441:18;35791:87:0;2322:203:1;6179:104:0;;;:::i;10512:436::-;;;;;;:::i;:::-;;:::i;7593:193::-;;;;;;:::i;:::-;;:::i;33445:645::-;;;;;;:::i;:::-;;:::i;7849:151::-;;;;;;:::i;:::-;;:::i;36691:192::-;;;;;;:::i;:::-;;:::i;5960:100::-;6014:13;6047:5;6040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5960:100;:::o;8320:201::-;8403:4;3905:10;8459:32;3905:10;8475:7;8484:6;8459:8;:32::i;:::-;-1:-1:-1;8509:4:0;;8320:201;-1:-1:-1;;;8320:201:0:o;9101:261::-;9198:4;3905:10;9256:38;9272:4;3905:10;9287:6;9256:15;:38::i;:::-;9305:27;9315:4;9321:2;9325:6;9305:9;:27::i;:::-;-1:-1:-1;9350:4:0;;9101:261;-1:-1:-1;;;;9101:261:0:o;34414:115::-;34474:7;34501:20;:18;:20::i;:::-;34494:27;;34414:115;:::o;9771:238::-;9859:4;3905:10;9915:64;3905:10;9931:7;9968:10;9940:25;3905:10;9931:7;9940:9;:25::i;:::-;:38;;;;:::i;:::-;9915:8;:64::i;36442:94::-;35864:6;;-1:-1:-1;;;;;35864:6:0;3905:10;36011:23;36003:68;;;;-1:-1:-1;;;36003:68:0;;4310:2:1;36003:68:0;;;4292:21:1;;;4329:18;;;4322:30;4388:34;4368:18;;;4361:62;4440:18;;36003:68:0;;;;;;;;;36507:21:::1;36525:1;36507:9;:21::i;:::-;36442:94::o:0;34156:128::-;-1:-1:-1;;;;;34252:14:0;;34225:7;34252:14;;;:7;:14;;;;;31684;34252:24;34245:31;34156:128;-1:-1:-1;;34156:128:0:o;6179:104::-;6235:13;6268:7;6261:14;;;;;:::i;10512:436::-;10605:4;3905:10;10605:4;10688:25;3905:10;10705:7;10688:9;:25::i;:::-;10661:52;;10752:15;10732:16;:35;;10724:85;;;;-1:-1:-1;;;10724:85:0;;4671:2:1;10724:85:0;;;4653:21:1;4710:2;4690:18;;;4683:30;4749:34;4729:18;;;4722:62;-1:-1:-1;;;4800:18:1;;;4793:35;4845:19;;10724:85:0;4469:401:1;10724:85:0;10845:60;10854:5;10861:7;10889:15;10870:16;:34;10845:8;:60::i;7593:193::-;7672:4;3905:10;7728:28;3905:10;7745:2;7749:6;7728:9;:28::i;33445:645::-;33689:8;33670:15;:27;;33662:69;;;;-1:-1:-1;;;33662:69:0;;5077:2:1;33662:69:0;;;5059:21:1;5116:2;5096:18;;;5089:30;5155:31;5135:18;;;5128:59;5204:18;;33662:69:0;4875:353:1;33662:69:0;33744:18;33786:16;33804:5;33811:7;33820:5;33827:16;33837:5;33827:9;:16::i;:::-;33775:79;;;;;;5520:25:1;;;;-1:-1:-1;;;;;5619:15:1;;;5599:18;;;5592:43;5671:15;;;;5651:18;;;5644:43;5703:18;;;5696:34;5746:19;;;5739:35;5790:19;;;5783:35;;;5492:19;;33775:79:0;;;;;;;;;;;;33765:90;;;;;;33744:111;;33868:12;33883:28;33900:10;33883:16;:28::i;:::-;33868:43;;33924:14;33941:28;33955:4;33961:1;33964;33967;33941:13;:28::i;:::-;33924:45;;33998:5;-1:-1:-1;;;;;33988:15:0;:6;-1:-1:-1;;;;;33988:15:0;;33980:58;;;;-1:-1:-1;;;33980:58:0;;6031:2:1;33980:58:0;;;6013:21:1;6070:2;6050:18;;;6043:30;6109:32;6089:18;;;6082:60;6159:18;;33980:58:0;5829:354:1;33980:58:0;34051:31;34060:5;34067:7;34076:5;34051:8;:31::i;:::-;33651:439;;;33445:645;;;;;;;:::o;7849:151::-;-1:-1:-1;;;;;7965:18:0;;;7938:7;7965:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7849:151::o;36691:192::-;35864:6;;-1:-1:-1;;;;;35864:6:0;3905:10;36011:23;36003:68;;;;-1:-1:-1;;;36003:68:0;;4310:2:1;36003:68:0;;;4292:21:1;;;4329:18;;;4322:30;4388:34;4368:18;;;4361:62;4440:18;;36003:68:0;4108:356:1;36003:68:0;-1:-1:-1;;;;;36780:22:0;::::1;36772:73;;;::::0;-1:-1:-1;;;36772:73:0;;6390:2:1;36772:73:0::1;::::0;::::1;6372:21:1::0;6429:2;6409:18;;;6402:30;6468:34;6448:18;;;6441:62;-1:-1:-1;;;6519:18:1;;;6512:36;6565:19;;36772:73:0::1;6188:402:1::0;36772:73:0::1;36856:19;36866:8;36856:9;:19::i;:::-;36691:192:::0;:::o;14381:346::-;-1:-1:-1;;;;;14483:19:0;;14475:68;;;;-1:-1:-1;;;14475:68:0;;6797:2:1;14475:68:0;;;6779:21:1;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;-1:-1:-1;;;6926:18:1;;;6919:34;6970:19;;14475:68:0;6595:400:1;14475:68:0;-1:-1:-1;;;;;14562:21:0;;14554:68;;;;-1:-1:-1;;;14554:68:0;;7202:2:1;14554:68:0;;;7184:21:1;7241:2;7221:18;;;7214:30;7280:34;7260:18;;;7253:62;-1:-1:-1;;;7331:18:1;;;7324:32;7373:19;;14554:68:0;7000:398:1;14554:68:0;-1:-1:-1;;;;;14635:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14687:32;;1391:25:1;;;14687:32:0;;1364:18:1;14687:32:0;;;;;;;;14381:346;;;:::o;15018:419::-;15119:24;15146:25;15156:5;15163:7;15146:9;:25::i;:::-;15119:52;;-1:-1:-1;;15186:16:0;:37;15182:248;;15268:6;15248:16;:26;;15240:68;;;;-1:-1:-1;;;15240:68:0;;7605:2:1;15240:68:0;;;7587:21:1;7644:2;7624:18;;;7617:30;7683:31;7663:18;;;7656:59;7732:18;;15240:68:0;7403:353:1;15240:68:0;15352:51;15361:5;15368:7;15396:6;15377:16;:25;15352:8;:51::i;:::-;15108:329;15018:419;;;:::o;11325:268::-;-1:-1:-1;;;;;11414:18:0;;11406:68;;;;-1:-1:-1;;;11406:68:0;;7963:2:1;11406:68:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:34;8021:18;;;8014:62;-1:-1:-1;;;8092:18:1;;;8085:35;8137:19;;11406:68:0;7761:401:1;11406:68:0;-1:-1:-1;;;;;11493:16:0;;11485:64;;;;-1:-1:-1;;;11485:64:0;;8369:2:1;11485:64:0;;;8351:21:1;8408:2;8388:18;;;8381:30;8447:34;8427:18;;;8420:62;-1:-1:-1;;;8498:18:1;;;8491:33;8541:19;;11485:64:0;8167:399:1;11485:64:0;11560:25;11568:4;11574:2;11578:6;11560:7;:25::i;:::-;11325:268;;;:::o;29493:281::-;29546:7;29587:16;29570:13;:33;29566:201;;;-1:-1:-1;29627:24:0;;29493:281::o;29566:201::-;-1:-1:-1;29963:73:0;;;29713:10;29963:73;;;;9237:25:1;;;;29725:12:0;9278:18:1;;;9271:34;29739:15:0;9321:18:1;;;9314:34;30007:13:0;9364:18:1;;;9357:34;30030:4:0;9407:19:1;;;;9400:61;;;;29963:73:0;;;;;;;;;;9209:19:1;;;;29963:73:0;;;29953:84;;;;;;34414:115::o;36891:173::-;36966:6;;;-1:-1:-1;;;;;36983:17:0;;;-1:-1:-1;;;;;;36983:17:0;;;;;;;37016:40;;36966:6;;;36983:17;36966:6;;37016:40;;36947:16;;37016:40;36936:128;36891:173;:::o;34667:207::-;-1:-1:-1;;;;;34788:14:0;;34727:15;34788:14;;;:7;:14;;;;;31684;;31821:1;31803:19;;;;31684:14;34849:17;34744:130;34667:207;;;:::o;30687:167::-;30764:7;30791:55;30813:20;:18;:20::i;:::-;30835:10;26451:57;;-1:-1:-1;;;26451:57:0;;;9730:27:1;9773:11;;;9766:27;;;9809:12;;;9802:28;;;26414:7:0;;9846:12:1;;26451:57:0;;;;;;;;;;;;26441:68;;;;;;26434:75;;26321:196;;;;;25123:279;25251:7;25272:17;25291:18;25313:25;25324:4;25330:1;25333;25336;25313:10;:25::i;:::-;25271:67;;;;25349:18;25361:5;25349:11;:18::i;:::-;-1:-1:-1;25385:9:0;25123:279;-1:-1:-1;;;;;25123:279:0:o;11901:998::-;-1:-1:-1;;;;;11992:18:0;;11988:408;;12043:6;12027:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;11988:408:0;;-1:-1:-1;11988:408:0;;-1:-1:-1;;;;;12104:15:0;;12082:19;12104:15;;;;;;;;;;;12142:21;;;;12134:72;;;;-1:-1:-1;;;12134:72:0;;8773:2:1;12134:72:0;;;8755:21:1;8812:2;8792:18;;;8785:30;8851:34;8831:18;;;8824:62;-1:-1:-1;;;8902:18:1;;;8895:36;8948:19;;12134:72:0;8571:402:1;12134:72:0;-1:-1:-1;;;;;12331:15:0;;:9;:15;;;;;;;;;;12349:20;;;;12331:38;;11988:408;-1:-1:-1;;;;;12412:16:0;;12408:440;;12580:12;:22;;;;;;;12408:440;;;-1:-1:-1;;;;;12798:13:0;;:9;:13;;;;;;;;;;:23;;;;;;12408:440;12880:2;-1:-1:-1;;;;;12865:26:0;12874:4;-1:-1:-1;;;;;12865:26:0;;12884:6;12865:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;23352:1632:0;23483:7;;24417:66;24404:79;;24400:163;;;-1:-1:-1;24516:1:0;;-1:-1:-1;24520:30:0;24500:51;;24400:163;24577:1;:7;;24582:2;24577:7;;:18;;;;;24588:1;:7;;24593:2;24588:7;;24577:18;24573:102;;;-1:-1:-1;24628:1:0;;-1:-1:-1;24632:30:0;24612:51;;24573:102;24789:24;;;24772:14;24789:24;;;;;;;;;10096:25:1;;;10169:4;10157:17;;10137:18;;;10130:45;;;;10191:18;;;10184:34;;;10234:18;;;10227:34;;;24789:24:0;;10068:19:1;;24789:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24789:24:0;;-1:-1:-1;;24789:24:0;;;-1:-1:-1;;;;;;;24828:20:0;;24824:103;;24881:1;24885:29;24865:50;;;;;;;24824:103;24947:6;-1:-1:-1;24955:20:0;;-1:-1:-1;23352:1632:0;;;;;;;;:::o;18014:643::-;18092:20;18083:5;:29;;;;;;;;:::i;:::-;;18079:571;;;18014:643;:::o;18079:571::-;18190:29;18181:5;:38;;;;;;;;:::i;:::-;;18177:473;;;18236:34;;-1:-1:-1;;;18236:34:0;;10606:2:1;18236:34:0;;;10588:21:1;10645:2;10625:18;;;10618:30;10684:26;10664:18;;;10657:54;10728:18;;18236:34:0;10404:348:1;18177:473:0;18301:35;18292:5;:44;;;;;;;;:::i;:::-;;18288:362;;;18353:41;;-1:-1:-1;;;18353:41:0;;10959:2:1;18353:41:0;;;10941:21:1;10998:2;10978:18;;;10971:30;11037:33;11017:18;;;11010:61;11088:18;;18353:41:0;10757:355:1;18288:362:0;18425:30;18416:5;:39;;;;;;;;:::i;:::-;;18412:238;;;18472:44;;-1:-1:-1;;;18472:44:0;;11319:2:1;18472:44:0;;;11301:21:1;11358:2;11338:18;;;11331:30;11397:34;11377:18;;;11370:62;-1:-1:-1;;;11448:18:1;;;11441:32;11490:19;;18472:44:0;11117:398:1;18412:238:0;18547:30;18538:5;:39;;;;;;;;:::i;:::-;;18534:116;;;18594:44;;-1:-1:-1;;;18594:44:0;;11722:2:1;18594:44:0;;;11704:21:1;11761:2;11741:18;;;11734:30;11800:34;11780:18;;;11773:62;-1:-1:-1;;;11851:18:1;;;11844:32;11893:19;;18594:44:0;11520:398:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2131:186::-;2190:6;2243:2;2231:9;2222:7;2218:23;2214:32;2211:52;;;2259:1;2256;2249:12;2211:52;2282:29;2301:9;2282:29;:::i;:::-;2272:39;2131:186;-1:-1:-1;;;2131:186:1:o;2530:693::-;2641:6;2649;2657;2665;2673;2681;2689;2742:3;2730:9;2721:7;2717:23;2713:33;2710:53;;;2759:1;2756;2749:12;2710:53;2782:29;2801:9;2782:29;:::i;:::-;2772:39;;2830:38;2864:2;2853:9;2849:18;2830:38;:::i;:::-;2820:48;;2915:2;2904:9;2900:18;2887:32;2877:42;;2966:2;2955:9;2951:18;2938:32;2928:42;;3020:3;3009:9;3005:19;2992:33;3065:4;3058:5;3054:16;3047:5;3044:27;3034:55;;3085:1;3082;3075:12;3034:55;2530:693;;;;-1:-1:-1;2530:693:1;;;;3108:5;3160:3;3145:19;;3132:33;;-1:-1:-1;3212:3:1;3197:19;;;3184:33;;2530:693;-1:-1:-1;;2530:693:1:o;3228:260::-;3296:6;3304;3357:2;3345:9;3336:7;3332:23;3328:32;3325:52;;;3373:1;3370;3363:12;3325:52;3396:29;3415:9;3396:29;:::i;:::-;3386:39;;3444:38;3478:2;3467:9;3463:18;3444:38;:::i;:::-;3434:48;;3228:260;;;;;:::o;3493:380::-;3572:1;3568:12;;;;3615;;;3636:61;;3690:4;3682:6;3678:17;3668:27;;3636:61;3743:2;3735:6;3732:14;3712:18;3709:38;3706:161;;;3789:10;3784:3;3780:20;3777:1;3770:31;3824:4;3821:1;3814:15;3852:4;3849:1;3842:15;3878:225;3918:3;3949:1;3945:6;3942:1;3939:13;3936:136;;;3994:10;3989:3;3985:20;3982:1;3975:31;4029:4;4026:1;4019:15;4057:4;4054:1;4047:15;3936:136;-1:-1:-1;4088:9:1;;3878:225::o;10272:127::-;10333:10;10328:3;10324:20;10321:1;10314:31;10364:4;10361:1;10354:15;10388:4;10385:1;10378:15

Swarm Source

ipfs://354591f18bc3ddd9bf5c825032dbbebb6f830f9041f028041da3e502d705d205
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.