ETH Price: $2,614.66 (+1.63%)

Token

Rarible (RARE)
 

Overview

Max Total Supply

64 RARE

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RARE
0x4f31bfdee182626076e98a2aa6cbef2d490bda4c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MintableToken

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-24
*/

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-165).
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others (`ERC165Checker`).
 *
 * For an implementation, see `ERC165`.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in `owner`'s account.
     */
    function balanceOf(address owner) public view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * 
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either `approve` or `setApproveForAll`.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either `approve` or `setApproveForAll`.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

/**
 * @dev Implementation of the `IERC165` interface.
 *
 * Contracts may inherit from this and call `_registerInterface` to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See `IERC165.supportsInterface`.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See `IERC165.supportsInterface`.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use `safeTransferFrom` whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This function is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the _ownedTokensIndex mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

/**
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title MintableToken
 * @dev anyone can mint token.
 */
contract MintableToken is IERC721, IERC721Metadata, ERC721Full, Ownable {

    constructor (string memory name, string memory symbol) public ERC721Full(name, symbol) {

    }

    function mint(uint256 tokenId, uint8 v, bytes32 r, bytes32 s, string memory tokenURI) public {
        require(owner() == ecrecover(keccak256(abi.encodePacked(tokenId)), v, r, s), "owner should sign tokenId");
        _mint(msg.sender, tokenId);
        _setTokenURI(tokenId, tokenURI);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001e9538038062001e95833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052508391508290508181620001d97f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b6200020d7f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b620002417f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b815162000256906009906020850190620003c8565b5080516200026c90600a906020840190620003c8565b50620002a17f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b5050600c80546001600160a01b0319163317908190556040516001600160a01b03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506200046d565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200038b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040b57805160ff19168380011785556200043b565b828001600101855582156200043b579182015b828111156200043b5782518255916020019190600101906200041e565b50620004499291506200044d565b5090565b6200046a91905b8082111562000449576000815560010162000454565b90565b611a18806200047d6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610446578063a22cb4651461044e578063b88d4fde1461047c578063c87b56dd14610542578063e985e9c51461055f578063f2fde38b1461058d57610137565b806370a0823114610347578063715018a61461036d5780637fbcc639146103755780638da5cb5b146104365780638f32d59b1461043e57610137565b806323b872dd116100ff57806323b872dd146102755780632f745c59146102ab57806342842e0e146102d75780634f6ccce71461030d5780636352211e1461032a57610137565b806301ffc9a71461013c57806306fdde0314610177578063081812fc146101f4578063095ea7b31461022d57806318160ddd1461025b575b600080fd5b6101636004803603602081101561015257600080fd5b50356001600160e01b0319166105b3565b604080519115158252519081900360200190f35b61017f6105d2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b95781810151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102116004803603602081101561020a57600080fd5b5035610669565b604080516001600160a01b039092168252519081900360200190f35b6102596004803603604081101561024357600080fd5b506001600160a01b0381351690602001356106cb565b005b6102636107dc565b60408051918252519081900360200190f35b6102596004803603606081101561028b57600080fd5b506001600160a01b038135811691602081013590911690604001356107e2565b610263600480360360408110156102c157600080fd5b506001600160a01b038135169060200135610837565b610259600480360360608110156102ed57600080fd5b506001600160a01b038135811691602081013590911690604001356108b6565b6102636004803603602081101561032357600080fd5b50356108d1565b6102116004803603602081101561034057600080fd5b5035610937565b6102636004803603602081101561035d57600080fd5b50356001600160a01b0316610991565b6102596109f9565b610259600480360360a081101561038b57600080fd5b81359160ff6020820135169160408201359160608101359181019060a0810160808201356401000000008111156103c157600080fd5b8201836020820111156103d357600080fd5b803590602001918460018302840111640100000000831117156103f557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9c945050505050565b610211610ba3565b610163610bb2565b61017f610bc3565b6102596004803603604081101561046457600080fd5b506001600160a01b0381351690602001351515610c24565b6102596004803603608081101561049257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156104cd57600080fd5b8201836020820111156104df57600080fd5b8035906020019184600183028401116401000000008311171561050157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cf0945050505050565b61017f6004803603602081101561055857600080fd5b5035610d48565b6101636004803603604081101561057557600080fd5b506001600160a01b0381358116916020013516610e2d565b610259600480360360208110156105a357600080fd5b50356001600160a01b0316610e5b565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b505050505090505b90565b600061067482610ec0565b6106af5760405162461bcd60e51b815260040180806020018281038252602c8152602001806118b6602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006106d682610937565b9050806001600160a01b0316836001600160a01b031614156107295760405162461bcd60e51b81526004018080602001828103825260218152602001806119666021913960400191505060405180910390fd5b336001600160a01b038216148061074557506107458133610e2d565b6107805760405162461bcd60e51b815260040180806020018281038252603881526020018061182b6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6107ec3382610edd565b6108275760405162461bcd60e51b81526004018080602001828103825260318152602001806119876031913960400191505060405180910390fd5b610832838383610f81565b505050565b600061084283610991565b821061087f5760405162461bcd60e51b815260040180806020018281038252602b815260200180611758602b913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090208054839081106108a357fe5b9060005260206000200154905092915050565b61083283838360405180602001604052806000815250610cf0565b60006108db6107dc565b82106109185760405162461bcd60e51b815260040180806020018281038252602c8152602001806119b8602c913960400191505060405180910390fd5b6007828154811061092557fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168061098b5760405162461bcd60e51b815260040180806020018281038252602981526020018061188d6029913960400191505060405180910390fd5b92915050565b60006001600160a01b0382166109d85760405162461bcd60e51b815260040180806020018281038252602a815260200180611863602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061098b90610fa0565b610a01610bb2565b610a52576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6040805160208082018890528251808303820181528284018085528151918301919091206000909152606083018085525260ff8716608083015260a0820186905260c08201859052915160019260e0808401939192601f1981019281900390910190855afa158015610b12573d6000803e3d6000fd5b505050602060405103516001600160a01b0316610b2d610ba3565b6001600160a01b031614610b88576040805162461bcd60e51b815260206004820152601960248201527f6f776e65722073686f756c64207369676e20746f6b656e496400000000000000604482015290519081900360640190fd5b610b923386610fa4565b610b9c8582610fc5565b5050505050565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065e5780601f106106335761010080835404028352916020019161065e565b6001600160a01b038216331415610c82576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610cfb8484846107e2565b610d0784848484611028565b610d425760405162461bcd60e51b81526004018080602001828103825260328152602001806117836032913960400191505060405180910390fd5b50505050565b6060610d5382610ec0565b610d8e5760405162461bcd60e51b815260040180806020018281038252602f815260200180611937602f913960400191505060405180910390fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610e63610bb2565b610eb4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ebd8161115b565b50565b6000908152600160205260409020546001600160a01b0316151590565b6000610ee882610ec0565b610f235760405162461bcd60e51b815260040180806020018281038252602c8152602001806117ff602c913960400191505060405180910390fd5b6000610f2e83610937565b9050806001600160a01b0316846001600160a01b03161480610f695750836001600160a01b0316610f5e84610669565b6001600160a01b0316145b80610f795750610f798185610e2d565b949350505050565b610f8c8383836111fc565b610f968382611340565b610832828261142e565b5490565b610fae828261146c565b610fb8828261142e565b610fc18161159d565b5050565b610fce82610ec0565b6110095760405162461bcd60e51b815260040180806020018281038252602c8152602001806118e2602c913960400191505060405180910390fd5b6000828152600b6020908152604090912082516108329284019061169f565b600061103c846001600160a01b03166115e1565b61104857506001610f79565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b838110156110c25781810151838201526020016110aa565b50505050905090810190601f1680156110ef5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561111157600080fd5b505af1158015611125573d6000803e3d6000fd5b505050506040513d602081101561113b57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b6001600160a01b0381166111a05760405162461bcd60e51b81526004018080602001828103825260268152602001806117b56026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661120f82610937565b6001600160a01b0316146112545760405162461bcd60e51b815260040180806020018281038252602981526020018061190e6029913960400191505060405180910390fd5b6001600160a01b0382166112995760405162461bcd60e51b81526004018080602001828103825260248152602001806117db6024913960400191505060405180910390fd5b6112a2816115e7565b6001600160a01b03831660009081526003602052604090206112c390611622565b6001600160a01b03821660009081526003602052604090206112e490611639565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461136a90600163ffffffff61164216565b600083815260066020526040902054909150808214611405576001600160a01b03841660009081526005602052604081208054849081106113a757fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106113e557fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490610b9c90600019830161171d565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166114c7576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6114d081610ec0565b15611522576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061156190611639565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6000818152600260205260409020546001600160a01b031615610ebd57600090815260026020526040902080546001600160a01b0319169055565b805461163590600163ffffffff61164216565b9055565b80546001019055565b600082821115611699576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106116e057805160ff191683800117855561170d565b8280016001018555821561170d579182015b8281111561170d5782518255916020019190600101906116f2565b5061171992915061173d565b5090565b815481835581811115610832576000838152602090206108329181019083015b61066691905b80821115611719576000815560010161174356fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a723158204fe9a6672054468bfbfa13444598d0586a1aeef7eeb649e0ffe61243bf2ac49a64736f6c634300050c003200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000752617269626c650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045241524500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610446578063a22cb4651461044e578063b88d4fde1461047c578063c87b56dd14610542578063e985e9c51461055f578063f2fde38b1461058d57610137565b806370a0823114610347578063715018a61461036d5780637fbcc639146103755780638da5cb5b146104365780638f32d59b1461043e57610137565b806323b872dd116100ff57806323b872dd146102755780632f745c59146102ab57806342842e0e146102d75780634f6ccce71461030d5780636352211e1461032a57610137565b806301ffc9a71461013c57806306fdde0314610177578063081812fc146101f4578063095ea7b31461022d57806318160ddd1461025b575b600080fd5b6101636004803603602081101561015257600080fd5b50356001600160e01b0319166105b3565b604080519115158252519081900360200190f35b61017f6105d2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b95781810151838201526020016101a1565b50505050905090810190601f1680156101e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102116004803603602081101561020a57600080fd5b5035610669565b604080516001600160a01b039092168252519081900360200190f35b6102596004803603604081101561024357600080fd5b506001600160a01b0381351690602001356106cb565b005b6102636107dc565b60408051918252519081900360200190f35b6102596004803603606081101561028b57600080fd5b506001600160a01b038135811691602081013590911690604001356107e2565b610263600480360360408110156102c157600080fd5b506001600160a01b038135169060200135610837565b610259600480360360608110156102ed57600080fd5b506001600160a01b038135811691602081013590911690604001356108b6565b6102636004803603602081101561032357600080fd5b50356108d1565b6102116004803603602081101561034057600080fd5b5035610937565b6102636004803603602081101561035d57600080fd5b50356001600160a01b0316610991565b6102596109f9565b610259600480360360a081101561038b57600080fd5b81359160ff6020820135169160408201359160608101359181019060a0810160808201356401000000008111156103c157600080fd5b8201836020820111156103d357600080fd5b803590602001918460018302840111640100000000831117156103f557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9c945050505050565b610211610ba3565b610163610bb2565b61017f610bc3565b6102596004803603604081101561046457600080fd5b506001600160a01b0381351690602001351515610c24565b6102596004803603608081101561049257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156104cd57600080fd5b8201836020820111156104df57600080fd5b8035906020019184600183028401116401000000008311171561050157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cf0945050505050565b61017f6004803603602081101561055857600080fd5b5035610d48565b6101636004803603604081101561057557600080fd5b506001600160a01b0381358116916020013516610e2d565b610259600480360360208110156105a357600080fd5b50356001600160a01b0316610e5b565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b505050505090505b90565b600061067482610ec0565b6106af5760405162461bcd60e51b815260040180806020018281038252602c8152602001806118b6602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006106d682610937565b9050806001600160a01b0316836001600160a01b031614156107295760405162461bcd60e51b81526004018080602001828103825260218152602001806119666021913960400191505060405180910390fd5b336001600160a01b038216148061074557506107458133610e2d565b6107805760405162461bcd60e51b815260040180806020018281038252603881526020018061182b6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6107ec3382610edd565b6108275760405162461bcd60e51b81526004018080602001828103825260318152602001806119876031913960400191505060405180910390fd5b610832838383610f81565b505050565b600061084283610991565b821061087f5760405162461bcd60e51b815260040180806020018281038252602b815260200180611758602b913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090208054839081106108a357fe5b9060005260206000200154905092915050565b61083283838360405180602001604052806000815250610cf0565b60006108db6107dc565b82106109185760405162461bcd60e51b815260040180806020018281038252602c8152602001806119b8602c913960400191505060405180910390fd5b6007828154811061092557fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168061098b5760405162461bcd60e51b815260040180806020018281038252602981526020018061188d6029913960400191505060405180910390fd5b92915050565b60006001600160a01b0382166109d85760405162461bcd60e51b815260040180806020018281038252602a815260200180611863602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061098b90610fa0565b610a01610bb2565b610a52576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6040805160208082018890528251808303820181528284018085528151918301919091206000909152606083018085525260ff8716608083015260a0820186905260c08201859052915160019260e0808401939192601f1981019281900390910190855afa158015610b12573d6000803e3d6000fd5b505050602060405103516001600160a01b0316610b2d610ba3565b6001600160a01b031614610b88576040805162461bcd60e51b815260206004820152601960248201527f6f776e65722073686f756c64207369676e20746f6b656e496400000000000000604482015290519081900360640190fd5b610b923386610fa4565b610b9c8582610fc5565b5050505050565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065e5780601f106106335761010080835404028352916020019161065e565b6001600160a01b038216331415610c82576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610cfb8484846107e2565b610d0784848484611028565b610d425760405162461bcd60e51b81526004018080602001828103825260328152602001806117836032913960400191505060405180910390fd5b50505050565b6060610d5382610ec0565b610d8e5760405162461bcd60e51b815260040180806020018281038252602f815260200180611937602f913960400191505060405180910390fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610e63610bb2565b610eb4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ebd8161115b565b50565b6000908152600160205260409020546001600160a01b0316151590565b6000610ee882610ec0565b610f235760405162461bcd60e51b815260040180806020018281038252602c8152602001806117ff602c913960400191505060405180910390fd5b6000610f2e83610937565b9050806001600160a01b0316846001600160a01b03161480610f695750836001600160a01b0316610f5e84610669565b6001600160a01b0316145b80610f795750610f798185610e2d565b949350505050565b610f8c8383836111fc565b610f968382611340565b610832828261142e565b5490565b610fae828261146c565b610fb8828261142e565b610fc18161159d565b5050565b610fce82610ec0565b6110095760405162461bcd60e51b815260040180806020018281038252602c8152602001806118e2602c913960400191505060405180910390fd5b6000828152600b6020908152604090912082516108329284019061169f565b600061103c846001600160a01b03166115e1565b61104857506001610f79565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b838110156110c25781810151838201526020016110aa565b50505050905090810190601f1680156110ef5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561111157600080fd5b505af1158015611125573d6000803e3d6000fd5b505050506040513d602081101561113b57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b6001600160a01b0381166111a05760405162461bcd60e51b81526004018080602001828103825260268152602001806117b56026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661120f82610937565b6001600160a01b0316146112545760405162461bcd60e51b815260040180806020018281038252602981526020018061190e6029913960400191505060405180910390fd5b6001600160a01b0382166112995760405162461bcd60e51b81526004018080602001828103825260248152602001806117db6024913960400191505060405180910390fd5b6112a2816115e7565b6001600160a01b03831660009081526003602052604090206112c390611622565b6001600160a01b03821660009081526003602052604090206112e490611639565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461136a90600163ffffffff61164216565b600083815260066020526040902054909150808214611405576001600160a01b03841660009081526005602052604081208054849081106113a757fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106113e557fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490610b9c90600019830161171d565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166114c7576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6114d081610ec0565b15611522576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061156190611639565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6000818152600260205260409020546001600160a01b031615610ebd57600090815260026020526040902080546001600160a01b0319169055565b805461163590600163ffffffff61164216565b9055565b80546001019055565b600082821115611699576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106116e057805160ff191683800117855561170d565b8280016001018555821561170d579182015b8281111561170d5782518255916020019190600101906116f2565b5061171992915061173d565b5090565b815481835581811115610832576000838152602090206108329181019083015b61066691905b80821115611719576000815560010161174356fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a723158204fe9a6672054468bfbfa13444598d0586a1aeef7eeb649e0ffe61243bf2ac49a64736f6c634300050c0032

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000752617269626c650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045241524500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Rarible
Arg [1] : symbol (string): RARE

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 52617269626c6500000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5241524500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39281:485:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39281:485:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11130:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11130:135:0;-1:-1:-1;;;;;;11130:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;34634:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34634:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15977:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15977:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;15977:204:0;;;;;;;;;;;;;;15263:421;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15263:421:0;;;;;;;;:::i;:::-;;26870:96;;;:::i;:::-;;;;;;;;;;;;;;;;17654:290;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17654:290:0;;;;;;;;;;;;;;;;;:::i;26479:232::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26479:232:0;;;;;;;;:::i;18590:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18590:134:0;;;;;;;;;;;;;;;;;:::i;27312:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27312:199:0;;:::i;14604:228::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14604:228:0;;:::i;14167:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14167:211:0;-1:-1:-1;;;;;14167:211:0;;:::i;38468:140::-;;;:::i;39467:296::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;39467:296:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;39467:296:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39467:296:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39467:296:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39467:296:0;;-1:-1:-1;39467:296:0;;-1:-1:-1;;;;;39467:296:0:i;37657:79::-;;;:::i;38023:92::-;;;:::i;34834:89::-;;;:::i;16482:248::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16482:248:0;;;;;;;;;;:::i;19443:268::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;19443:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19443:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19443:268:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19443:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19443:268:0;;-1:-1:-1;19443:268:0;;-1:-1:-1;;;;;19443:268:0:i;35130:205::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35130:205:0;;:::i;17060:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17060:147:0;;;;;;;;;;:::i;38763:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38763:109:0;-1:-1:-1;;;;;38763:109:0;;:::i;11130:135::-;-1:-1:-1;;;;;;11224:33:0;11200:4;11224:33;;;;;;;;;;;;;;11130:135::o;34634:85::-;34706:5;34699:12;;;;;;;;-1:-1:-1;;34699:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34673:13;;34699:12;;34706:5;;34699:12;;34706:5;34699:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34634:85;;:::o;15977:204::-;16036:7;16064:16;16072:7;16064;:16::i;:::-;16056:73;;;;-1:-1:-1;;;16056:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16149:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16149:24:0;;15977:204::o;15263:421::-;15327:13;15343:16;15351:7;15343;:16::i;:::-;15327:32;;15384:5;-1:-1:-1;;;;;15378:11:0;:2;-1:-1:-1;;;;;15378:11:0;;;15370:57;;;;-1:-1:-1;;;15370:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15448:10;-1:-1:-1;;;;;15448:19:0;;;;:58;;;15471:35;15488:5;15495:10;15471:16;:35::i;:::-;15440:150;;;;-1:-1:-1;;;15440:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15603:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;15603:29:0;-1:-1:-1;;;;;15603:29:0;;;;;;;;;15648:28;;15603:24;;15648:28;;;;;;;15263:421;;;:::o;26870:96::-;26941:10;:17;26870:96;:::o;17654:290::-;17798:39;17817:10;17829:7;17798:18;:39::i;:::-;17790:101;;;;-1:-1:-1;;;17790:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17904:32;17918:4;17924:2;17928:7;17904:13;:32::i;:::-;17654:290;;;:::o;26479:232::-;26559:7;26595:16;26605:5;26595:9;:16::i;:::-;26587:5;:24;26579:80;;;;-1:-1:-1;;;26579:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26677:19:0;;;;;;:12;:19;;;;;:26;;26697:5;;26677:26;;;;;;;;;;;;;;26670:33;;26479:232;;;;:::o;18590:134::-;18677:39;18694:4;18700:2;18704:7;18677:39;;;;;;;;;;;;:16;:39::i;27312:199::-;27370:7;27406:13;:11;:13::i;:::-;27398:5;:21;27390:78;;;;-1:-1:-1;;;27390:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27486:10;27497:5;27486:17;;;;;;;;;;;;;;;;27479:24;;27312:199;;;:::o;14604:228::-;14659:7;14695:20;;;:11;:20;;;;;;-1:-1:-1;;;;;14695:20:0;14734:19;14726:73;;;;-1:-1:-1;;;14726:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14819:5;14604:228;-1:-1:-1;;14604:228:0:o;14167:211::-;14222:7;-1:-1:-1;;;;;14250:19:0;;14242:74;;;;-1:-1:-1;;;14242:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14336:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;38468:140::-;37869:9;:7;:9::i;:::-;37861:54;;;;;-1:-1:-1;;;37861:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38551:6;;38530:40;;38567:1;;-1:-1:-1;;;;;38551:6:0;;38530:40;;38567:1;;38530:40;38581:6;:19;;-1:-1:-1;;;;;;38581:19:0;;;38468:140::o;39467:296::-;39610:25;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;39610:25:0;;;;;;39600:36;;;;;;;;;39590:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39610:25;;-1:-1:-1;;39590:56:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39590:56:0;;;;;;;;-1:-1:-1;;;;;39579:67:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39579:67:0;;39571:105;;;;;-1:-1:-1;;;39571:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39687:26;39693:10;39705:7;39687:5;:26::i;:::-;39724:31;39737:7;39746:8;39724:12;:31::i;:::-;39467:296;;;;;:::o;37657:79::-;37722:6;;-1:-1:-1;;;;;37722:6:0;37657:79;:::o;38023:92::-;38101:6;;-1:-1:-1;;;;;38101:6:0;38087:10;:20;;38023:92::o;34834:89::-;34908:7;34901:14;;;;;;;;-1:-1:-1;;34901:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34875:13;;34901:14;;34908:7;;34901:14;;34908:7;34901:14;;;;;;;;;;;;;;;;;;;;;;;;16482:248;-1:-1:-1;;;;;16562:16:0;;16568:10;16562:16;;16554:54;;;;;-1:-1:-1;;;16554:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16640:10;16621:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;16621:34:0;;;;;;;;;;;;:45;;-1:-1:-1;;16621:45:0;;;;;;;;;;16682:40;;;;;;;16621:34;;16640:10;16682:40;;;;;;;;;;;16482:248;;:::o;19443:268::-;19550:31;19563:4;19569:2;19573:7;19550:12;:31::i;:::-;19600:48;19623:4;19629:2;19633:7;19642:5;19600:22;:48::i;:::-;19592:111;;;;-1:-1:-1;;;19592:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19443:268;;;;:::o;35130:205::-;35188:13;35222:16;35230:7;35222;:16::i;:::-;35214:76;;;;-1:-1:-1;;;35214:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35308:19;;;;:10;:19;;;;;;;;;35301:26;;;;;;-1:-1:-1;;35301:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35308:19;;35301:26;;35308:19;35301:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35130:205;;;:::o;17060:147::-;-1:-1:-1;;;;;17164:25:0;;;17140:4;17164:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17060:147::o;38763:109::-;37869:9;:7;:9::i;:::-;37861:54;;;;;-1:-1:-1;;;37861:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38836:28;38855:8;38836:18;:28::i;:::-;38763:109;:::o;19913:155::-;19970:4;20003:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20003:20:0;20041:19;;;19913:155::o;20438:333::-;20523:4;20548:16;20556:7;20548;:16::i;:::-;20540:73;;;;-1:-1:-1;;;20540:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20624:13;20640:16;20648:7;20640;:16::i;:::-;20624:32;;20686:5;-1:-1:-1;;;;;20675:16:0;:7;-1:-1:-1;;;;;20675:16:0;;:51;;;;20719:7;-1:-1:-1;;;;;20695:31:0;:20;20707:7;20695:11;:20::i;:::-;-1:-1:-1;;;;;20695:31:0;;20675:51;:87;;;;20730:32;20747:5;20754:7;20730:16;:32::i;:::-;20667:96;20438:333;-1:-1:-1;;;;20438:333:0:o;27895:245::-;27981:38;28001:4;28007:2;28011:7;27981:19;:38::i;:::-;28032:47;28065:4;28071:7;28032:32;:47::i;:::-;28092:40;28120:2;28124:7;28092:27;:40::i;9899:114::-;9991:14;;9899:114::o;28405:202::-;28469:24;28481:2;28485:7;28469:11;:24::i;:::-;28506:40;28534:2;28538:7;28506:27;:40::i;:::-;28559;28591:7;28559:31;:40::i;:::-;28405:202;;:::o;35582:195::-;35668:16;35676:7;35668;:16::i;:::-;35660:73;;;;-1:-1:-1;;;35660:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35744:19;;;;:10;:19;;;;;;;;:25;;;;;;;;:::i;23685:356::-;23807:4;23834:15;:2;-1:-1:-1;;;;;23834:13:0;;:15::i;:::-;23829:60;;-1:-1:-1;23873:4:0;23866:11;;23829:60;23917:70;;-1:-1:-1;;;23917:70:0;;23954:10;23917:70;;;;;;-1:-1:-1;;;;;23917:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23901:13;;23917:36;;;;;;23954:10;;23966:4;;23972:7;;23981:5;;23917:70;;;;;;;;;;;23901:13;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23917:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23917:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23917:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23917:70:0;-1:-1:-1;;;;;;24006:26:0;-1:-1:-1;;;24006:26:0;;-1:-1:-1;;23685:356:0;;;;;;:::o;38978:229::-;-1:-1:-1;;;;;39052:22:0;;39044:73;;;;-1:-1:-1;;;39044:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39154:6;;39133:38;;-1:-1:-1;;;;;39133:38:0;;;;39154:6;;39133:38;;39154:6;;39133:38;39182:6;:17;;-1:-1:-1;;;;;;39182:17:0;-1:-1:-1;;;;;39182:17:0;;;;;;;;;;38978:229::o;22640:459::-;22754:4;-1:-1:-1;;;;;22734:24:0;:16;22742:7;22734;:16::i;:::-;-1:-1:-1;;;;;22734:24:0;;22726:78;;;;-1:-1:-1;;;22726:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22823:16:0;;22815:65;;;;-1:-1:-1;;;22815:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22893:23;22908:7;22893:14;:23::i;:::-;-1:-1:-1;;;;;22929:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;22975:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;23021:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;23021:25:0;-1:-1:-1;;;;;23021:25:0;;;;;;;;;23064:27;;23021:20;;23064:27;;;;;;;22640:459;;;:::o;31078:1148::-;-1:-1:-1;;;;;31369:18:0;;31344:22;31369:18;;;:12;:18;;;;;:25;:32;;31399:1;31369:32;:29;:32;:::i;:::-;31412:18;31433:26;;;:17;:26;;;;;;31344:57;;-1:-1:-1;31566:28:0;;;31562:328;;-1:-1:-1;;;;;31633:18:0;;31611:19;31633:18;;;:12;:18;;;;;:34;;31652:14;;31633:34;;;;;;;;;;;;;;31611:56;;31717:11;31684:12;:18;31697:4;-1:-1:-1;;;;;31684:18:0;-1:-1:-1;;;;;31684:18:0;;;;;;;;;;;;31703:10;31684:30;;;;;;;;;;;;;;;;;;;:44;;;;31801:30;;;:17;:30;;;;;:43;;;31562:328;-1:-1:-1;;;;;31979:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;31979:27:0;;;:::i;29902:186::-;-1:-1:-1;;;;;30016:16:0;;;;;;;:12;:16;;;;;;;;:23;;29987:26;;;:17;:26;;;;;:52;;;30050:16;;;39:1:-1;23:18;;45:23;;30050:30:0;;;;;;;;29902:186::o;21024:335::-;-1:-1:-1;;;;;21096:16:0;;21088:61;;;;;-1:-1:-1;;;21088:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21169:16;21177:7;21169;:16::i;:::-;21168:17;21160:58;;;;;-1:-1:-1;;;21160:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21231:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;21231:25:0;-1:-1:-1;;;;;21231:25:0;;;;;;;;21267:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;21318;;21343:7;;-1:-1:-1;;;;;21318:33:0;;;21335:1;;21318:33;;21335:1;;21318:33;21024:335;;:::o;30289:164::-;30393:10;:17;;30366:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;30421:24:0;;;;;;;30289:164::o;8443:422::-;8810:20;8849:8;;;8443:422::o;24209:175::-;24309:1;24273:24;;;:15;:24;;;;;;-1:-1:-1;;;;;24273:24:0;:38;24269:108;;24363:1;24328:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;24328:37:0;;;24209:175::o;10120:110::-;10201:14;;:21;;10220:1;10201:21;:18;:21;:::i;:::-;10184:38;;10120:110::o;10021:91::-;10085:19;;10103:1;10085:19;;;10021:91::o;5590:184::-;5648:7;5681:1;5676;:6;;5668:49;;;;;-1:-1:-1;;;5668:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5740:5:0;;;5590:184::o;39281:485::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39281:485:0;;;-1:-1:-1;39281:485:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://4fe9a6672054468bfbfa13444598d0586a1aeef7eeb649e0ffe61243bf2ac49a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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