MATIC Price: $0.79 (-1.72%)
Gas: 99 Gwei
 

Overview

Max Total Supply

133,742,069 NFT staking

Holders

1

Market

Price

$0.00 @ 0.000000 MATIC

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
133,742,069 NFT staking

Value
$0.00
0x6ff40a8a1fe16075bd6008a48befb768be08b4b0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
XVMCtrackerCDP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-06-05
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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:
     *
     * - `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 `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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 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 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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: xvmc-contracts/pools/dummy.sol


pragma solidity ^0.8.0;



interface IToken {
    function governor() external view returns (address);
}

contract XVMCtrackerCDP is ERC20, ERC20Burnable {
	address public immutable xvmc;

    constructor(string memory _forDuration, address _xvmc) ERC20("Dummy Token", _forDuration) {
		xvmc = _xvmc;
	}
    
    modifier onlyOwner() {
        require(msg.sender == IToken(xvmc).governor(), "only governor allowed");
        _;
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_forDuration","type":"string"},{"internalType":"address","name":"_xvmc","type":"address"}],"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":[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"xvmc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

Contract Creation Code

60a06040523480156200001157600080fd5b50604051620010c6380380620010c683398101604081905262000034916200015c565b60408051808201909152600b8082526a223ab6b6bc902a37b5b2b760a91b602083019081528491620000699160039162000099565b5080516200007f90600490602084019062000099565b50505060601b6001600160601b0319166080525062000293565b828054620000a79062000240565b90600052602060002090601f016020900481019282620000cb576000855562000116565b82601f10620000e657805160ff191683800117855562000116565b8280016001018555821562000116579182015b8281111562000116578251825591602001919060010190620000f9565b506200012492915062000128565b5090565b5b8082111562000124576000815560010162000129565b80516001600160a01b03811681146200015757600080fd5b919050565b600080604083850312156200016f578182fd5b82516001600160401b038082111562000186578384fd5b818501915085601f8301126200019a578384fd5b815181811115620001af57620001af6200027d565b6040516020601f8301601f1916820181018481118382101715620001d757620001d76200027d565b6040528282528483018101891015620001ee578687fd5b8693505b82841015620002115784840181015182850182015292830192620001f2565b828411156200022257868184840101525b819650620002328189016200013f565b955050505050509250929050565b6002810460018216806200025557607f821691505b602082108114156200027757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610e0d620002b96000396000818161034701526104d90152610e0d6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d7146101de578063a9059cbb146101f1578063dd194cad14610204578063dd62ed3e14610219576100f5565b806342966c681461019d57806370a08231146101b057806379cc6790146101c357806395d89b41146101d6576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806340c10f1914610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b61010261022c565b60405161010f9190610a1f565b60405180910390f35b61012b6101263660046109bd565b6102be565b60405161010f9190610a14565b6101406102e0565b60405161010f9190610d2b565b61012b61015b36600461097d565b6102e6565b610168610314565b60405161010f9190610d34565b61012b6101833660046109bd565b610319565b61019b6101963660046109bd565b610345565b005b61019b6101ab3660046109e8565b61041d565b6101406101be366004610906565b610431565b61019b6101d13660046109bd565b61044c565b610102610468565b61012b6101ec3660046109bd565b610477565b61012b6101ff3660046109bd565b6104bf565b61020c6104d7565b60405161010f9190610a00565b610140610227366004610945565b6104fb565b60606003805461023b90610d71565b80601f016020809104026020016040519081016040528092919081815260200182805461026790610d71565b80156102b45780601f10610289576101008083540402835291602001916102b4565b820191906000526020600020905b81548152906001019060200180831161029757829003601f168201915b5050505050905090565b6000806102c9610526565b90506102d681858561052a565b5060019392505050565b60025490565b6000806102f1610526565b90506102fe8582856105de565b610309858585610628565b506001949350505050565b601290565b600080610324610526565b90506102d681858561033685896104fb565b6103409190610d42565b61052a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561039e57600080fd5b505afa1580156103b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d69190610929565b6001600160a01b0316336001600160a01b03161461040f5760405162461bcd60e51b815260040161040690610ab5565b60405180910390fd5b610419828261074c565b5050565b61042e610428610526565b82610814565b50565b6001600160a01b031660009081526020819052604090205490565b61045e82610458610526565b836105de565b6104198282610814565b60606004805461023b90610d71565b600080610482610526565b9050600061049082866104fb565b9050838110156104b25760405162461bcd60e51b815260040161040690610caf565b610309828686840361052a565b6000806104ca610526565b90506102d6818585610628565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166105505760405162461bcd60e51b815260040161040690610c6b565b6001600160a01b0382166105765760405162461bcd60e51b815260040161040690610b26565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105d1908590610d2b565b60405180910390a3505050565b60006105ea84846104fb565b9050600019811461062257818110156106155760405162461bcd60e51b815260040161040690610b68565b610622848484840361052a565b50505050565b6001600160a01b03831661064e5760405162461bcd60e51b815260040161040690610c26565b6001600160a01b0382166106745760405162461bcd60e51b815260040161040690610a72565b61067f838383610901565b6001600160a01b038316600090815260208190526040902054818110156106b85760405162461bcd60e51b815260040161040690610b9f565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106ef908490610d42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107399190610d2b565b60405180910390a3610622848484610901565b6001600160a01b0382166107725760405162461bcd60e51b815260040161040690610cf4565b61077e60008383610901565b80600260008282546107909190610d42565b90915550506001600160a01b038216600090815260208190526040812080548392906107bd908490610d42565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610800908590610d2b565b60405180910390a361041960008383610901565b6001600160a01b03821661083a5760405162461bcd60e51b815260040161040690610be5565b61084682600083610901565b6001600160a01b0382166000908152602081905260409020548181101561087f5760405162461bcd60e51b815260040161040690610ae4565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108ae908490610d5a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108f1908690610d2b565b60405180910390a3610901836000845b505050565b600060208284031215610917578081fd5b813561092281610dc2565b9392505050565b60006020828403121561093a578081fd5b815161092281610dc2565b60008060408385031215610957578081fd5b823561096281610dc2565b9150602083013561097281610dc2565b809150509250929050565b600080600060608486031215610991578081fd5b833561099c81610dc2565b925060208401356109ac81610dc2565b929592945050506040919091013590565b600080604083850312156109cf578182fd5b82356109da81610dc2565b946020939093013593505050565b6000602082840312156109f9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610a4b57858101830151858201604001528201610a2f565b81811115610a5c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601590820152741bdb9b1e4819dbdd995c9b9bdc88185b1b1bddd959605a1b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610d5557610d55610dac565b500190565b600082821015610d6c57610d6c610dac565b500390565b600281046001821680610d8557607f821691505b60208210811415610da657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461042e57600080fdfea26469706673582212200057ebcde6d18aabf12d32d5fbf835a8333fc9bfa3e46b5d066f33b2c02c333964736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee000000000000000000000000000000000000000000000000000000000000000b4e4654207374616b696e67000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d7146101de578063a9059cbb146101f1578063dd194cad14610204578063dd62ed3e14610219576100f5565b806342966c681461019d57806370a08231146101b057806379cc6790146101c357806395d89b41146101d6576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806340c10f1914610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b61010261022c565b60405161010f9190610a1f565b60405180910390f35b61012b6101263660046109bd565b6102be565b60405161010f9190610a14565b6101406102e0565b60405161010f9190610d2b565b61012b61015b36600461097d565b6102e6565b610168610314565b60405161010f9190610d34565b61012b6101833660046109bd565b610319565b61019b6101963660046109bd565b610345565b005b61019b6101ab3660046109e8565b61041d565b6101406101be366004610906565b610431565b61019b6101d13660046109bd565b61044c565b610102610468565b61012b6101ec3660046109bd565b610477565b61012b6101ff3660046109bd565b6104bf565b61020c6104d7565b60405161010f9190610a00565b610140610227366004610945565b6104fb565b60606003805461023b90610d71565b80601f016020809104026020016040519081016040528092919081815260200182805461026790610d71565b80156102b45780601f10610289576101008083540402835291602001916102b4565b820191906000526020600020905b81548152906001019060200180831161029757829003601f168201915b5050505050905090565b6000806102c9610526565b90506102d681858561052a565b5060019392505050565b60025490565b6000806102f1610526565b90506102fe8582856105de565b610309858585610628565b506001949350505050565b601290565b600080610324610526565b90506102d681858561033685896104fb565b6103409190610d42565b61052a565b7f000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee6001600160a01b0316630c340a246040518163ffffffff1660e01b815260040160206040518083038186803b15801561039e57600080fd5b505afa1580156103b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d69190610929565b6001600160a01b0316336001600160a01b03161461040f5760405162461bcd60e51b815260040161040690610ab5565b60405180910390fd5b610419828261074c565b5050565b61042e610428610526565b82610814565b50565b6001600160a01b031660009081526020819052604090205490565b61045e82610458610526565b836105de565b6104198282610814565b60606004805461023b90610d71565b600080610482610526565b9050600061049082866104fb565b9050838110156104b25760405162461bcd60e51b815260040161040690610caf565b610309828686840361052a565b6000806104ca610526565b90506102d6818585610628565b7f000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee81565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166105505760405162461bcd60e51b815260040161040690610c6b565b6001600160a01b0382166105765760405162461bcd60e51b815260040161040690610b26565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105d1908590610d2b565b60405180910390a3505050565b60006105ea84846104fb565b9050600019811461062257818110156106155760405162461bcd60e51b815260040161040690610b68565b610622848484840361052a565b50505050565b6001600160a01b03831661064e5760405162461bcd60e51b815260040161040690610c26565b6001600160a01b0382166106745760405162461bcd60e51b815260040161040690610a72565b61067f838383610901565b6001600160a01b038316600090815260208190526040902054818110156106b85760405162461bcd60e51b815260040161040690610b9f565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106ef908490610d42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107399190610d2b565b60405180910390a3610622848484610901565b6001600160a01b0382166107725760405162461bcd60e51b815260040161040690610cf4565b61077e60008383610901565b80600260008282546107909190610d42565b90915550506001600160a01b038216600090815260208190526040812080548392906107bd908490610d42565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610800908590610d2b565b60405180910390a361041960008383610901565b6001600160a01b03821661083a5760405162461bcd60e51b815260040161040690610be5565b61084682600083610901565b6001600160a01b0382166000908152602081905260409020548181101561087f5760405162461bcd60e51b815260040161040690610ae4565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108ae908490610d5a565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108f1908690610d2b565b60405180910390a3610901836000845b505050565b600060208284031215610917578081fd5b813561092281610dc2565b9392505050565b60006020828403121561093a578081fd5b815161092281610dc2565b60008060408385031215610957578081fd5b823561096281610dc2565b9150602083013561097281610dc2565b809150509250929050565b600080600060608486031215610991578081fd5b833561099c81610dc2565b925060208401356109ac81610dc2565b929592945050506040919091013590565b600080604083850312156109cf578182fd5b82356109da81610dc2565b946020939093013593505050565b6000602082840312156109f9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610a4b57858101830151858201604001528201610a2f565b81811115610a5c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601590820152741bdb9b1e4819dbdd995c9b9bdc88185b1b1bddd959605a1b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610d5557610d55610dac565b500190565b600082821015610d6c57610d6c610dac565b500390565b600281046001821680610d8557607f821691505b60208210811415610da657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461042e57600080fdfea26469706673582212200057ebcde6d18aabf12d32d5fbf835a8333fc9bfa3e46b5d066f33b2c02c333964736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee000000000000000000000000000000000000000000000000000000000000000b4e4654207374616b696e67000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _forDuration (string): NFT staking
Arg [1] : _xvmc (address): 0x970ccEe657Dd831e9C37511Aa3eb5302C1Eb5EEe

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4e4654207374616b696e67000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18771:443:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9004:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7773:108::-;;;:::i;:::-;;;;;;;:::i;9785:295::-;;;;;;:::i;:::-;;:::i;7615:93::-;;;:::i;:::-;;;;;;;:::i;10489:238::-;;;;;;:::i;:::-;;:::i;19116:95::-;;;;;;:::i;:::-;;:::i;:::-;;18031:91;;;;;;:::i;:::-;;:::i;7944:127::-;;;;;;:::i;:::-;;:::i;18441:164::-;;;;;;:::i;:::-;;:::i;6872:104::-;;;:::i;11230:436::-;;;;;;:::i;:::-;;:::i;8277:193::-;;;;;;:::i;:::-;;:::i;18823:29::-;;;:::i;:::-;;;;;;;:::i;8533:151::-;;;;;;:::i;:::-;;:::i;6653:100::-;6707:13;6740:5;6733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:100;:::o;9004:201::-;9087:4;9104:13;9120:12;:10;:12::i;:::-;9104:28;;9143:32;9152:5;9159:7;9168:6;9143:8;:32::i;:::-;-1:-1:-1;9193:4:0;;9004:201;-1:-1:-1;;;9004:201:0:o;7773:108::-;7861:12;;7773:108;:::o;9785:295::-;9916:4;9933:15;9951:12;:10;:12::i;:::-;9933:30;;9974:38;9990:4;9996:7;10005:6;9974:15;:38::i;:::-;10023:27;10033:4;10039:2;10043:6;10023:9;:27::i;:::-;-1:-1:-1;10068:4:0;;9785:295;-1:-1:-1;;;;9785:295:0:o;7615:93::-;7698:2;7615:93;:::o;10489:238::-;10577:4;10594:13;10610:12;:10;:12::i;:::-;10594:28;;10633:64;10642:5;10649:7;10686:10;10658:25;10668:5;10675:7;10658:9;:25::i;:::-;:38;;;;:::i;:::-;10633:8;:64::i;19116:95::-;19046:4;-1:-1:-1;;;;;19039:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19025:37:0;:10;-1:-1:-1;;;;;19025:37:0;;19017:71;;;;-1:-1:-1;;;19017:71:0;;;;;;;:::i;:::-;;;;;;;;;19186:17:::1;19192:2;19196:6;19186:5;:17::i;:::-;19116:95:::0;;:::o;18031:91::-;18087:27;18093:12;:10;:12::i;:::-;18107:6;18087:5;:27::i;:::-;18031:91;:::o;7944:127::-;-1:-1:-1;;;;;8045:18:0;8018:7;8045:18;;;;;;;;;;;;7944:127::o;18441:164::-;18518:46;18534:7;18543:12;:10;:12::i;:::-;18557:6;18518:15;:46::i;:::-;18575:22;18581:7;18590:6;18575:5;:22::i;6872:104::-;6928:13;6961:7;6954:14;;;;;:::i;11230:436::-;11323:4;11340:13;11356:12;:10;:12::i;:::-;11340:28;;11379:24;11406:25;11416:5;11423:7;11406:9;:25::i;:::-;11379:52;;11470:15;11450:16;:35;;11442:85;;;;-1:-1:-1;;;11442:85:0;;;;;;;:::i;:::-;11563:60;11572:5;11579:7;11607:15;11588:16;:34;11563:8;:60::i;8277:193::-;8356:4;8373:13;8389:12;:10;:12::i;:::-;8373:28;;8412;8422:5;8429:2;8433:6;8412:9;:28::i;18823:29::-;;;:::o;8533:151::-;-1:-1:-1;;;;;8649:18:0;;;8622:7;8649:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8533:151::o;679:98::-;759:10;679:98;:::o;14864:380::-;-1:-1:-1;;;;;15000:19:0;;14992:68;;;;-1:-1:-1;;;14992:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15079:21:0;;15071:68;;;;-1:-1:-1;;;15071:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15152:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15204:32;;;;;15182:6;;15204:32;:::i;:::-;;;;;;;;14864:380;;;:::o;15535:453::-;15670:24;15697:25;15707:5;15714:7;15697:9;:25::i;:::-;15670:52;;-1:-1:-1;;15737:16:0;:37;15733:248;;15819:6;15799:16;:26;;15791:68;;;;-1:-1:-1;;;15791:68:0;;;;;;;:::i;:::-;15903:51;15912:5;15919:7;15947:6;15928:16;:25;15903:8;:51::i;:::-;15535:453;;;;:::o;12145:671::-;-1:-1:-1;;;;;12276:18:0;;12268:68;;;;-1:-1:-1;;;12268:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12355:16:0;;12347:64;;;;-1:-1:-1;;;12347:64:0;;;;;;;:::i;:::-;12424:38;12445:4;12451:2;12455:6;12424:20;:38::i;:::-;-1:-1:-1;;;;;12497:15:0;;12475:19;12497:15;;;;;;;;;;;12531:21;;;;12523:72;;;;-1:-1:-1;;;12523:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12631:15:0;;;:9;:15;;;;;;;;;;;12649:20;;;12631:38;;12691:13;;;;;;;;:23;;12663:6;;12631:9;12691:23;;12663:6;;12691:23;:::i;:::-;;;;;;;;12747:2;-1:-1:-1;;;;;12732:26:0;12741:4;-1:-1:-1;;;;;12732:26:0;;12751:6;12732:26;;;;;;:::i;:::-;;;;;;;;12771:37;12791:4;12797:2;12801:6;12771:19;:37::i;13103:399::-;-1:-1:-1;;;;;13187:21:0;;13179:65;;;;-1:-1:-1;;;13179:65:0;;;;;;;:::i;:::-;13257:49;13286:1;13290:7;13299:6;13257:20;:49::i;:::-;13335:6;13319:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13352:18:0;;:9;:18;;;;;;;;;;:28;;13374:6;;13352:9;:28;;13374:6;;13352:28;:::i;:::-;;;;-1:-1:-1;;13396:37:0;;-1:-1:-1;;;;;13396:37:0;;;13413:1;;13396:37;;;;13426:6;;13396:37;:::i;:::-;;;;;;;;13446:48;13474:1;13478:7;13487:6;13446:19;:48::i;13835:591::-;-1:-1:-1;;;;;13919:21:0;;13911:67;;;;-1:-1:-1;;;13911:67:0;;;;;;;:::i;:::-;13991:49;14012:7;14029:1;14033:6;13991:20;:49::i;:::-;-1:-1:-1;;;;;14078:18:0;;14053:22;14078:18;;;;;;;;;;;14115:24;;;;14107:71;;;;-1:-1:-1;;;14107:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14214:18:0;;:9;:18;;;;;;;;;;14235:23;;;14214:44;;14280:12;:22;;14252:6;;14214:9;14280:22;;14252:6;;14280:22;:::i;:::-;;;;-1:-1:-1;;14320:37:0;;14346:1;;-1:-1:-1;;;;;14320:37:0;;;;;;;14350:6;;14320:37;:::i;:::-;;;;;;;;14370:48;14390:7;14407:1;14411:6;14370:48;13835:591;;;:::o;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;:::-;262:5;84:189;-1:-1:-1;;;84:189:1:o;278:263::-;;401:2;389:9;380:7;376:23;372:32;369:2;;;422:6;414;407:22;369:2;459:9;453:16;478:33;505:5;478:33;:::i;546:402::-;;;675:2;663:9;654:7;650:23;646:32;643:2;;;696:6;688;681:22;643:2;740:9;727:23;759:33;786:5;759:33;:::i;:::-;811:5;-1:-1:-1;868:2:1;853:18;;840:32;881:35;840:32;881:35;:::i;:::-;935:7;925:17;;;633:315;;;;;:::o;953:470::-;;;;1099:2;1087:9;1078:7;1074:23;1070:32;1067:2;;;1120:6;1112;1105:22;1067:2;1164:9;1151:23;1183:33;1210:5;1183:33;:::i;:::-;1235:5;-1:-1:-1;1292:2:1;1277:18;;1264:32;1305:35;1264:32;1305:35;:::i;:::-;1057:366;;1359:7;;-1:-1:-1;;;1413:2:1;1398:18;;;;1385:32;;1057:366::o;1428:327::-;;;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1622:9;1609:23;1641:33;1668:5;1641:33;:::i;:::-;1693:5;1745:2;1730:18;;;;1717:32;;-1:-1:-1;;;1515:240:1:o;1760:190::-;;1872:2;1860:9;1851:7;1847:23;1843:32;1840:2;;;1893:6;1885;1878:22;1840:2;-1:-1:-1;1921:23:1;;1830:120;-1:-1:-1;1830:120:1:o;1955:203::-;-1:-1:-1;;;;;2119:32:1;;;;2101:51;;2089:2;2074:18;;2056:102::o;2163:187::-;2328:14;;2321:22;2303:41;;2291:2;2276:18;;2258:92::o;2355:603::-;;2496:2;2525;2514:9;2507:21;2557:6;2551:13;2600:6;2595:2;2584:9;2580:18;2573:34;2625:4;2638:140;2652:6;2649:1;2646:13;2638:140;;;2747:14;;;2743:23;;2737:30;2713:17;;;2732:2;2709:26;2702:66;2667:10;;2638:140;;;2796:6;2793:1;2790:13;2787:2;;;2866:4;2861:2;2852:6;2841:9;2837:22;2833:31;2826:45;2787:2;-1:-1:-1;2942:2:1;2921:15;-1:-1:-1;;2917:29:1;2902:45;;;;2949:2;2898:54;;2476:482;-1:-1:-1;;;2476:482:1:o;2963:399::-;3165:2;3147:21;;;3204:2;3184:18;;;3177:30;3243:34;3238:2;3223:18;;3216:62;-1:-1:-1;;;3309:2:1;3294:18;;3287:33;3352:3;3337:19;;3137:225::o;3367:345::-;3569:2;3551:21;;;3608:2;3588:18;;;3581:30;-1:-1:-1;;;3642:2:1;3627:18;;3620:51;3703:2;3688:18;;3541:171::o;3717:398::-;3919:2;3901:21;;;3958:2;3938:18;;;3931:30;3997:34;3992:2;3977:18;;3970:62;-1:-1:-1;;;4063:2:1;4048:18;;4041:32;4105:3;4090:19;;3891:224::o;4120:398::-;4322:2;4304:21;;;4361:2;4341:18;;;4334:30;4400:34;4395:2;4380:18;;4373:62;-1:-1:-1;;;4466:2:1;4451:18;;4444:32;4508:3;4493:19;;4294:224::o;4523:353::-;4725:2;4707:21;;;4764:2;4744:18;;;4737:30;4803:31;4798:2;4783:18;;4776:59;4867:2;4852:18;;4697:179::o;4881:402::-;5083:2;5065:21;;;5122:2;5102:18;;;5095:30;5161:34;5156:2;5141:18;;5134:62;-1:-1:-1;;;5227:2:1;5212:18;;5205:36;5273:3;5258:19;;5055:228::o;5288:397::-;5490:2;5472:21;;;5529:2;5509:18;;;5502:30;5568:34;5563:2;5548:18;;5541:62;-1:-1:-1;;;5634:2:1;5619:18;;5612:31;5675:3;5660:19;;5462:223::o;5690:401::-;5892:2;5874:21;;;5931:2;5911:18;;;5904:30;5970:34;5965:2;5950:18;;5943:62;-1:-1:-1;;;6036:2:1;6021:18;;6014:35;6081:3;6066:19;;5864:227::o;6096:400::-;6298:2;6280:21;;;6337:2;6317:18;;;6310:30;6376:34;6371:2;6356:18;;6349:62;-1:-1:-1;;;6442:2:1;6427:18;;6420:34;6486:3;6471:19;;6270:226::o;6501:401::-;6703:2;6685:21;;;6742:2;6722:18;;;6715:30;6781:34;6776:2;6761:18;;6754:62;-1:-1:-1;;;6847:2:1;6832:18;;6825:35;6892:3;6877:19;;6675:227::o;6907:355::-;7109:2;7091:21;;;7148:2;7128:18;;;7121:30;7187:33;7182:2;7167:18;;7160:61;7253:2;7238:18;;7081:181::o;7267:177::-;7413:25;;;7401:2;7386:18;;7368:76::o;7449:184::-;7621:4;7609:17;;;;7591:36;;7579:2;7564:18;;7546:87::o;7638:128::-;;7709:1;7705:6;7702:1;7699:13;7696:2;;;7715:18;;:::i;:::-;-1:-1:-1;7751:9:1;;7686:80::o;7771:125::-;;7839:1;7836;7833:8;7830:2;;;7844:18;;:::i;:::-;-1:-1:-1;7881:9:1;;7820:76::o;7901:380::-;7986:1;7976:12;;8033:1;8023:12;;;8044:2;;8098:4;8090:6;8086:17;8076:27;;8044:2;8151;8143:6;8140:14;8120:18;8117:38;8114:2;;;8197:10;8192:3;8188:20;8185:1;8178:31;8232:4;8229:1;8222:15;8260:4;8257:1;8250:15;8114:2;;7956:325;;;:::o;8286:127::-;8347:10;8342:3;8338:20;8335:1;8328:31;8378:4;8375:1;8368:15;8402:4;8399:1;8392:15;8418:133;-1:-1:-1;;;;;8495:31:1;;8485:42;;8475:2;;8541:1;8538;8531:12

Swarm Source

ipfs://0057ebcde6d18aabf12d32d5fbf835a8333fc9bfa3e46b5d066f33b2c02c3339
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.