ETH Price: $3,354.86 (+2.82%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

DarkMatter (DMT) (@$0.0021)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve217314302025-01-29 16:38:2344 hrs ago1738168703IN
OogaVerse: DMT Token
0 ETH0.000225994.88373099
Approve217071692025-01-26 7:21:595 days ago1737876119IN
OogaVerse: DMT Token
0 ETH0.000126072.72444953
Approve216845072025-01-23 3:28:478 days ago1737602927IN
OogaVerse: DMT Token
0 ETH0.000164896.79843688
Approve215876472025-01-09 14:54:4721 days ago1736434487IN
OogaVerse: DMT Token
0 ETH0.0003784614.20720346
Approve215876462025-01-09 14:54:3521 days ago1736434475IN
OogaVerse: DMT Token
0 ETH0.0006507213.98245266
Approve215834392025-01-09 0:47:4722 days ago1736383667IN
OogaVerse: DMT Token
0 ETH0.000227554.88966166
Approve215807062025-01-08 15:38:4722 days ago1736350727IN
OogaVerse: DMT Token
0 ETH0.0008031317.35567557
Approve215257442024-12-31 23:30:3530 days ago1735687835IN
OogaVerse: DMT Token
0 ETH0.000279476.05033482
Approve215020932024-12-28 16:15:1133 days ago1735402511IN
OogaVerse: DMT Token
0 ETH0.000181386.22231217
Approve214969232024-12-27 22:56:4734 days ago1735340207IN
OogaVerse: DMT Token
0 ETH0.000198654.26857572
Approve214552632024-12-22 3:10:3540 days ago1734837035IN
OogaVerse: DMT Token
0 ETH0.000289716.26067408
Approve214307642024-12-18 16:59:5943 days ago1734541199IN
OogaVerse: DMT Token
0 ETH0.0010691923.10516153
Transfer214307422024-12-18 16:55:3543 days ago1734540935IN
OogaVerse: DMT Token
0 ETH0.0012208526.13977963
Transfer214306762024-12-18 16:42:2343 days ago1734540143IN
OogaVerse: DMT Token
0 ETH0.0014289327.74358352
Approve214304882024-12-18 16:04:1143 days ago1734537851IN
OogaVerse: DMT Token
0 ETH0.0009575132.83305274
Approve214087322024-12-15 15:12:2346 days ago1734275543IN
OogaVerse: DMT Token
0 ETH0.0005376611.63694698
Approve214087252024-12-15 15:10:4746 days ago1734275447IN
OogaVerse: DMT Token
0 ETH0.000544711.77723987
Approve213986702024-12-14 5:29:4748 days ago1734154187IN
OogaVerse: DMT Token
0 ETH0.000218579.01165891
Approve213417632024-12-06 6:48:3556 days ago1733467715IN
OogaVerse: DMT Token
0 ETH0.0007462616.12666201
Approve213217672024-12-03 11:46:1159 days ago1733226371IN
OogaVerse: DMT Token
0 ETH0.0010433322.5522366
Approve212209212024-11-19 9:36:3573 days ago1732008995IN
OogaVerse: DMT Token
0 ETH0.00024779.40443291
Approve212209112024-11-19 9:34:3573 days ago1732008875IN
OogaVerse: DMT Token
0 ETH0.0005112411.05367205
Transfer211503402024-11-09 13:16:5983 days ago1731158219IN
OogaVerse: DMT Token
0 ETH0.000540411.57350015
Approve211370742024-11-07 16:50:4784 days ago1730998247IN
OogaVerse: DMT Token
0 ETH0.0009274920.04317501
Approve211026352024-11-02 21:27:3589 days ago1730582855IN
OogaVerse: DMT Token
0 ETH0.000106724.4
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DMT_ERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-20
*/

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

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

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

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

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

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

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

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

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

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

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

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


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

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

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





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

contract DMT_ERC20 is ERC20, Ownable {

    address ERC721contract;

    constructor(string memory name_, string memory symbol_, address ERC721contract_) ERC20(name_, symbol_) Ownable() {
        ERC721contract = ERC721contract_;
    }

    function mint(address account, uint256 amount) external {
        require(msg.sender == ERC721contract, "E1");
        _mint(account, amount);
    }

    function burn(address account, uint256 amount) external {
        require(msg.sender == ERC721contract, "E2");
        _burn(account, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"ERC721contract_","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":"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":[{"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"account","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200142438038062001424833981016040819052620000349162000258565b8251839083906200004d906003906020850190620000ff565b50805162000063906004906020840190620000ff565b505050620000806200007a620000a960201b60201c565b620000ad565b600680546001600160a01b0319166001600160a01b039290921691909117905550620003349050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010d90620002e1565b90600052602060002090601f0160209004810192826200013157600085556200017c565b82601f106200014c57805160ff19168380011785556200017c565b828001600101855582156200017c579182015b828111156200017c5782518255916020019190600101906200015f565b506200018a9291506200018e565b5090565b5b808211156200018a57600081556001016200018f565b600082601f830112620001b6578081fd5b81516001600160401b0380821115620001d357620001d36200031e565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe6200031e565b816040528381526020925086838588010111156200021a578485fd5b8491505b838210156200023d57858201830151818301840152908201906200021e565b838211156200024e57848385830101525b9695505050505050565b6000806000606084860312156200026d578283fd5b83516001600160401b038082111562000284578485fd5b6200029287838801620001a5565b94506020860151915080821115620002a8578384fd5b50620002b786828701620001a5565b604086015190935090506001600160a01b0381168114620002d6578182fd5b809150509250925092565b600181811c90821680620002f657607f821691505b602082108114156200031857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6110e080620003446000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610223578063a9059cbb14610236578063dd62ed3e14610249578063f2fde38b1461028f57600080fd5b8063715018a6146101d85780638da5cb5b146101e057806395d89b41146102085780639dc29fac1461021057600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806340c10f191461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d6102a2565b60405161011a9190610f87565b60405180910390f35b610136610131366004610f5e565b610334565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610f23565b61034a565b6040516012815260200161011a565b610136610188366004610f5e565b61041b565b6101a061019b366004610f5e565b610464565b005b61014a6101b0366004610ed0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101a06104d9565b60055460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011a565b61010d61054c565b6101a061021e366004610f5e565b61055b565b610136610231366004610f5e565b6105cc565b610136610244366004610f5e565b61068a565b61014a610257366004610ef1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101a061029d366004610ed0565b610697565b6060600380546102b190611027565b80601f01602080910402602001604051908101604052809291908181526020018280546102dd90611027565b801561032a5780601f106102ff5761010080835404028352916020019161032a565b820191906000526020600020905b81548152906001019060200180831161030d57829003601f168201915b5050505050905090565b6000610341338484610793565b50600192915050565b6000610357848484610913565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104108533858403610793565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161034191859061045f908690610ff8565b610793565b60065473ffffffffffffffffffffffffffffffffffffffff1633146104cb5760405162461bcd60e51b815260206004820152600260248201527f453100000000000000000000000000000000000000000000000000000000000060448201526064016103fa565b6104d58282610b79565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146105405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fa565b61054a6000610c7f565b565b6060600480546102b190611027565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105c25760405162461bcd60e51b815260206004820152600260248201527f453200000000000000000000000000000000000000000000000000000000000060448201526064016103fa565b6104d58282610cf6565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156106735760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103fa565b6106803385858403610793565b5060019392505050565b6000610341338484610913565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fa565b73ffffffffffffffffffffffffffffffffffffffff81166107875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103fa565b61079081610c7f565b50565b73ffffffffffffffffffffffffffffffffffffffff831661081b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff82166108a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661099c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff8216610a255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610ac15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b05908490610ff8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b6b91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bdc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fa565b8060026000828254610bee9190610ff8565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610c28908490610ff8565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610d7f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610e57908490611010565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610906565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ecb57600080fd5b919050565b600060208284031215610ee1578081fd5b610eea82610ea7565b9392505050565b60008060408385031215610f03578081fd5b610f0c83610ea7565b9150610f1a60208401610ea7565b90509250929050565b600080600060608486031215610f37578081fd5b610f4084610ea7565b9250610f4e60208501610ea7565b9150604084013590509250925092565b60008060408385031215610f70578182fd5b610f7983610ea7565b946020939093013593505050565b6000602080835283518082850152825b81811015610fb357858101830151858201604001528201610f97565b81811115610fc45783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561100b5761100b61107b565b500190565b6000828210156110225761102261107b565b500390565b600181811c9082168061103b57607f821691505b60208210811415611075577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220a1330d80ce66c5b096b76f1864dcf44e2d14255a5556ff956cf05e270fa9d22c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009ebab3b21b5ef5709bd476b022fc432fc84c0e86000000000000000000000000000000000000000000000000000000000000000a4461726b4d6174746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610223578063a9059cbb14610236578063dd62ed3e14610249578063f2fde38b1461028f57600080fd5b8063715018a6146101d85780638da5cb5b146101e057806395d89b41146102085780639dc29fac1461021057600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806340c10f191461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d6102a2565b60405161011a9190610f87565b60405180910390f35b610136610131366004610f5e565b610334565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610f23565b61034a565b6040516012815260200161011a565b610136610188366004610f5e565b61041b565b6101a061019b366004610f5e565b610464565b005b61014a6101b0366004610ed0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101a06104d9565b60055460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011a565b61010d61054c565b6101a061021e366004610f5e565b61055b565b610136610231366004610f5e565b6105cc565b610136610244366004610f5e565b61068a565b61014a610257366004610ef1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101a061029d366004610ed0565b610697565b6060600380546102b190611027565b80601f01602080910402602001604051908101604052809291908181526020018280546102dd90611027565b801561032a5780601f106102ff5761010080835404028352916020019161032a565b820191906000526020600020905b81548152906001019060200180831161030d57829003601f168201915b5050505050905090565b6000610341338484610793565b50600192915050565b6000610357848484610913565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104108533858403610793565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161034191859061045f908690610ff8565b610793565b60065473ffffffffffffffffffffffffffffffffffffffff1633146104cb5760405162461bcd60e51b815260206004820152600260248201527f453100000000000000000000000000000000000000000000000000000000000060448201526064016103fa565b6104d58282610b79565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146105405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fa565b61054a6000610c7f565b565b6060600480546102b190611027565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105c25760405162461bcd60e51b815260206004820152600260248201527f453200000000000000000000000000000000000000000000000000000000000060448201526064016103fa565b6104d58282610cf6565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156106735760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103fa565b6106803385858403610793565b5060019392505050565b6000610341338484610913565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103fa565b73ffffffffffffffffffffffffffffffffffffffff81166107875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103fa565b61079081610c7f565b50565b73ffffffffffffffffffffffffffffffffffffffff831661081b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff82166108a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661099c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff8216610a255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610ac15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b05908490610ff8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b6b91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bdc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fa565b8060026000828254610bee9190610ff8565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610c28908490610ff8565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610d7f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103fa565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610e57908490611010565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610906565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ecb57600080fd5b919050565b600060208284031215610ee1578081fd5b610eea82610ea7565b9392505050565b60008060408385031215610f03578081fd5b610f0c83610ea7565b9150610f1a60208401610ea7565b90509250929050565b600080600060608486031215610f37578081fd5b610f4084610ea7565b9250610f4e60208501610ea7565b9150604084013590509250925092565b60008060408385031215610f70578182fd5b610f7983610ea7565b946020939093013593505050565b6000602080835283518082850152825b81811015610fb357858101830151858201604001528201610f97565b81811115610fc45783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561100b5761100b61107b565b500190565b6000828210156110225761102261107b565b500390565b600181811c9082168061103b57607f821691505b60208210811415611075577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220a1330d80ce66c5b096b76f1864dcf44e2d14255a5556ff956cf05e270fa9d22c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009ebab3b21b5ef5709bd476b022fc432fc84c0e86000000000000000000000000000000000000000000000000000000000000000a4461726b4d6174746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DarkMatter
Arg [1] : symbol_ (string): DMT
Arg [2] : ERC721contract_ (address): 0x9Ebab3b21b5EF5709BD476B022Fc432fc84C0E86

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000009ebab3b21b5ef5709bd476b022fc432fc84c0e86
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4461726b4d617474657200000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 444d540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18449:564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8482:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10649:169;;;;;;:::i;:::-;;:::i;:::-;;;1699:14:1;;1692:22;1674:41;;1662:2;1647:18;10649:169:0;1629:92:1;9602:108:0;9690:12;;9602:108;;;7972:25:1;;;7960:2;7945:18;9602:108:0;7927:76:1;11300:498:0;;;;;;:::i;:::-;;:::i;9444:93::-;;;9527:2;8150:36:1;;8138:2;8123:18;9444:93:0;8105:87:1;12207:215:0;;;;;;:::i;:::-;;:::i;18698:151::-;;;;;;:::i;:::-;;:::i;:::-;;9773:127;;;;;;:::i;:::-;9874:18;;9847:7;9874:18;;;;;;;;;;;;9773:127;2384:103;;;:::i;1733:87::-;1806:6;;1733:87;;1806:6;;;;1449:74:1;;1437:2;1422:18;1733:87:0;1404:125:1;8701:104:0;;;:::i;18857:151::-;;;;;;:::i;:::-;;:::i;12925:413::-;;;;;;:::i;:::-;;:::i;10113:175::-;;;;;;:::i;:::-;;:::i;10351:151::-;;;;;;:::i;:::-;10467:18;;;;10440:7;10467:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10351:151;2642:201;;;;;;:::i;:::-;;:::i;8482:100::-;8536:13;8569:5;8562:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8482:100;:::o;10649:169::-;10732:4;10749:39;680:10;10772:7;10781:6;10749:8;:39::i;:::-;-1:-1:-1;10806:4:0;10649:169;;;;:::o;11300:498::-;11440:4;11457:36;11467:6;11475:9;11486:6;11457:9;:36::i;:::-;11533:19;;;11506:24;11533:19;;;:11;:19;;;;;;;;680:10;11533:33;;;;;;;;11585:26;;;;11577:79;;;;-1:-1:-1;;;11577:79:0;;5279:2:1;11577:79:0;;;5261:21:1;5318:2;5298:18;;;5291:30;5357:34;5337:18;;;5330:62;5428:10;5408:18;;;5401:38;5456:19;;11577:79:0;;;;;;;;;11692:57;11701:6;680:10;11742:6;11723:16;:25;11692:8;:57::i;:::-;-1:-1:-1;11786:4:0;;11300:498;-1:-1:-1;;;;11300:498:0:o;12207:215::-;680:10;12295:4;12344:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;12295:4;;12312:80;;12335:7;;12344:47;;12381:10;;12344:47;:::i;:::-;12312:8;:80::i;18698:151::-;18787:14;;;;18773:10;:28;18765:43;;;;-1:-1:-1;;;18765:43:0;;4949:2:1;18765:43:0;;;4931:21:1;4988:1;4968:18;;;4961:29;5026:4;5006:18;;;4999:32;5048:18;;18765:43:0;4921:151:1;18765:43:0;18819:22;18825:7;18834:6;18819:5;:22::i;:::-;18698:151;;:::o;2384:103::-;1806:6;;1953:23;1806:6;680:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;5688:2:1;1945:68:0;;;5670:21:1;;;5707:18;;;5700:30;5766:34;5746:18;;;5739:62;5818:18;;1945:68:0;5660:182:1;1945:68:0;2449:30:::1;2476:1;2449:18;:30::i;:::-;2384:103::o:0;8701:104::-;8757:13;8790:7;8783:14;;;;;:::i;18857:151::-;18946:14;;;;18932:10;:28;18924:43;;;;-1:-1:-1;;;18924:43:0;;2999:2:1;18924:43:0;;;2981:21:1;3038:1;3018:18;;;3011:29;3076:4;3056:18;;;3049:32;3098:18;;18924:43:0;2971:151:1;18924:43:0;18978:22;18984:7;18993:6;18978:5;:22::i;12925:413::-;680:10;13018:4;13062:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13115:35;;;;13107:85;;;;-1:-1:-1;;;13107:85:0;;7262:2:1;13107:85:0;;;7244:21:1;7301:2;7281:18;;;7274:30;7340:34;7320:18;;;7313:62;7411:7;7391:18;;;7384:35;7436:19;;13107:85:0;7234:227:1;13107:85:0;13228:67;680:10;13251:7;13279:15;13260:16;:34;13228:8;:67::i;:::-;-1:-1:-1;13326:4:0;;12925:413;-1:-1:-1;;;12925:413:0:o;10113:175::-;10199:4;10216:42;680:10;10240:9;10251:6;10216:9;:42::i;2642:201::-;1806:6;;1953:23;1806:6;680:10;1953:23;1945:68;;;;-1:-1:-1;;;1945:68:0;;5688:2:1;1945:68:0;;;5670:21:1;;;5707:18;;;5700:30;5766:34;5746:18;;;5739:62;5818:18;;1945:68:0;5660:182:1;1945:68:0;2731:22:::1;::::0;::::1;2723:73;;;::::0;-1:-1:-1;;;2723:73:0;;3732:2:1;2723:73:0::1;::::0;::::1;3714:21:1::0;3771:2;3751:18;;;3744:30;3810:34;3790:18;;;3783:62;3881:8;3861:18;;;3854:36;3907:19;;2723:73:0::1;3704:228:1::0;2723:73:0::1;2807:28;2826:8;2807:18;:28::i;:::-;2642:201:::0;:::o;16609:380::-;16745:19;;;16737:68;;;;-1:-1:-1;;;16737:68:0;;6857:2:1;16737:68:0;;;6839:21:1;6896:2;6876:18;;;6869:30;6935:34;6915:18;;;6908:62;7006:6;6986:18;;;6979:34;7030:19;;16737:68:0;6829:226:1;16737:68:0;16824:21;;;16816:68;;;;-1:-1:-1;;;16816:68:0;;4139:2:1;16816:68:0;;;4121:21:1;4178:2;4158:18;;;4151:30;4217:34;4197:18;;;4190:62;4288:4;4268:18;;;4261:32;4310:19;;16816:68:0;4111:224:1;16816:68:0;16897:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16949:32;;7972:25:1;;;16949:32:0;;7945:18:1;16949:32:0;;;;;;;;16609:380;;;:::o;13828:733::-;13968:20;;;13960:70;;;;-1:-1:-1;;;13960:70:0;;6451:2:1;13960:70:0;;;6433:21:1;6490:2;6470:18;;;6463:30;6529:34;6509:18;;;6502:62;6600:7;6580:18;;;6573:35;6625:19;;13960:70:0;6423:227:1;13960:70:0;14049:23;;;14041:71;;;;-1:-1:-1;;;14041:71:0;;2595:2:1;14041:71:0;;;2577:21:1;2634:2;2614:18;;;2607:30;2673:34;2653:18;;;2646:62;2744:5;2724:18;;;2717:33;2767:19;;14041:71:0;2567:225:1;14041:71:0;14209:17;;;14185:21;14209:17;;;;;;;;;;;14245:23;;;;14237:74;;;;-1:-1:-1;;;14237:74:0;;4542:2:1;14237:74:0;;;4524:21:1;4581:2;4561:18;;;4554:30;4620:34;4600:18;;;4593:62;4691:8;4671:18;;;4664:36;4717:19;;14237:74:0;4514:228:1;14237:74:0;14347:17;;;;:9;:17;;;;;;;;;;;14367:22;;;14347:42;;14411:20;;;;;;;;:30;;14383:6;;14347:9;14411:30;;14383:6;;14411:30;:::i;:::-;;;;;;;;14476:9;14459:35;;14468:6;14459:35;;;14487:6;14459:35;;;;7972:25:1;;7960:2;7945:18;;7927:76;14459:35:0;;;;;;;;13828:733;;;;:::o;14848:399::-;14932:21;;;14924:65;;;;-1:-1:-1;;;14924:65:0;;7668:2:1;14924:65:0;;;7650:21:1;7707:2;7687:18;;;7680:30;7746:33;7726:18;;;7719:61;7797:18;;14924:65:0;7640:181:1;14924:65:0;15080:6;15064:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;15097:18:0;;;:9;:18;;;;;;;;;;:28;;15119:6;;15097:9;:28;;15119:6;;15097:28;:::i;:::-;;;;-1:-1:-1;;15141:37:0;;7972:25:1;;;15141:37:0;;;;15158:1;;15141:37;;7960:2:1;7945:18;15141:37:0;;;;;;;18698:151;;:::o;3003:191::-;3096:6;;;;3113:17;;;;;;;;;;;3146:40;;3096:6;;;3113:17;3096:6;;3146:40;;3077:16;;3146:40;3003:191;;:::o;15580:591::-;15664:21;;;15656:67;;;;-1:-1:-1;;;15656:67:0;;6049:2:1;15656:67:0;;;6031:21:1;6088:2;6068:18;;;6061:30;6127:34;6107:18;;;6100:62;6198:3;6178:18;;;6171:31;6219:19;;15656:67:0;6021:223:1;15656:67:0;15823:18;;;15798:22;15823:18;;;;;;;;;;;15860:24;;;;15852:71;;;;-1:-1:-1;;;15852:71:0;;3329:2:1;15852:71:0;;;3311:21:1;3368:2;3348:18;;;3341:30;3407:34;3387:18;;;3380:62;3478:4;3458:18;;;3451:32;3500:19;;15852:71:0;3301:224:1;15852:71:0;15959:18;;;:9;:18;;;;;;;;;;15980:23;;;15959:44;;16025:12;:22;;15997:6;;15959:9;16025:22;;15997:6;;16025:22;:::i;:::-;;;;-1:-1:-1;;16065:37:0;;7972:25:1;;;16091:1:0;;16065:37;;;;;;7960:2:1;7945:18;16065:37:0;7927:76:1;14:196;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;:::-;366:39;285:126;-1:-1:-1;;;285:126:1:o;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1726:662::-;1838:4;1867:2;1896;1885:9;1878:21;1928:6;1922:13;1971:6;1966:2;1955:9;1951:18;1944:34;1996:4;2009:140;2023:6;2020:1;2017:13;2009:140;;;2118:14;;;2114:23;;2108:30;2084:17;;;2103:2;2080:26;2073:66;2038:10;;2009:140;;;2167:6;2164:1;2161:13;2158:2;;;2237:4;2232:2;2223:6;2212:9;2208:22;2204:31;2197:45;2158:2;-1:-1:-1;2304:2:1;2292:15;2309:66;2288:88;2273:104;;;;2379:2;2269:113;;1847:541;-1:-1:-1;;;1847:541:1:o;8197:128::-;8237:3;8268:1;8264:6;8261:1;8258:13;8255:2;;;8274:18;;:::i;:::-;-1:-1:-1;8310:9:1;;8245:80::o;8330:125::-;8370:4;8398:1;8395;8392:8;8389:2;;;8403:18;;:::i;:::-;-1:-1:-1;8440:9:1;;8379:76::o;8460:437::-;8539:1;8535:12;;;;8582;;;8603:2;;8657:4;8649:6;8645:17;8635:27;;8603:2;8710;8702:6;8699:14;8679:18;8676:38;8673:2;;;8747:77;8744:1;8737:88;8848:4;8845:1;8838:15;8876:4;8873:1;8866:15;8673:2;;8515:382;;;:::o;8902:184::-;8954:77;8951:1;8944:88;9051:4;9048:1;9041:15;9075:4;9072:1;9065:15

Swarm Source

ipfs://a1330d80ce66c5b096b76f1864dcf44e2d14255a5556ff956cf05e270fa9d22c

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

OogaVerse is an NFT project with $DMT being the token of the OogaVerse.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.