ETH Price: $3,787.75 (+20.77%)
Gas: 36 Gwei

Token

Motus Perpetuus (DE_MP)
 

Overview

Max Total Supply

3,908 DE_MP

Holders

2,047

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
crypto-mft.eth
Balance
4 DE_MP
0x721108f9781f1c5a6ff6b2ac9fe3468c715c7ed4
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:
DE_MP

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion
File 1 of 15 : DE_MP.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.14;

import "./ERC721Enumerable_Minimal.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

abstract contract IStaker {
    enum TokenType { _gen, _comp, Psilocybin }
    struct TokenInfo { address owner; uint256 timeStaked; }
    mapping(TokenType => mapping(uint256 => TokenInfo)) public tokenInfo;
}

interface IPsilocybin is IERC721 {
    function burn(uint256 tokenId) external;
}

contract DE_MP is ERC721Enumerable, IERC2981, Ownable {
    address public constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    uint8 public royaltyDivisor = 20;
    uint256 public remainingTeamReserved = 211;
    bool public saleIsActive = false;
    bool private isOpenSeaProxyActive = true;

    ProxyRegistry internal openSeaProxyRegistry;

    mapping(uint256 => bool) public psilocybinUsed;

    IPsilocybin public PSILOCYBIN_CONTRACT;
    IERC721 public METAVERSE_CONTRACT;
    IERC721 public IRL_CONTRACT;
    IStaker public STAKING_CONTRACT;

    constructor(address _psilo, address _meta, address _irl, address _staker, string memory _uri) ERC721("Motus Perpetuus", "DE_MP") {
        PSILOCYBIN_CONTRACT = IPsilocybin(_psilo);
        METAVERSE_CONTRACT = IERC721(_meta);
        IRL_CONTRACT = IERC721(_irl);
        STAKING_CONTRACT = IStaker(_staker);
        _setBaseURI(_uri);
    }

    // -------------- //
    //     SETTERS    //
    // -------------- //

    function setBaseURI(string calldata _uri) external onlyOwner {
        _setBaseURI(_uri);
    }

    function switchSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setRoyaltyDivisor(uint8 _divisor) external onlyOwner {
        royaltyDivisor = _divisor;
    }

    function setIsOpenSeaProxyActive(bool _isActive) external onlyOwner {
        isOpenSeaProxyActive = _isActive;
    }

    function setOpenSeaProxyAddress(address _address) external onlyOwner {
        openSeaProxyRegistry = ProxyRegistry(_address);
    }

    // -------------- //
    // USER FUNCTIONS //
    // -------------- //

    /**
     * Mints 1 DE_MP after using a 'Psilocybin' and buring either a 'Metaverse Pass' or 'IRL Pass'
     * @param _useMeta chooses to burn either 'Metaverse Pass' (true) or 'IRL Pass' (false)
     */
    function claim(uint256 _psiloId, uint256 _metaId, uint256 _irlId, bool _useMeta) external {
        require(saleIsActive, "Sale is not active");
        require(!psilocybinUsed[_psiloId], "Psilocybin already used");
        (address stakingOwner, ) = STAKING_CONTRACT.tokenInfo(IStaker.TokenType.Psilocybin, _psiloId);
        require(PSILOCYBIN_CONTRACT.ownerOf(_psiloId) == msg.sender || stakingOwner == msg.sender, "Invalid Psilocybin owner");

        if (_useMeta) {
            try METAVERSE_CONTRACT.transferFrom(msg.sender, DEAD_ADDRESS, _metaId) {} catch Error(string memory reason) {
                revert(string(abi.encodePacked("META: ", reason)));
            }
        } else {
            try IRL_CONTRACT.transferFrom(msg.sender, DEAD_ADDRESS, _irlId) {} catch Error(string memory reason) {
                revert(string(abi.encodePacked("IRL: ", reason)));
            }
        }

        psilocybinUsed[_psiloId] = true;
        _mint(msg.sender, totalSupply());
    }

    function burn(uint256 tokenId) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "caller is not owner nor approved"
        );
        _burn(tokenId);
    }

    /** Mints 211 extra DE_MP for giveaways/airdrops */
    function ownerMint(uint256 _amount) external onlyOwner {
        require(_amount < remainingTeamReserved + 1, "Will exceed reserved amount");
        remainingTeamReserved -= _amount;

        uint256 _tokenCount = totalSupply();
        for (uint256 i = 0; i < _amount; ) {
            _mint(msg.sender, _tokenCount + i);
            unchecked { ++i; }
        }
    }

    // -------------- //
    //      VIEW      //
    // -------------- //

    function checkBalance(address _a) external view 
        returns(uint256 _psilo, uint256 _meta, uint256 _irl) 
    {
        _psilo = PSILOCYBIN_CONTRACT.balanceOf(_a);
        _meta = METAVERSE_CONTRACT.balanceOf(_a);
        _irl = IRL_CONTRACT.balanceOf(_a);
    }

    // -------------- //
    //    OVERRIDES   //
    // -------------- //

    function isApprovedForAll(address owner, address operator)
        public view override(ERC721, IERC721)
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        if (isOpenSeaProxyActive) {
            return address(openSeaProxyRegistry.proxies(owner)) == operator;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI_ = baseURI();
        return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_)) : "";
    }

    /**
     * @dev See {IERC2981-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external view override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (
            0x218B622bbe4404c01f972F243952E3a1D2132Dec,
            salePrice / royaltyDivisor
        );
    }
}

/***************************************
 * @author: 🍖                         *
 * @team:   Asteria                     *
 ****************************************/

File 2 of 15 : ERC721Enumerable_Minimal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import "./ERC721_Minimal.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/**
 * borrowed from Nuclear Nerds implementation
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

File 3 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 5 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 6 of 15 : ERC721_Minimal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import "@openzeppelin/contracts/interfaces/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 * Modified from original OpenZeppelin version to improve gas performance
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
	
	// Base URI
    string private _baseURI;
	
	// Owner array
	address[] internal _owners;
	
	// Removed for optimization
    // Mapping from token ID to owner address
    // mapping(uint256 => address) private _owners;
    // Mapping owner address to token count
    // mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
	 * updated for owner array
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
		uint256 _ownerBalance = 0;
		for(uint i = 0; i < _owners.length; i++) {
			if(_owners[i] == owner) _ownerBalance ++;
		}
        return _ownerBalance;
    }
	
	
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI_ = baseURI();
        return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function baseURI() internal view virtual returns (string memory) {
        return _baseURI;
    }
	
    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }


    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _owners.push(to);

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _owners[tokenId] = address(0);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-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
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * 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
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 5000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_psilo","type":"address"},{"internalType":"address","name":"_meta","type":"address"},{"internalType":"address","name":"_irl","type":"address"},{"internalType":"address","name":"_staker","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"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"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IRL_CONTRACT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METAVERSE_CONTRACT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PSILOCYBIN_CONTRACT","outputs":[{"internalType":"contract IPsilocybin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_CONTRACT","outputs":[{"internalType":"contract IStaker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"checkBalance","outputs":[{"internalType":"uint256","name":"_psilo","type":"uint256"},{"internalType":"uint256","name":"_meta","type":"uint256"},{"internalType":"uint256","name":"_irl","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_psiloId","type":"uint256"},{"internalType":"uint256","name":"_metaId","type":"uint256"},{"internalType":"uint256","name":"_irlId","type":"uint256"},{"internalType":"bool","name":"_useMeta","type":"bool"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"psilocybinUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingTeamReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyDivisor","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOpenSeaProxyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_divisor","type":"uint8"}],"name":"setRoyaltyDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260068054600560a21b60ff60a01b1990911617905560d36007556008805461ffff19166101001790553480156200003a57600080fd5b5060405162002f7f38038062002f7f8339810160408190526200005d91620001db565b6040518060400160405280600f81526020016e4d6f7475732050657270657475757360881b81525060405180604001604052806005815260200164044455f4d560dc1b8152508160009081620000b4919062000394565b506001620000c3828262000394565b505050620000e0620000da6200014060201b60201c565b62000144565b600a80546001600160a01b038088166001600160a01b031992831617909255600b8054878416908316179055600c8054868416908316179055600d805492851692909116919091179055620001358162000196565b505050505062000460565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002620001a4828262000394565b5050565b80516001600160a01b0381168114620001c057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a08688031215620001f457600080fd5b620001ff86620001a8565b9450602062000210818801620001a8565b94506200022060408801620001a8565b93506200023060608801620001a8565b60808801519093506001600160401b03808211156200024e57600080fd5b818901915089601f8301126200026357600080fd5b815181811115620002785762000278620001c5565b604051601f8201601f19908116603f01168101908382118183101715620002a357620002a3620001c5565b816040528281528c86848701011115620002bc57600080fd5b600093505b82841015620002e05784840186015181850187015292850192620002c1565b82841115620002f25760008684830101525b8096505050505050509295509295909350565b600181811c908216806200031a57607f821691505b6020821081036200033b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038f57600081815260208120601f850160051c810160208610156200036a5750805b601f850160051c820191505b818110156200038b5782815560010162000376565b5050505b505050565b81516001600160401b03811115620003b057620003b0620001c5565b620003c881620003c1845462000305565b8462000341565b602080601f831160018114620004005760008415620003e75750858301515b600019600386901b1c1916600185901b1785556200038b565b600085815260208120601f198616915b82811015620004315788860151825594840194600190910190840162000410565b5085821015620004505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612b0f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106102925760003560e01c8063715018a611610160578063b82bc97b116100d8578063e985e9c51161008c578063efc4f1dc11610071578063efc4f1dc1461059c578063f19e75d4146105a4578063f2fde38b146105b757600080fd5b8063e985e9c51461057c578063eb8d24441461058f57600080fd5b8063c87b56dd116100bd578063c87b56dd14610543578063da19ddfb14610556578063e43082f71461056957600080fd5b8063b82bc97b1461051d578063b88d4fde1461053057600080fd5b80638da5cb5b1161012f578063901b4ad511610114578063901b4ad5146104ef57806395d89b4114610502578063a22cb4651461050a57600080fd5b80638da5cb5b146104a7578063901b201d146104b857600080fd5b8063715018a61461046057806375006bbd146104685780638a2345d8146104715780638d8e6cd31461048457600080fd5b80633509f90a1161020e57806355f804b3116101c25780635f515226116101a75780635f5152261461040c5780636352211e1461043a57806370a082311461044d57600080fd5b806355f804b3146103e65780635d4e5c8a146103f957600080fd5b806342966c68116101f357806342966c68146103b75780634e6fd6c4146103ca5780634f6ccce7146103d357600080fd5b80633509f90a1461039157806342842e0e146103a457600080fd5b806318160ddd1161026557806323b872dd1161024a57806323b872dd146103395780632a55205a1461034c5780632f745c591461037e57600080fd5b806318160ddd146103145780631b2996921461032657600080fd5b806301ffc9a71461029757806306fdde03146102bf578063081812fc146102d4578063095ea7b3146102ff575b600080fd5b6102aa6102a5366004612232565b6105ca565b60405190151581526020015b60405180910390f35b6102c7610626565b6040516102b691906122a7565b6102e76102e23660046122ba565b6106b8565b6040516001600160a01b0390911681526020016102b6565b61031261030d3660046122e8565b610756565b005b6003545b6040519081526020016102b6565b610312610334366004612314565b610887565b610312610347366004612331565b6108cf565b61035f61035a366004612372565b610957565b604080516001600160a01b0390931683526020830191909152016102b6565b61031861038c3660046122e8565b6109f8565b61031261039f3660046123a9565b610b56565b6103126103b2366004612331565b610f6c565b6103126103c53660046122ba565b610f87565b6102e761dead81565b6103186103e13660046122ba565b610fe8565b6103126103f43660046123e8565b611066565b600b546102e7906001600160a01b031681565b61041f61041a366004612314565b6110b1565b604080519384526020840192909252908201526060016102b6565b6102e76104483660046122ba565b611259565b61031861045b366004612314565b6112f9565b6103126113e3565b61031860075481565b600a546102e7906001600160a01b031681565b6102aa6104923660046122ba565b60096020526000908152604090205460ff1681565b6006546001600160a01b03166102e7565b6006546104dd9074010000000000000000000000000000000000000000900460ff1681565b60405160ff90911681526020016102b6565b6103126104fd36600461245a565b6113f7565b6102c761144b565b61031261051836600461247d565b61145a565b600c546102e7906001600160a01b031681565b61031261053e36600461250e565b611465565b6102c76105513660046122ba565b6114f3565b600d546102e7906001600160a01b031681565b6103126105773660046125d6565b6115c2565b6102aa61058a3660046125f1565b611601565b6008546102aa9060ff1681565b6103126116e2565b6103126105b23660046122ba565b6116fe565b6103126105c5366004612314565b61179d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061062057506106208261182a565b92915050565b6060600080546106359061262a565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061262a565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b60006106c38261190d565b61073a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076182611259565b9050806001600160a01b0316836001600160a01b0316036107ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610731565b336001600160a01b038216148061080657506108068133611601565b6108785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610731565b6108828383611957565b505050565b61088f6119dd565b600880546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b6108da335b82611a37565b61094c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610731565b610882838383611b12565b6000806109638461190d565b6109af5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610731565b60065473218b622bbe4404c01f972f243952e3a1d2132dec906109ed9074010000000000000000000000000000000000000000900460ff16856126ac565b915091509250929050565b6000610a03836112f9565b8210610a775760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610731565b6000805b600354811015610ae75760038181548110610a9857610a986126e7565b6000918252602090912001546001600160a01b0390811690861603610ad557838203610ac75791506106209050565b81610ad181612716565b9250505b80610adf81612716565b915050610a7b565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610731565b60085460ff16610ba85760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610731565b60008481526009602052604090205460ff1615610c075760405162461bcd60e51b815260206004820152601760248201527f5073696c6f637962696e20616c726561647920757365640000000000000000006044820152606401610731565b600d546040517ff376d0de0000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f376d0de90610c54906002908990600401612730565b6040805180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612775565b50600a546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810188905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610cfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2091906127a3565b6001600160a01b03161480610d3d57506001600160a01b03811633145b610d895760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964205073696c6f637962696e206f776e657200000000000000006044820152606401610731565b8115610e8057600b546040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015261dead6024820152604481018690526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610dfc57600080fd5b505af1925050508015610e0d575060015b610e7b57610e196127c0565b806308c379a003610e6f5750610e2d6127dc565b80610e385750610e71565b80604051602001610e499190612884565b60408051601f198184030181529082905262461bcd60e51b8252610731916004016122a7565b505b3d6000803e3d6000fd5b610f3a565b600c546040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015261dead6024820152604481018590526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610eed57600080fd5b505af1925050508015610efe575060015b610f3a57610f0a6127c0565b806308c379a003610e6f5750610f1e6127dc565b80610f295750610e71565b80604051602001610e4991906128c9565b6000858152600960205260409020805460ff19166001179055610f6533610f6060035490565b611cad565b5050505050565b61088283838360405180602001604052806000815250611465565b610f90336108d4565b610fdc5760405162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610731565b610fe581611ded565b50565b60035460009082106110625760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610731565b5090565b61106e6119dd565b6110ad82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8792505050565b5050565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009283928392909116906370a0823190602401602060405180830381865afa15801561111b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113f919061290e565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529295509116906370a0823190602401602060405180830381865afa1580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061290e565b600c546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529294509116906370a0823190602401602060405180830381865afa15801561122d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611251919061290e565b929491935050565b6000806003838154811061126f5761126f6126e7565b6000918252602090912001546001600160a01b03169050806106205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610731565b60006001600160a01b0382166113775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610731565b6000805b6003548110156113dc57836001600160a01b0316600382815481106113a2576113a26126e7565b6000918252602090912001546001600160a01b0316036113ca57816113c681612716565b9250505b806113d481612716565b91505061137b565b5092915050565b6113eb6119dd565b6113f56000611e93565b565b6113ff6119dd565b6006805460ff90921674010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6060600180546106359061262a565b6110ad338383611efd565b61146f3383611a37565b6114e15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610731565b6114ed84848484611fcb565b50505050565b60606114fe8261190d565b6115705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610731565b600061157a612054565b9050600081511161159a57604051806020016040528060008152506115bb565b806040516020016115ab9190612927565b6040516020818303038152906040525b9392505050565b6115ca6119dd565b60088054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600854600090610100900460ff16156116b4576008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811692620100009004169063c455279190602401602060405180830381865afa15801561167f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a391906127a3565b6001600160a01b0316149050610620565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff166115bb565b6116ea6119dd565b6008805460ff19811660ff90911615179055565b6117066119dd565b600754611714906001612943565b81106117625760405162461bcd60e51b815260206004820152601b60248201527f57696c6c2065786365656420726573657276656420616d6f756e7400000000006044820152606401610731565b8060076000828254611774919061295b565b909155505060035460005b828110156108825761179533610f608385612943565b60010161177f565b6117a56119dd565b6001600160a01b0381166118215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610731565b610fe581611e93565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118bd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610620565b60035460009082108015610620575060006001600160a01b03166003838154811061193a5761193a6126e7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906119a482611259565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146113f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610731565b6000611a428261190d565b611ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610731565b6000611abf83611259565b9050806001600160a01b0316846001600160a01b03161480611afa5750836001600160a01b0316611aef846106b8565b6001600160a01b0316145b80611b0a5750611b0a8185611601565b949350505050565b826001600160a01b0316611b2582611259565b6001600160a01b031614611ba15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610731565b6001600160a01b038216611c1c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610731565b611c27600082611957565b8160038281548110611c3b57611c3b6126e7565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6001600160a01b038216611d035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610731565b611d0c8161190d565b15611d595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610731565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611df882611259565b9050611e05600083611957565b600060038381548110611e1a57611e1a6126e7565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60026110ad82826129c0565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611f5e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610731565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fd6848484611b12565b611fe284848484612063565b6114ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610731565b6060600280546106359061262a565b60006001600160a01b0384163b156121f9576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906120c0903390899088908890600401612a80565b6020604051808303816000875af19250505080156120fb575060408051601f3d908101601f191682019092526120f891810190612abc565b60015b6121ae573d808015612129576040519150601f19603f3d011682016040523d82523d6000602084013e61212e565b606091505b5080516000036121a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610731565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b0a565b506001949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fe557600080fd5b60006020828403121561224457600080fd5b81356115bb81612204565b60005b8381101561226a578181015183820152602001612252565b838111156114ed5750506000910152565b6000815180845261229381602086016020860161224f565b601f01601f19169290920160200192915050565b6020815260006115bb602083018461227b565b6000602082840312156122cc57600080fd5b5035919050565b6001600160a01b0381168114610fe557600080fd5b600080604083850312156122fb57600080fd5b8235612306816122d3565b946020939093013593505050565b60006020828403121561232657600080fd5b81356115bb816122d3565b60008060006060848603121561234657600080fd5b8335612351816122d3565b92506020840135612361816122d3565b929592945050506040919091013590565b6000806040838503121561238557600080fd5b50508035926020909101359150565b803580151581146123a457600080fd5b919050565b600080600080608085870312156123bf57600080fd5b8435935060208501359250604085013591506123dd60608601612394565b905092959194509250565b600080602083850312156123fb57600080fd5b823567ffffffffffffffff8082111561241357600080fd5b818501915085601f83011261242757600080fd5b81358181111561243657600080fd5b86602082850101111561244857600080fd5b60209290920196919550909350505050565b60006020828403121561246c57600080fd5b813560ff811681146115bb57600080fd5b6000806040838503121561249057600080fd5b823561249b816122d3565b91506124a960208401612394565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612507576125076124b2565b6040525050565b6000806000806080858703121561252457600080fd5b843561252f816122d3565b9350602085810135612540816122d3565b935060408601359250606086013567ffffffffffffffff8082111561256457600080fd5b818801915088601f83011261257857600080fd5b81358181111561258a5761258a6124b2565b60405191506125a284601f19601f84011601836124e1565b80825289848285010111156125b657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156125e857600080fd5b6115bb82612394565b6000806040838503121561260457600080fd5b823561260f816122d3565b9150602083013561261f816122d3565b809150509250929050565b600181811c9082168061263e57607f821691505b602082108103612677577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000826126e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060001982036127295761272961267d565b5060010190565b604081016003841061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9281526020015290565b6000806040838503121561278857600080fd5b8251612793816122d3565b6020939093015192949293505050565b6000602082840312156127b557600080fd5b81516115bb816122d3565b600060033d11156127d95760046000803e5060005160e01c5b90565b600060443d10156127ea5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561283857505050505090565b82850191508151818111156128505750505050505090565b843d870101602082850101111561286a5750505050505090565b612879602082860101876124e1565b509095945050505050565b7f4d4554413a2000000000000000000000000000000000000000000000000000008152600082516128bc81600685016020870161224f565b9190910160060192915050565b7f49524c3a2000000000000000000000000000000000000000000000000000000081526000825161290181600585016020870161224f565b9190910160050192915050565b60006020828403121561292057600080fd5b5051919050565b6000825161293981846020870161224f565b9190910192915050565b600082198211156129565761295661267d565b500190565b60008282101561296d5761296d61267d565b500390565b601f82111561088257600081815260208120601f850160051c810160208610156129995750805b601f850160051c820191505b818110156129b8578281556001016129a5565b505050505050565b815167ffffffffffffffff8111156129da576129da6124b2565b6129ee816129e8845461262a565b84612972565b602080601f831160018114612a235760008415612a0b5750858301515b600019600386901b1c1916600185901b1785556129b8565b600085815260208120601f198616915b82811015612a5257888601518255948401946001909101908401612a33565b5085821015612a705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ab2608083018461227b565b9695505050505050565b600060208284031215612ace57600080fd5b81516115bb8161220456fea26469706673582212205d4c3650248dba158d8631def039792fa900daeec41519af6ee77a0d4528a6f764736f6c634300080f003300000000000000000000000011ca9693156929ee2e7e1470c5e1a55b413e900700000000000000000000000022674fd4ce74765c211eec01698fda36f57a650a00000000000000000000000092aa4c9a4f54fe95d0e799687d1da12a7ebca53800000000000000000000000073555a153d301d95a3f90919e645d301f1f9e21900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a695279694372654564475a70344335515074504c51564e4d6d5956613354767a78537957507448636958640000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102925760003560e01c8063715018a611610160578063b82bc97b116100d8578063e985e9c51161008c578063efc4f1dc11610071578063efc4f1dc1461059c578063f19e75d4146105a4578063f2fde38b146105b757600080fd5b8063e985e9c51461057c578063eb8d24441461058f57600080fd5b8063c87b56dd116100bd578063c87b56dd14610543578063da19ddfb14610556578063e43082f71461056957600080fd5b8063b82bc97b1461051d578063b88d4fde1461053057600080fd5b80638da5cb5b1161012f578063901b4ad511610114578063901b4ad5146104ef57806395d89b4114610502578063a22cb4651461050a57600080fd5b80638da5cb5b146104a7578063901b201d146104b857600080fd5b8063715018a61461046057806375006bbd146104685780638a2345d8146104715780638d8e6cd31461048457600080fd5b80633509f90a1161020e57806355f804b3116101c25780635f515226116101a75780635f5152261461040c5780636352211e1461043a57806370a082311461044d57600080fd5b806355f804b3146103e65780635d4e5c8a146103f957600080fd5b806342966c68116101f357806342966c68146103b75780634e6fd6c4146103ca5780634f6ccce7146103d357600080fd5b80633509f90a1461039157806342842e0e146103a457600080fd5b806318160ddd1161026557806323b872dd1161024a57806323b872dd146103395780632a55205a1461034c5780632f745c591461037e57600080fd5b806318160ddd146103145780631b2996921461032657600080fd5b806301ffc9a71461029757806306fdde03146102bf578063081812fc146102d4578063095ea7b3146102ff575b600080fd5b6102aa6102a5366004612232565b6105ca565b60405190151581526020015b60405180910390f35b6102c7610626565b6040516102b691906122a7565b6102e76102e23660046122ba565b6106b8565b6040516001600160a01b0390911681526020016102b6565b61031261030d3660046122e8565b610756565b005b6003545b6040519081526020016102b6565b610312610334366004612314565b610887565b610312610347366004612331565b6108cf565b61035f61035a366004612372565b610957565b604080516001600160a01b0390931683526020830191909152016102b6565b61031861038c3660046122e8565b6109f8565b61031261039f3660046123a9565b610b56565b6103126103b2366004612331565b610f6c565b6103126103c53660046122ba565b610f87565b6102e761dead81565b6103186103e13660046122ba565b610fe8565b6103126103f43660046123e8565b611066565b600b546102e7906001600160a01b031681565b61041f61041a366004612314565b6110b1565b604080519384526020840192909252908201526060016102b6565b6102e76104483660046122ba565b611259565b61031861045b366004612314565b6112f9565b6103126113e3565b61031860075481565b600a546102e7906001600160a01b031681565b6102aa6104923660046122ba565b60096020526000908152604090205460ff1681565b6006546001600160a01b03166102e7565b6006546104dd9074010000000000000000000000000000000000000000900460ff1681565b60405160ff90911681526020016102b6565b6103126104fd36600461245a565b6113f7565b6102c761144b565b61031261051836600461247d565b61145a565b600c546102e7906001600160a01b031681565b61031261053e36600461250e565b611465565b6102c76105513660046122ba565b6114f3565b600d546102e7906001600160a01b031681565b6103126105773660046125d6565b6115c2565b6102aa61058a3660046125f1565b611601565b6008546102aa9060ff1681565b6103126116e2565b6103126105b23660046122ba565b6116fe565b6103126105c5366004612314565b61179d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061062057506106208261182a565b92915050565b6060600080546106359061262a565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061262a565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b60006106c38261190d565b61073a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076182611259565b9050806001600160a01b0316836001600160a01b0316036107ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610731565b336001600160a01b038216148061080657506108068133611601565b6108785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610731565b6108828383611957565b505050565b61088f6119dd565b600880546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b6108da335b82611a37565b61094c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610731565b610882838383611b12565b6000806109638461190d565b6109af5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610731565b60065473218b622bbe4404c01f972f243952e3a1d2132dec906109ed9074010000000000000000000000000000000000000000900460ff16856126ac565b915091509250929050565b6000610a03836112f9565b8210610a775760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610731565b6000805b600354811015610ae75760038181548110610a9857610a986126e7565b6000918252602090912001546001600160a01b0390811690861603610ad557838203610ac75791506106209050565b81610ad181612716565b9250505b80610adf81612716565b915050610a7b565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610731565b60085460ff16610ba85760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610731565b60008481526009602052604090205460ff1615610c075760405162461bcd60e51b815260206004820152601760248201527f5073696c6f637962696e20616c726561647920757365640000000000000000006044820152606401610731565b600d546040517ff376d0de0000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f376d0de90610c54906002908990600401612730565b6040805180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612775565b50600a546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810188905291925033916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610cfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2091906127a3565b6001600160a01b03161480610d3d57506001600160a01b03811633145b610d895760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964205073696c6f637962696e206f776e657200000000000000006044820152606401610731565b8115610e8057600b546040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015261dead6024820152604481018690526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610dfc57600080fd5b505af1925050508015610e0d575060015b610e7b57610e196127c0565b806308c379a003610e6f5750610e2d6127dc565b80610e385750610e71565b80604051602001610e499190612884565b60408051601f198184030181529082905262461bcd60e51b8252610731916004016122a7565b505b3d6000803e3d6000fd5b610f3a565b600c546040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015261dead6024820152604481018590526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610eed57600080fd5b505af1925050508015610efe575060015b610f3a57610f0a6127c0565b806308c379a003610e6f5750610f1e6127dc565b80610f295750610e71565b80604051602001610e4991906128c9565b6000858152600960205260409020805460ff19166001179055610f6533610f6060035490565b611cad565b5050505050565b61088283838360405180602001604052806000815250611465565b610f90336108d4565b610fdc5760405162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646044820152606401610731565b610fe581611ded565b50565b60035460009082106110625760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610731565b5090565b61106e6119dd565b6110ad82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e8792505050565b5050565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03838116600483015260009283928392909116906370a0823190602401602060405180830381865afa15801561111b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113f919061290e565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529295509116906370a0823190602401602060405180830381865afa1580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061290e565b600c546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529294509116906370a0823190602401602060405180830381865afa15801561122d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611251919061290e565b929491935050565b6000806003838154811061126f5761126f6126e7565b6000918252602090912001546001600160a01b03169050806106205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610731565b60006001600160a01b0382166113775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610731565b6000805b6003548110156113dc57836001600160a01b0316600382815481106113a2576113a26126e7565b6000918252602090912001546001600160a01b0316036113ca57816113c681612716565b9250505b806113d481612716565b91505061137b565b5092915050565b6113eb6119dd565b6113f56000611e93565b565b6113ff6119dd565b6006805460ff90921674010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6060600180546106359061262a565b6110ad338383611efd565b61146f3383611a37565b6114e15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610731565b6114ed84848484611fcb565b50505050565b60606114fe8261190d565b6115705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610731565b600061157a612054565b9050600081511161159a57604051806020016040528060008152506115bb565b806040516020016115ab9190612927565b6040516020818303038152906040525b9392505050565b6115ca6119dd565b60088054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600854600090610100900460ff16156116b4576008546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811692620100009004169063c455279190602401602060405180830381865afa15801561167f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a391906127a3565b6001600160a01b0316149050610620565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff166115bb565b6116ea6119dd565b6008805460ff19811660ff90911615179055565b6117066119dd565b600754611714906001612943565b81106117625760405162461bcd60e51b815260206004820152601b60248201527f57696c6c2065786365656420726573657276656420616d6f756e7400000000006044820152606401610731565b8060076000828254611774919061295b565b909155505060035460005b828110156108825761179533610f608385612943565b60010161177f565b6117a56119dd565b6001600160a01b0381166118215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610731565b610fe581611e93565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118bd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610620565b60035460009082108015610620575060006001600160a01b03166003838154811061193a5761193a6126e7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906119a482611259565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146113f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610731565b6000611a428261190d565b611ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610731565b6000611abf83611259565b9050806001600160a01b0316846001600160a01b03161480611afa5750836001600160a01b0316611aef846106b8565b6001600160a01b0316145b80611b0a5750611b0a8185611601565b949350505050565b826001600160a01b0316611b2582611259565b6001600160a01b031614611ba15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610731565b6001600160a01b038216611c1c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610731565b611c27600082611957565b8160038281548110611c3b57611c3b6126e7565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6001600160a01b038216611d035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610731565b611d0c8161190d565b15611d595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610731565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611df882611259565b9050611e05600083611957565b600060038381548110611e1a57611e1a6126e7565b6000918252602082200180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60026110ad82826129c0565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611f5e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610731565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fd6848484611b12565b611fe284848484612063565b6114ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610731565b6060600280546106359061262a565b60006001600160a01b0384163b156121f9576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906120c0903390899088908890600401612a80565b6020604051808303816000875af19250505080156120fb575060408051601f3d908101601f191682019092526120f891810190612abc565b60015b6121ae573d808015612129576040519150601f19603f3d011682016040523d82523d6000602084013e61212e565b606091505b5080516000036121a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610731565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b0a565b506001949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fe557600080fd5b60006020828403121561224457600080fd5b81356115bb81612204565b60005b8381101561226a578181015183820152602001612252565b838111156114ed5750506000910152565b6000815180845261229381602086016020860161224f565b601f01601f19169290920160200192915050565b6020815260006115bb602083018461227b565b6000602082840312156122cc57600080fd5b5035919050565b6001600160a01b0381168114610fe557600080fd5b600080604083850312156122fb57600080fd5b8235612306816122d3565b946020939093013593505050565b60006020828403121561232657600080fd5b81356115bb816122d3565b60008060006060848603121561234657600080fd5b8335612351816122d3565b92506020840135612361816122d3565b929592945050506040919091013590565b6000806040838503121561238557600080fd5b50508035926020909101359150565b803580151581146123a457600080fd5b919050565b600080600080608085870312156123bf57600080fd5b8435935060208501359250604085013591506123dd60608601612394565b905092959194509250565b600080602083850312156123fb57600080fd5b823567ffffffffffffffff8082111561241357600080fd5b818501915085601f83011261242757600080fd5b81358181111561243657600080fd5b86602082850101111561244857600080fd5b60209290920196919550909350505050565b60006020828403121561246c57600080fd5b813560ff811681146115bb57600080fd5b6000806040838503121561249057600080fd5b823561249b816122d3565b91506124a960208401612394565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612507576125076124b2565b6040525050565b6000806000806080858703121561252457600080fd5b843561252f816122d3565b9350602085810135612540816122d3565b935060408601359250606086013567ffffffffffffffff8082111561256457600080fd5b818801915088601f83011261257857600080fd5b81358181111561258a5761258a6124b2565b60405191506125a284601f19601f84011601836124e1565b80825289848285010111156125b657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156125e857600080fd5b6115bb82612394565b6000806040838503121561260457600080fd5b823561260f816122d3565b9150602083013561261f816122d3565b809150509250929050565b600181811c9082168061263e57607f821691505b602082108103612677577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000826126e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060001982036127295761272961267d565b5060010190565b604081016003841061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9281526020015290565b6000806040838503121561278857600080fd5b8251612793816122d3565b6020939093015192949293505050565b6000602082840312156127b557600080fd5b81516115bb816122d3565b600060033d11156127d95760046000803e5060005160e01c5b90565b600060443d10156127ea5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561283857505050505090565b82850191508151818111156128505750505050505090565b843d870101602082850101111561286a5750505050505090565b612879602082860101876124e1565b509095945050505050565b7f4d4554413a2000000000000000000000000000000000000000000000000000008152600082516128bc81600685016020870161224f565b9190910160060192915050565b7f49524c3a2000000000000000000000000000000000000000000000000000000081526000825161290181600585016020870161224f565b9190910160050192915050565b60006020828403121561292057600080fd5b5051919050565b6000825161293981846020870161224f565b9190910192915050565b600082198211156129565761295661267d565b500190565b60008282101561296d5761296d61267d565b500390565b601f82111561088257600081815260208120601f850160051c810160208610156129995750805b601f850160051c820191505b818110156129b8578281556001016129a5565b505050505050565b815167ffffffffffffffff8111156129da576129da6124b2565b6129ee816129e8845461262a565b84612972565b602080601f831160018114612a235760008415612a0b5750858301515b600019600386901b1c1916600185901b1785556129b8565b600085815260208120601f198616915b82811015612a5257888601518255948401946001909101908401612a33565b5085821015612a705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ab2608083018461227b565b9695505050505050565b600060208284031215612ace57600080fd5b81516115bb8161220456fea26469706673582212205d4c3650248dba158d8631def039792fa900daeec41519af6ee77a0d4528a6f764736f6c634300080f0033

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

00000000000000000000000011ca9693156929ee2e7e1470c5e1a55b413e900700000000000000000000000022674fd4ce74765c211eec01698fda36f57a650a00000000000000000000000092aa4c9a4f54fe95d0e799687d1da12a7ebca53800000000000000000000000073555a153d301d95a3f90919e645d301f1f9e21900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a695279694372654564475a70344335515074504c51564e4d6d5956613354767a78537957507448636958640000000000000000000000

-----Decoded View---------------
Arg [0] : _psilo (address): 0x11ca9693156929EE2e7E1470C5E1A55b413e9007
Arg [1] : _meta (address): 0x22674fd4CE74765C211EeC01698fda36f57A650A
Arg [2] : _irl (address): 0x92AA4c9A4f54Fe95d0e799687D1Da12A7EBca538
Arg [3] : _staker (address): 0x73555A153d301d95A3f90919e645D301F1f9E219
Arg [4] : _uri (string): ipfs://QmZiRyiCreEdGZp4C5QPtPLQVNMmYVa3TvzxSyWPtHciXd

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000011ca9693156929ee2e7e1470c5e1a55b413e9007
Arg [1] : 00000000000000000000000022674fd4ce74765c211eec01698fda36f57a650a
Arg [2] : 00000000000000000000000092aa4c9a4f54fe95d0e799687d1da12a7ebca538
Arg [3] : 00000000000000000000000073555a153d301d95a3f90919e645d301f1f9e219
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d5a695279694372654564475a70344335515074504c5156
Arg [7] : 4e4d6d5956613354767a78537957507448636958640000000000000000000000


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.