ETH Price: $3,299.53 (-3.51%)
Gas: 12 Gwei

Token

Matic Validator (MV)
 

Overview

Max Total Supply

127 MV

Holders

127

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MV
0x13dc53fa54e7d662ff305b6c3ef95090c31dc576
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:
StakingNFT

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
constantinople EvmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-01
*/

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.2;

/**
 * @title IERC165
 * @dev https://eips.ethereum.org/EIPS/eip-165
 */
interface IERC165 {
    /**
     * @notice Query if a contract implements an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.2;


/**
 * @title ERC721 Non-Fungible Token Standard basic interface
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
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);

    function balanceOf(address owner) public view returns (uint256 balance);
    function ownerOf(uint256 tokenId) public view returns (address owner);

    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 transferFrom(address from, address to, uint256 tokenId) public;
    function safeTransferFrom(address from, address to, uint256 tokenId) public;

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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.2;

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on 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);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.2;

/**
 * Utility library of inline functions on addresses
 */
library Address {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: openzeppelin-solidity/contracts/drafts/Counters.sol

pragma solidity ^0.5.2;


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

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.2;


/**
 * @title ERC165
 * @author Matt Condon (@shrugs)
 * @dev Implements ERC165 using a lookup table.
 */
contract ERC165 is IERC165 {
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
    /*
     * 0x01ffc9a7 ===
     *     bytes4(keccak256('supportsInterface(bytes4)'))
     */

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

    /**
     * @dev A contract implementing SupportsInterfaceWithLookup
     * implement ERC165 itself
     */
    constructor () internal {
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev implement supportsInterface(bytes4) using a lookup table
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev internal method for registering an interface
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff);
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.2;







/**
 * @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 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
    /*
     * 0x80ac58cd ===
     *     bytes4(keccak256('balanceOf(address)')) ^
     *     bytes4(keccak256('ownerOf(uint256)')) ^
     *     bytes4(keccak256('approve(address,uint256)')) ^
     *     bytes4(keccak256('getApproved(uint256)')) ^
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) ^
     *     bytes4(keccak256('isApprovedForAll(address,address)')) ^
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) ^
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)'))
     */

    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));
        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));
        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);
        require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

        _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));
        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);
        _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 {
        require(_isApprovedOrOwner(msg.sender, tokenId));

        _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));
    }

    /**
     * @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) {
        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));
        require(!_exists(tokenId));

        _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);

        _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);
        require(to != address(0));

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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.2;


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

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.2;




/**
 * @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 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
    /*
     * 0x780e9d63 ===
     *     bytes4(keccak256('totalSupply()')) ^
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^
     *     bytes4(keccak256('tokenByIndex(uint256)'))
     */

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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.2;


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

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.2;




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 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
    /*
     * 0x5b5e139f ===
     *     bytes4(keccak256('name()')) ^
     *     bytes4(keccak256('symbol()')) ^
     *     bytes4(keccak256('tokenURI(uint256)'))
     */

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

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.2;




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

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.2;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice 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 Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/staking/stakeManager/StakingNFT.sol

pragma solidity ^0.5.2;




contract StakingNFT is ERC721Full, Ownable {
    constructor(string memory name, string memory symbol)
        public
        ERC721Full(name, symbol)
    {
        // solhint-disable-previous-line no-empty-blocks
    }

    function mint(address to, uint256 tokenId) public onlyOwner {
        require(
            balanceOf(to) == 0,
            "Validators MUST NOT own multiple stake position"
        );
        _mint(to, tokenId);
    }

    function burn(uint256 tokenId) public onlyOwner {
        _burn(tokenId);
    }

    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(
            balanceOf(to) == 0,
            "Validators MUST NOT own multiple stake position"
        );
        super._transferFrom(from, to, tokenId);
    }
}

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":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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"}]

60806040523480156200001157600080fd5b50604051620017e2380380620017e2833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052508391508290508181620001d97f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b6200020d7f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b620002417f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b81516200025690600990602085019062000366565b5080516200026c90600a90602084019062000366565b50620002a17f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03620002f916565b5050600c80546001600160a01b0319163317908190556040516001600160a01b03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506200040b565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200032957600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a957805160ff1916838001178555620003d9565b82800160010185558215620003d9579182015b82811115620003d9578251825591602001919060010190620003bc565b50620003e7929150620003eb565b5090565b6200040891905b80821115620003e75760008155600101620003f2565b90565b6113c7806200041b6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b41146103d9578063a22cb465146103e1578063b88d4fde1461040f578063c87b56dd146104d5578063e985e9c5146104f2578063f2fde38b1461052057610142565b80636352211e1461037e57806370a082311461039b578063715018a6146103c15780638da5cb5b146103c95780638f32d59b146103d157610142565b806323b872dd1161010a57806323b872dd146102805780632f745c59146102b657806340c10f19146102e257806342842e0e1461030e57806342966c68146103445780634f6ccce71461036157610142565b806301ffc9a71461014757806306fdde0314610182578063081812fc146101ff578063095ea7b31461023857806318160ddd14610266575b600080fd5b61016e6004803603602081101561015d57600080fd5b50356001600160e01b031916610546565b604080519115158252519081900360200190f35b61018a610565565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c45781810151838201526020016101ac565b50505050905090810190601f1680156101f15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021c6004803603602081101561021557600080fd5b50356105fc565b604080516001600160a01b039092168252519081900360200190f35b6102646004803603604081101561024e57600080fd5b506001600160a01b03813516906020013561062c565b005b61026e6106d9565b60408051918252519081900360200190f35b6102646004803603606081101561029657600080fd5b506001600160a01b038135811691602081013590911690604001356106df565b61026e600480360360408110156102cc57600080fd5b506001600160a01b038135169060200135610702565b610264600480360360408110156102f857600080fd5b506001600160a01b03813516906020013561074f565b6102646004803603606081101561032457600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b6102646004803603602081101561035a57600080fd5b50356107ce565b61026e6004803603602081101561037757600080fd5b50356107eb565b61021c6004803603602081101561039457600080fd5b503561081f565b61026e600480360360208110156103b157600080fd5b50356001600160a01b0316610847565b61026461087d565b61021c6108d8565b61016e6108e7565b61018a6108f8565b610264600480360360408110156103f757600080fd5b506001600160a01b0381351690602001351515610959565b6102646004803603608081101561042557600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561046057600080fd5b82018360208201111561047257600080fd5b8035906020019184600183028401116401000000008311171561049457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109dd945050505050565b61018a600480360360208110156104eb57600080fd5b5035610a03565b61016e6004803603604081101561050857600080fd5b506001600160a01b0381358116916020013516610ab6565b6102646004803603602081101561053657600080fd5b50356001600160a01b0316610ae4565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505090505b90565b600061060782610afe565b61061057600080fd5b506000908152600260205260409020546001600160a01b031690565b60006106378261081f565b9050806001600160a01b0316836001600160a01b0316141561065857600080fd5b336001600160a01b038216148061067457506106748133610ab6565b61067d57600080fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6106e93382610b1b565b6106f257600080fd5b6106fd838383610b7a565b505050565b600061070d83610847565b821061071857600080fd5b6001600160a01b038316600090815260056020526040902080548390811061073c57fe5b9060005260206000200154905092915050565b6107576108e7565b61076057600080fd5b61076982610847565b156107a55760405162461bcd60e51b815260040180806020018281038252602f815260200180611364602f913960400191505060405180910390fd5b6107af8282610bca565b5050565b6106fd838383604051806020016040528060008152506109dd565b6107d66108e7565b6107df57600080fd5b6107e881610be7565b50565b60006107f56106d9565b821061080057600080fd5b6007828154811061080d57fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168061084157600080fd5b92915050565b60006001600160a01b03821661085c57600080fd5b6001600160a01b038216600090815260036020526040902061084190610bf9565b6108856108e7565b61088e57600080fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f15780601f106105c6576101008083540402835291602001916105f1565b6001600160a01b03821633141561096f57600080fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6109e88484846106df565b6109f484848484610bfd565b6109fd57600080fd5b50505050565b6060610a0e82610afe565b610a1757600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610aec6108e7565b610af557600080fd5b6107e881610d30565b6000908152600160205260409020546001600160a01b0316151590565b600080610b278361081f565b9050806001600160a01b0316846001600160a01b03161480610b625750836001600160a01b0316610b57846105fc565b6001600160a01b0316145b80610b725750610b728185610ab6565b949350505050565b610b8382610847565b15610bbf5760405162461bcd60e51b815260040180806020018281038252602f815260200180611364602f913960400191505060405180910390fd5b6106fd838383610d9f565b610bd48282610dbe565b610bde8282610e5f565b6107af81610e9d565b6107e8610bf38261081f565b82610ee1565b5490565b6000610c11846001600160a01b0316610f29565b610c1d57506001610b72565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015610c97578181015183820152602001610c7f565b50505050905090810190601f168015610cc45780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610ce657600080fd5b505af1158015610cfa573d6000803e3d6000fd5b505050506040513d6020811015610d1057600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b6001600160a01b038116610d4357600080fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610daa838383610f2f565b610db4838261100f565b6106fd8282610e5f565b6001600160a01b038216610dd157600080fd5b610dda81610afe565b15610de457600080fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020610e2390611104565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b610eeb828261110d565b6000818152600b602052604090205460026000196101006001841615020190911604156107af576000818152600b602052604081206107af916112e1565b3b151590565b826001600160a01b0316610f428261081f565b6001600160a01b031614610f5557600080fd5b6001600160a01b038216610f6857600080fd5b610f7181611139565b6001600160a01b0383166000908152600360205260409020610f9290611174565b6001600160a01b0382166000908152600360205260409020610fb390611104565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461103990600163ffffffff61118b16565b6000838152600660205260409020549091508082146110d4576001600160a01b038416600090815260056020526040812080548490811061107657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106110b457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906110fd906000198301611325565b5050505050565b80546001019055565b61111782826111a0565b611121828261100f565b6000818152600660205260408120556107af81611245565b6000818152600260205260409020546001600160a01b0316156107e857600090815260026020526040902080546001600160a01b0319169055565b805461118790600163ffffffff61118b16565b9055565b60008282111561119a57600080fd5b50900390565b816001600160a01b03166111b38261081f565b6001600160a01b0316146111c657600080fd5b6111cf81611139565b6001600160a01b03821660009081526003602052604090206111f090611174565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061125c90600163ffffffff61118b16565b6000838152600860205260408120546007805493945090928490811061127e57fe5b90600052602060002001549050806007838154811061129957fe5b600091825260208083209091019290925582815260089091526040902082905560078054906112cc906000198301611325565b50505060009182525060086020526040812055565b50805460018160011615610100020316600290046000825580601f1061130757506107e8565b601f0160209004906000526020600020908101906107e89190611345565b8154818355818111156106fd576000838152602090206106fd9181019083015b6105f991905b8082111561135f576000815560010161134b565b509056fe56616c696461746f7273204d555354204e4f54206f776e206d756c7469706c65207374616b6520706f736974696f6ea265627a7a723158201163a6b134b71ddd66af8e105cda40e932073fcb6696b685a5d92178d6cd548d64736f6c6343000511003200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d617469632056616c696461746f72000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d56000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b41146103d9578063a22cb465146103e1578063b88d4fde1461040f578063c87b56dd146104d5578063e985e9c5146104f2578063f2fde38b1461052057610142565b80636352211e1461037e57806370a082311461039b578063715018a6146103c15780638da5cb5b146103c95780638f32d59b146103d157610142565b806323b872dd1161010a57806323b872dd146102805780632f745c59146102b657806340c10f19146102e257806342842e0e1461030e57806342966c68146103445780634f6ccce71461036157610142565b806301ffc9a71461014757806306fdde0314610182578063081812fc146101ff578063095ea7b31461023857806318160ddd14610266575b600080fd5b61016e6004803603602081101561015d57600080fd5b50356001600160e01b031916610546565b604080519115158252519081900360200190f35b61018a610565565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c45781810151838201526020016101ac565b50505050905090810190601f1680156101f15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61021c6004803603602081101561021557600080fd5b50356105fc565b604080516001600160a01b039092168252519081900360200190f35b6102646004803603604081101561024e57600080fd5b506001600160a01b03813516906020013561062c565b005b61026e6106d9565b60408051918252519081900360200190f35b6102646004803603606081101561029657600080fd5b506001600160a01b038135811691602081013590911690604001356106df565b61026e600480360360408110156102cc57600080fd5b506001600160a01b038135169060200135610702565b610264600480360360408110156102f857600080fd5b506001600160a01b03813516906020013561074f565b6102646004803603606081101561032457600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b6102646004803603602081101561035a57600080fd5b50356107ce565b61026e6004803603602081101561037757600080fd5b50356107eb565b61021c6004803603602081101561039457600080fd5b503561081f565b61026e600480360360208110156103b157600080fd5b50356001600160a01b0316610847565b61026461087d565b61021c6108d8565b61016e6108e7565b61018a6108f8565b610264600480360360408110156103f757600080fd5b506001600160a01b0381351690602001351515610959565b6102646004803603608081101561042557600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561046057600080fd5b82018360208201111561047257600080fd5b8035906020019184600183028401116401000000008311171561049457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109dd945050505050565b61018a600480360360208110156104eb57600080fd5b5035610a03565b61016e6004803603604081101561050857600080fd5b506001600160a01b0381358116916020013516610ab6565b6102646004803603602081101561053657600080fd5b50356001600160a01b0316610ae4565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505090505b90565b600061060782610afe565b61061057600080fd5b506000908152600260205260409020546001600160a01b031690565b60006106378261081f565b9050806001600160a01b0316836001600160a01b0316141561065857600080fd5b336001600160a01b038216148061067457506106748133610ab6565b61067d57600080fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6106e93382610b1b565b6106f257600080fd5b6106fd838383610b7a565b505050565b600061070d83610847565b821061071857600080fd5b6001600160a01b038316600090815260056020526040902080548390811061073c57fe5b9060005260206000200154905092915050565b6107576108e7565b61076057600080fd5b61076982610847565b156107a55760405162461bcd60e51b815260040180806020018281038252602f815260200180611364602f913960400191505060405180910390fd5b6107af8282610bca565b5050565b6106fd838383604051806020016040528060008152506109dd565b6107d66108e7565b6107df57600080fd5b6107e881610be7565b50565b60006107f56106d9565b821061080057600080fd5b6007828154811061080d57fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168061084157600080fd5b92915050565b60006001600160a01b03821661085c57600080fd5b6001600160a01b038216600090815260036020526040902061084190610bf9565b6108856108e7565b61088e57600080fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f15780601f106105c6576101008083540402835291602001916105f1565b6001600160a01b03821633141561096f57600080fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6109e88484846106df565b6109f484848484610bfd565b6109fd57600080fd5b50505050565b6060610a0e82610afe565b610a1757600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610aaa5780601f10610a7f57610100808354040283529160200191610aaa565b820191906000526020600020905b815481529060010190602001808311610a8d57829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610aec6108e7565b610af557600080fd5b6107e881610d30565b6000908152600160205260409020546001600160a01b0316151590565b600080610b278361081f565b9050806001600160a01b0316846001600160a01b03161480610b625750836001600160a01b0316610b57846105fc565b6001600160a01b0316145b80610b725750610b728185610ab6565b949350505050565b610b8382610847565b15610bbf5760405162461bcd60e51b815260040180806020018281038252602f815260200180611364602f913960400191505060405180910390fd5b6106fd838383610d9f565b610bd48282610dbe565b610bde8282610e5f565b6107af81610e9d565b6107e8610bf38261081f565b82610ee1565b5490565b6000610c11846001600160a01b0316610f29565b610c1d57506001610b72565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015610c97578181015183820152602001610c7f565b50505050905090810190601f168015610cc45780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610ce657600080fd5b505af1158015610cfa573d6000803e3d6000fd5b505050506040513d6020811015610d1057600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b6001600160a01b038116610d4357600080fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610daa838383610f2f565b610db4838261100f565b6106fd8282610e5f565b6001600160a01b038216610dd157600080fd5b610dda81610afe565b15610de457600080fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020610e2390611104565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b610eeb828261110d565b6000818152600b602052604090205460026000196101006001841615020190911604156107af576000818152600b602052604081206107af916112e1565b3b151590565b826001600160a01b0316610f428261081f565b6001600160a01b031614610f5557600080fd5b6001600160a01b038216610f6857600080fd5b610f7181611139565b6001600160a01b0383166000908152600360205260409020610f9290611174565b6001600160a01b0382166000908152600360205260409020610fb390611104565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461103990600163ffffffff61118b16565b6000838152600660205260409020549091508082146110d4576001600160a01b038416600090815260056020526040812080548490811061107657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106110b457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906110fd906000198301611325565b5050505050565b80546001019055565b61111782826111a0565b611121828261100f565b6000818152600660205260408120556107af81611245565b6000818152600260205260409020546001600160a01b0316156107e857600090815260026020526040902080546001600160a01b0319169055565b805461118790600163ffffffff61118b16565b9055565b60008282111561119a57600080fd5b50900390565b816001600160a01b03166111b38261081f565b6001600160a01b0316146111c657600080fd5b6111cf81611139565b6001600160a01b03821660009081526003602052604090206111f090611174565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061125c90600163ffffffff61118b16565b6000838152600860205260408120546007805493945090928490811061127e57fe5b90600052602060002001549050806007838154811061129957fe5b600091825260208083209091019290925582815260089091526040902082905560078054906112cc906000198301611325565b50505060009182525060086020526040812055565b50805460018160011615610100020316600290046000825580601f1061130757506107e8565b601f0160209004906000526020600020908101906107e89190611345565b8154818355818111156106fd576000838152602090206106fd9181019083015b6105f991905b8082111561135f576000815560010161134b565b509056fe56616c696461746f7273204d555354204e4f54206f776e206d756c7469706c65207374616b6520706f736974696f6ea265627a7a723158201163a6b134b71ddd66af8e105cda40e932073fcb6696b685a5d92178d6cd548d64736f6c63430005110032

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d617469632056616c696461746f72000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d56000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Matic Validator
Arg [1] : symbol (string): MV

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4d617469632056616c696461746f720000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4d56000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35930:814:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35930:814:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8584:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8584:135:0;-1:-1:-1;;;;;;8584:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;31322: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;31322:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12712:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12712:154:0;;:::i;:::-;;;;-1:-1:-1;;;;;12712:154:0;;;;;;;;;;;;;;12120:299;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12120:299:0;;;;;;;;:::i;:::-;;23105:96;;;:::i;:::-;;;;;;;;;;;;;;;;14303:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14303:184:0;;;;;;;;;;;;;;;;;:::i;22762:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22762:185:0;;;;;;;;:::i;36163:223::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36163:223:0;;;;;;;;:::i;15133:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15133:134:0;;;;;;;;;;;;;;;;;:::i;36394:81::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36394:81:0;;:::i;23546:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23546:151:0;;:::i;11508:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11508:181:0;;:::i;11120:163::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11120:163:0;-1:-1:-1;;;;;11120:163:0;;:::i;35069:140::-;;;:::i;34279:79::-;;;:::i;34614:92::-;;;:::i;31521:89::-;;;:::i;13166:217::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13166:217:0;;;;;;;;;;:::i;15986:214::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;15986:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;15986:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;15986:214: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;15986:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;15986:214:0;;-1:-1:-1;15986:214:0;;-1:-1:-1;;;;;15986:214:0:i;31816:154::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31816:154:0;;:::i;13712:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13712:147:0;;;;;;;;;;:::i;35386:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35386:109:0;-1:-1:-1;;;;;35386:109:0;;:::i;8584:135::-;-1:-1:-1;;;;;;8678:33:0;8654:4;8678:33;;;;;;;;;;;;;;8584:135::o;31322:85::-;31394:5;31387:12;;;;;;;;-1:-1:-1;;31387:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31361:13;;31387:12;;31394:5;;31387:12;;31394:5;31387:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31322:85;;:::o;12712:154::-;12771:7;12799:16;12807:7;12799;:16::i;:::-;12791:25;;;;;;-1:-1:-1;12834:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12834:24:0;;12712:154::o;12120:299::-;12184:13;12200:16;12208:7;12200;:16::i;:::-;12184:32;;12241:5;-1:-1:-1;;;;;12235:11:0;:2;-1:-1:-1;;;;;12235:11:0;;;12227:20;;;;;;12266:10;-1:-1:-1;;;;;12266:19:0;;;;:58;;;12289:35;12306:5;12313:10;12289:16;:35::i;:::-;12258:67;;;;;;12338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12338:29:0;-1:-1:-1;;;;;12338:29:0;;;;;;;;;12383:28;;12338:24;;12383:28;;;;;;;12120:299;;;:::o;23105:96::-;23176:10;:17;23105:96;:::o;14303:184::-;14394:39;14413:10;14425:7;14394:18;:39::i;:::-;14386:48;;;;;;14447:32;14461:4;14467:2;14471:7;14447:13;:32::i;:::-;14303:184;;;:::o;22762:185::-;22842:7;22878:16;22888:5;22878:9;:16::i;:::-;22870:5;:24;22862:33;;;;;;-1:-1:-1;;;;;22913:19:0;;;;;;:12;:19;;;;;:26;;22933:5;;22913:26;;;;;;;;;;;;;;22906:33;;22762:185;;;;:::o;36163:223::-;34491:9;:7;:9::i;:::-;34483:18;;;;;;36256:13;36266:2;36256:9;:13::i;:::-;:18;36234:115;;;;-1:-1:-1;;;36234:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36360:18;36366:2;36370:7;36360:5;:18::i;:::-;36163:223;;:::o;15133:134::-;15220:39;15237:4;15243:2;15247:7;15220:39;;;;;;;;;;;;:16;:39::i;36394:81::-;34491:9;:7;:9::i;:::-;34483:18;;;;;;36453:14;36459:7;36453:5;:14::i;:::-;36394:81;:::o;23546:151::-;23604:7;23640:13;:11;:13::i;:::-;23632:5;:21;23624:30;;;;;;23672:10;23683:5;23672:17;;;;;;;;;;;;;;;;23665:24;;23546:151;;;:::o;11508:181::-;11563:7;11599:20;;;:11;:20;;;;;;-1:-1:-1;;;;;11599:20:0;11638:19;11630:28;;;;;;11676:5;11508:181;-1:-1:-1;;11508:181:0:o;11120:163::-;11175:7;-1:-1:-1;;;;;11203:19:0;;11195:28;;;;;;-1:-1:-1;;;;;11241:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;35069:140::-;34491:9;:7;:9::i;:::-;34483:18;;;;;;35152:6;;35131:40;;35168:1;;-1:-1:-1;;;;;35152:6:0;;35131:40;;35168:1;;35131:40;35182:6;:19;;-1:-1:-1;;;;;;35182:19:0;;;35069:140::o;34279:79::-;34344:6;;-1:-1:-1;;;;;34344:6:0;34279:79;:::o;34614:92::-;34692:6;;-1:-1:-1;;;;;34692:6:0;34678:10;:20;;34614:92::o;31521:89::-;31595:7;31588:14;;;;;;;;-1:-1:-1;;31588:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31562:13;;31588:14;;31595:7;;31588:14;;31595:7;31588:14;;;;;;;;;;;;;;;;;;;;;;;;13166:217;-1:-1:-1;;;;;13246:16:0;;13252:10;13246:16;;13238:25;;;;;;13293:10;13274:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;13274:34:0;;;;;;;;;;;;:45;;-1:-1:-1;;13274:45:0;;;;;;;;;;13335:40;;;;;;;13274:34;;13293:10;13335:40;;;;;;;;;;;13166:217;;:::o;15986:214::-;16093:31;16106:4;16112:2;16116:7;16093:12;:31::i;:::-;16143:48;16166:4;16172:2;16176:7;16185:5;16143:22;:48::i;:::-;16135:57;;;;;;15986:214;;;;:::o;31816:154::-;31874:13;31908:16;31916:7;31908;:16::i;:::-;31900:25;;;;;;31943:19;;;;:10;:19;;;;;;;;;31936:26;;;;;;-1:-1:-1;;31936:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31943:19;;31936:26;;31943:19;31936:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31816:154;;;:::o;13712:147::-;-1:-1:-1;;;;;13816:25:0;;;13792:4;13816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13712:147::o;35386:109::-;34491:9;:7;:9::i;:::-;34483:18;;;;;;35459:28;35478:8;35459:18;:28::i;16401:155::-;16458:4;16491:20;;;:11;:20;;;;;;-1:-1:-1;;;;;16491:20:0;16529:19;;;16401:155::o;16925:249::-;17010:4;17027:13;17043:16;17051:7;17043;:16::i;:::-;17027:32;;17089:5;-1:-1:-1;;;;;17078:16:0;:7;-1:-1:-1;;;;;17078:16:0;;:51;;;;17122:7;-1:-1:-1;;;;;17098:31:0;:20;17110:7;17098:11;:20::i;:::-;-1:-1:-1;;;;;17098:31:0;;17078:51;:87;;;;17133:32;17150:5;17157:7;17133:16;:32::i;:::-;17070:96;16925:249;-1:-1:-1;;;;16925:249:0:o;36483:258::-;36591:13;36601:2;36591:9;:13::i;:::-;:18;36569:115;;;;-1:-1:-1;;;36569:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36695:38;36715:4;36721:2;36725:7;36695:19;:38::i;24589:202::-;24653:24;24665:2;24669:7;24653:11;:24::i;:::-;24690:40;24718:2;24722:7;24690:27;:40::i;:::-;24743;24775:7;24743:31;:40::i;18452:92::-;18504:32;18510:16;18518:7;18510;:16::i;:::-;18528:7;18504:5;:32::i;7393:114::-;7485:14;;7393:114::o;19841:356::-;19963:4;19990:15;:2;-1:-1:-1;;;;;19990:13:0;;:15::i;:::-;19985:60;;-1:-1:-1;20029:4:0;20022:11;;19985:60;20073:70;;-1:-1:-1;;;20073:70:0;;20110:10;20073:70;;;;;;-1:-1:-1;;;;;20073:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20057:13;;20073:36;;;;;;20110:10;;20122:4;;20128:7;;20137:5;;20073:70;;;;;;;;;;;20057: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;20073:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20073:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20073:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20073:70:0;-1:-1:-1;;;;;;20162:26:0;-1:-1:-1;;;20162:26:0;;-1:-1:-1;;19841:356:0;;;;;;:::o;35645:187::-;-1:-1:-1;;;;;35719:22:0;;35711:31;;;;;;35779:6;;35758:38;;-1:-1:-1;;;;;35758:38:0;;;;35779:6;;35758:38;;35779:6;;35758:38;35807:6;:17;;-1:-1:-1;;;;;;35807:17:0;-1:-1:-1;;;;;35807:17:0;;;;;;;;;;35645:187::o;24081:245::-;24167:38;24187:4;24193:2;24197:7;24167:19;:38::i;:::-;24218:47;24251:4;24257:7;24218:32;:47::i;:::-;24278:40;24306:2;24310:7;24278:27;:40::i;17425:267::-;-1:-1:-1;;;;;17497:16:0;;17489:25;;;;;;17534:16;17542:7;17534;:16::i;:::-;17533:17;17525:26;;;;;;17564:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;17564:25:0;-1:-1:-1;;;;;17564:25:0;;;;;;;;17600:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;17651;;17676:7;;-1:-1:-1;;;;;17651:33:0;;;17668:1;;17651:33;;17668:1;;17651:33;17425:267;;:::o;26082:186::-;-1:-1:-1;;;;;26196:16:0;;;;;;;:12;:16;;;;;;;;:23;;26167:26;;;:17;:26;;;;;:52;;;26230:16;;;39:1:-1;23:18;;45:23;;26230:30:0;;;;;;;;26082:186::o;26469:164::-;26573:10;:17;;26546:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;26601:24:0;;;;;;;26469:164::o;32661:247::-;32728:27;32740:5;32747:7;32728:11;:27::i;:::-;32814:19;;;;:10;:19;;;;;32808:33;;-1:-1:-1;;32808:33:0;;;;;;;;;;;:38;32804:97;;32870:19;;;;:10;:19;;;;;32863:26;;;:::i;5640:627::-;6212:20;6251:8;;;5640:627::o;18928:374::-;19042:4;-1:-1:-1;;;;;19022:24:0;:16;19030:7;19022;:16::i;:::-;-1:-1:-1;;;;;19022:24:0;;19014:33;;;;;;-1:-1:-1;;;;;19066:16:0;;19058:25;;;;;;19096:23;19111:7;19096:14;:23::i;:::-;-1:-1:-1;;;;;19132:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;19178:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;19224:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;19224:25:0;-1:-1:-1;;;;;19224:25:0;;;;;;;;;19267:27;;19224:20;;19267:27;;;;;;;18928:374;;;:::o;27258:1148::-;-1:-1:-1;;;;;27549:18:0;;27524:22;27549:18;;;:12;:18;;;;;:25;:32;;27579:1;27549:32;:29;:32;:::i;:::-;27592:18;27613:26;;;:17;:26;;;;;;27524:57;;-1:-1:-1;27746:28:0;;;27742:328;;-1:-1:-1;;;;;27813:18:0;;27791:19;27813:18;;;:12;:18;;;;;:34;;27832:14;;27813:34;;;;;;;;;;;;;;27791:56;;27897:11;27864:12;:18;27877:4;-1:-1:-1;;;;;27864:18:0;-1:-1:-1;;;;;27864:18:0;;;;;;;;;;;;27883:10;27864:30;;;;;;;;;;;;;;;;;;;:44;;;;27981:30;;;:17;:30;;;;;:43;;;27742:328;-1:-1:-1;;;;;28159:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;28159:27:0;;;:::i;:::-;;27258:1148;;;;:::o;7515:91::-;7579:19;;7597:1;7579:19;;;7515:91::o;25072:372::-;25139:27;25151:5;25158:7;25139:11;:27::i;:::-;25179:48;25212:5;25219:7;25179:32;:48::i;:::-;25377:1;25348:26;;;:17;:26;;;;;:30;25391:45;25366:7;25391:36;:45::i;20364:175::-;20464:1;20428:24;;;:15;:24;;;;;;-1:-1:-1;;;;;20428:24:0;:38;20424:108;;20518:1;20483:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;20483:37:0;;;20364:175::o;7614:110::-;7695:14;;:21;;7714:1;7695:21;:18;:21;:::i;:::-;7678:38;;7614:110::o;4422:150::-;4480:7;4513:1;4508;:6;;4500:15;;;;;;-1:-1:-1;4538:5:0;;;4422:150::o;17974:292::-;18069:5;-1:-1:-1;;;;;18049:25:0;:16;18057:7;18049;:16::i;:::-;-1:-1:-1;;;;;18049:25:0;;18041:34;;;;;;18088:23;18103:7;18088:14;:23::i;:::-;-1:-1:-1;;;;;18124:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;18202:1;18171:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;18171:33:0;;;18222:36;18183:7;;18202:1;-1:-1:-1;;;;;18222:36:0;;;;;18202:1;;18222:36;17974:292;;:::o;28701:1082::-;28979:10;:17;28954:22;;28979:24;;29001:1;28979:24;:21;:24;:::i;:::-;29014:18;29035:24;;;:15;:24;;;;;;29408:10;:26;;28954:49;;-1:-1:-1;29035:24:0;;28954:49;;29408:26;;;;;;;;;;;;;;29386:48;;29472:11;29447:10;29458;29447:22;;;;;;;;;;;;;;;;;;;:36;;;;29552:28;;;:15;:28;;;;;;:41;;;29717:10;:19;;;;;-1:-1:-1;;29717:19:0;;;:::i;:::-;-1:-1:-1;;;29774:1:0;29747:24;;;-1:-1:-1;29747:15:0;:24;;;;;:28;28701:1082::o;35930:814::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://1163a6b134b71ddd66af8e105cda40e932073fcb6696b685a5d92178d6cd548d
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.