ETH Price: $3,294.13 (-4.90%)

Obelisk (OBELISK)
 

Overview

TokenID

3

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
Obelisk

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Obelisk.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import '@openzeppelin/contracts/utils/math/Math.sol';

pragma solidity ^0.8.0;

interface IVRFv2SubscriptionManager {
    function requestRandomWords() external returns(uint256);
}

contract Obelisk is ERC1155, Ownable {

    using Strings for uint256;

    string public constant NAME = "Obelisk";
    string public constant SYMBOL = "OBELISK";

    address public tropyAddress;

    string public baseTokenURI;
    
    uint256 public maxSupply = 2400;
    uint256 public maxSupplyperID = 500;
    uint256 public maxTokenID = 4;
    uint256 public rewardRatePerDay = 20000000000000000000; // 20 $TROPY
    uint256 public totalNum = 1;

    uint256 private oneDay = 1 days;

    bool public paused = false;
    bytes32 internal entropySauce;

    uint256[] public initTropyAmountToMint = [90, 120, 150, 180, 210, 240, 270, 300];
    uint256 public totalMinted = 0;

    mapping(uint8 => uint256) public supplies;
    mapping(address => uint256) public amountPerWallets;
    address public stakingAddress = address(0);

    struct HOLDINFO{
        uint256 rewardLockup;
        uint256 depositTime;
    }
    mapping(address => mapping(uint256 => HOLDINFO)) public holdInfo;
    mapping(address => uint256) public genesisInfo;

    IVRFv2SubscriptionManager public vrfRandomGenerator;

    modifier onlyNotPaused() {
        require(!paused, '1');
        _;
    }

    modifier noCheaters() {
        uint256 size = 0;
        address acc = msg.sender;
        assembly { size := extcodesize(acc)}
        require( (msg.sender == tx.origin && size == 0), "9");
        _;
        // We'll use the last caller hash to add entropy to next caller
        entropySauce = keccak256(abi.encodePacked(acc, block.coinbase));
    }

    modifier onlyStakingContract() {
        require(msg.sender == stakingAddress, 'Only Staking contract can call this function.');
        _;
    }

    event TropyAddressChanged(address indexed owner, address indexed tropyAddress);
    event StakingAddressChanged(address indexed owner, address indexed stakingAddress);

    constructor(string memory _baseTokenURI, address _tropyAddress, address _vrfRandomGenerator) ERC1155(_baseTokenURI) {
        setBaseURI(_baseTokenURI);
        changeTropyAddress(_tropyAddress);
        vrfRandomGenerator = IVRFv2SubscriptionManager(_vrfRandomGenerator);
    }

    function name() public pure returns (string memory) {
        return NAME;
    }

    function symbol() public pure returns (string memory) {
        return SYMBOL;
    }

    function changeTropyAddress(address _tropyAddress) public onlyOwner {
        tropyAddress = _tropyAddress;
        emit TropyAddressChanged(msg.sender, tropyAddress);
    }

    function changeStakingAddress(address _stakingAddress) public onlyOwner {
        stakingAddress = _stakingAddress;
        emit StakingAddressChanged(msg.sender, stakingAddress);
    }

    function getRewardNum(address _account) public view returns(uint256) {
        if (genesisInfo[_account] == 0) return 0;
        uint256 rewardAmount = 0;
        for(uint256 id = 1; id <= maxTokenID; id++) {
            HOLDINFO memory info = holdInfo[_account][id];
            rewardAmount = rewardAmount + info.rewardLockup + balanceOf(_account, id) * (block.timestamp - Math.max(genesisInfo[_account], info.depositTime)) * rewardRatePerDay / oneDay;
        }
        return rewardAmount;
    }

    function getDailyRewardOfUser(address _account) public view returns(uint256) {
        if (genesisInfo[_account] == 0) return 0;
        uint256 rewardAmount = 0;
        for(uint256 id = 1; id <= maxTokenID; id++) {
            rewardAmount = rewardAmount + balanceOf(_account, id) * rewardRatePerDay;
        }
        return rewardAmount;
    }

    function reSetRewardInfo(address _account) internal {
        for(uint256 id = 1; id <= maxTokenID; id++) {
            HOLDINFO storage info = holdInfo[_account][id];
            info.rewardLockup = 0;
            info.depositTime = block.timestamp;
        }    
    }

  /// @dev Overridden to handle secondary sales
    function _beforeTokenTransfer(
        address,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory
    ) internal virtual override {
        for(uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            if(amount <= 0) continue;
            
            if(from != address(0) && balanceOf(from, id) > 0) {       
                HOLDINFO storage fromInfo = holdInfo[from][id];
                if (genesisInfo[from] != 0) {
                    fromInfo.rewardLockup = fromInfo.rewardLockup + balanceOf(from, id) * (block.timestamp - Math.max(genesisInfo[from], fromInfo.depositTime)) * rewardRatePerDay / oneDay;
                    fromInfo.depositTime = block.timestamp;
                }
            }

            if(to != address(0)) {
                HOLDINFO storage toInfo = holdInfo[to][id];
                if (genesisInfo[to] != 0) {
                    toInfo.rewardLockup = toInfo.rewardLockup + balanceOf(to, id) * (block.timestamp - Math.max(genesisInfo[to], toInfo.depositTime)) * rewardRatePerDay / oneDay;
                    toInfo.depositTime = block.timestamp;
                }
            }            
        }
    }

  /// @notice Get Tropy Amount To Mint
  /// @dev $TROPY cost for obelisks increases based on both:
  ///              - amount held by wallet  
  ///              - and total supply of obelisks
  ///       Used by Dapp.
    function getInitTropyAmountToMint() public view returns (uint256) {
        uint256 _initTropyAmountToMint = 90;
        if(totalMinted < 300) {
            _initTropyAmountToMint = initTropyAmountToMint[0];
        } else if(totalMinted < 600) {
            _initTropyAmountToMint = initTropyAmountToMint[1];
        } else if(totalMinted < 900) {
            _initTropyAmountToMint = initTropyAmountToMint[2];
        } else if(totalMinted < 1200) {
            _initTropyAmountToMint = initTropyAmountToMint[3];
        } else if(totalMinted < 1500) {
            _initTropyAmountToMint = initTropyAmountToMint[4];
        } else if(totalMinted < 1800) {
            _initTropyAmountToMint = initTropyAmountToMint[5];
        } else if(totalMinted < 2100) {
            _initTropyAmountToMint = initTropyAmountToMint[6];
        } else if(totalMinted <= 2400) {
            _initTropyAmountToMint = initTropyAmountToMint[7];
        }
        return _initTropyAmountToMint * (10 ** 18);
    }

  /// @notice Get Tropy Amount To Mint
  /// @dev $TROPY cost for obelisks increases based on both:
  ///              - amount held by wallet  
  ///              - and total supply of obelisks
    function getTropyAmountToMint(address add, uint256 amount) public view returns (uint256) {
        uint256 tropyAmount;
        uint256 _initTropyAmountToMint = getInitTropyAmountToMint();
        uint256 amountFuture = amountPerWallets[add] + amount;

        if(amountFuture <= 3) {
            tropyAmount = _initTropyAmountToMint * amount;
        } else {
            uint256 addCount;
            if(amountPerWallets[add] == 0) {
                tropyAmount = _initTropyAmountToMint * 2;
                addCount = amount - 2;
            }
            else if(amountPerWallets[add] == 1) {
                tropyAmount = _initTropyAmountToMint * 1;
                addCount = amount - 1;
            }
            else if(amountPerWallets[add] == 2) {
                addCount = amount;
            } else {
                addCount = amount;
                _initTropyAmountToMint = _initTropyAmountToMint + (amountPerWallets[add] - 2) * 30 * (10 ** 18);
            }
            uint256 amountToAdd = (_initTropyAmountToMint * 2 + (addCount - 1) * 30 * (10 ** 18) ) * addCount / 2;
            tropyAmount += amountToAdd;
        }
        return tropyAmount;
    }


    function mint(uint256 amount) public onlyNotPaused noCheaters {
        uint256 tropyAmountToMint = getTropyAmountToMint(msg.sender, amount);
        bool transferResult = IERC20(tropyAddress).transferFrom(msg.sender, address(this), tropyAmountToMint);
        require(transferResult, "10");
        require(totalMinted + amount <= maxSupply, "11");
        amountPerWallets[msg.sender] += amount;
        totalMinted += amount;

        if(transferResult){
            for(uint256 i = 0; i < amount;) {
                uint256 randomID = getRandomID();
                _mint(msg.sender, randomID, 1, "");
                unchecked{ i++; }
            }
        }
    }

  function _rand() internal view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(msg.sender, block.timestamp, block.basefee, block.timestamp, entropySauce)));
  }

  function random(uint256 seed) public view returns (uint256) {
    return uint256(keccak256(abi.encodePacked(
            tx.origin,
            blockhash(block.number - 1),
            block.timestamp,
            seed
      ))); //  ^ randomSource.seed();
  }

  function requestRandomWords() internal returns(uint256) {
    totalNum = totalNum + 1;
    return random(block.timestamp + totalNum);
  }

    function getRandomID() public returns(uint256) {
        uint256 randomNum = requestRandomWords();
        randomNum = (randomNum & 0xFFFF);
        uint256 randomID;
        if(randomNum < 16384) randomID = 1;
        else if(randomNum >= 16384 && randomNum < 32768) randomID = 2;
        else if(randomNum >= 32768 && randomNum < 49152) randomID = 3;
        else randomID = 4;
        return randomID;
    }

    function burn(address from, uint256 id, uint256 amount) external {
        _burn(from, id, amount);
    }

    function _baseURI() internal view virtual returns (string memory) {
        return baseTokenURI;
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        require(tokenId > 0 && tokenId <= maxTokenID, "Obelisk: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function approve(address tokenAddress, address spender, uint256 amount) public onlyOwner returns (bool) {
        IERC20(tokenAddress).approve(spender, amount);
        return true;
    }
    function recoverTropy() external onlyOwner {
        uint256 tokenAmount = IERC20(tropyAddress).balanceOf(address(this));
        IERC20(tropyAddress).transfer(this.owner(), tokenAmount);
    }

    function stakeGenesis(address _account) external onlyStakingContract {
        genesisInfo[_account] = block.timestamp;
        reSetRewardInfo(_account);
    }

    function unStakeGenesis(address _account) external onlyStakingContract {
        genesisInfo[_account] = 0;
    }

    function harvest(address _account) external onlyStakingContract {
        genesisInfo[_account] = block.timestamp;
    }

    function withdraw() public payable onlyOwner {
      (bool os, ) = payable(owner()).call{value: address(this).balance}("");
      require(os);
    }
}

File 2 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

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

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 4 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 13 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 7 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"_tropyAddress","type":"address"},{"internalType":"address","name":"_vrfRandomGenerator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"stakingAddress","type":"address"}],"name":"StakingAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"tropyAddress","type":"address"}],"name":"TropyAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountPerWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"}],"name":"changeStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tropyAddress","type":"address"}],"name":"changeTropyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genesisInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getDailyRewardOfUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInitTropyAmountToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandomID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getRewardNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getTropyAmountToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"holdInfo","outputs":[{"internalType":"uint256","name":"rewardLockup","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"initTropyAmountToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyperID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seed","type":"uint256"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverTropy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardRatePerDay","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"stakeGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"supplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tropyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unStakeGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vrfRandomGenerator","outputs":[{"internalType":"contract IVRFv2SubscriptionManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6109606006556101f4600755600460089081556801158e460913d000006009556001600a5562015180600b55600c805460ff19169055610180604052605a6080908152607860a052609660c05260b460e05260d26101005260f06101205261010e6101405261012c610160526200007a91600e91906200027d565b506000600f55601280546001600160a01b03191690553480156200009d57600080fd5b506040516200398e3803806200398e833981016040819052620000c09162000384565b82620000cc8162000117565b50620000d83362000130565b620000e38362000182565b620000ee82620001e6565b601580546001600160a01b0319166001600160a01b039290921691909117905550620004da9050565b80516200012c906002906020840190620002d3565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001d15760405162461bcd60e51b815260206004820181905260248201526000805160206200396e83398151915260448201526064015b60405180910390fd5b80516200012c906005906020840190620002d3565b6003546001600160a01b03163314620002315760405162461bcd60e51b815260206004820181905260248201526000805160206200396e8339815191526044820152606401620001c8565b600480546001600160a01b0319166001600160a01b03831690811790915560405133907f424cc3ddfb515c24c4b354cfd9b8e3e3795069062e02fdff3e73cd6b99c5f60390600090a350565b828054828255906000526020600020908101928215620002c1579160200282015b82811115620002c1578251829061ffff169055916020019190600101906200029e565b50620002cf92915062000350565b5090565b828054620002e19062000487565b90600052602060002090601f016020900481019282620003055760008555620002c1565b82601f106200032057805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c157825182559160200191906001019062000333565b5b80821115620002cf576000815560010162000351565b80516001600160a01b03811681146200037f57600080fd5b919050565b6000806000606084860312156200039a57600080fd5b83516001600160401b0380821115620003b257600080fd5b818601915086601f830112620003c757600080fd5b815181811115620003dc57620003dc620004c4565b604051601f8201601f19908116603f01168101908382118183101715620004075762000407620004c4565b816040528281526020935089848487010111156200042457600080fd5b600091505b8282101562000448578482018401518183018501529083019062000429565b828211156200045a5760008484830101525b96506200046c91505086820162000367565b935050506200047e6040850162000367565b90509250925092565b600181811c908216806200049c57607f821691505b60208210811415620004be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61348480620004ea6000396000f3fe6080604052600436106102ac5760003560e01c80638da5cb5b11610175578063d63de69c116100dc578063e985e9c511610095578063f3a8be7a1161006f578063f3a8be7a146108c4578063f5298aca146108e4578063f76f8d7814610904578063f9d1a04e1461093757600080fd5b8063e985e9c51461083b578063f242432a14610884578063f2fde38b146108a457600080fd5b8063d63de69c14610761578063d7b4be2414610781578063dbaae913146107a1578063df602c03146107ce578063e1f21c67146107fb578063e7a905361461081b57600080fd5b8063b1ceff301161012e578063b1ceff30146106b6578063b863bd37146106d6578063d36b6fa3146106f6578063d547cfb714610716578063d5abeb011461072b578063d5f6bd651461074157600080fd5b80638da5cb5b146105cb57806395d89b41146105fd578063a0712d681461062d578063a22cb4651461064d578063a2309ff81461066d578063a3f4df7e1461068357600080fd5b80633ccfd60b116102195780635c163d24116101d25780635c163d24146104e55780635c975abb146105395780636a9e18a614610553578063715018a6146105805780637cc8251c1461059557806381db0a49146105ab57600080fd5b80633ccfd60b1461043a5780633fabddea146104425780634e1273f4146104625780635517c30f1461048f57806355f804b3146104af5780635a570c0c146104cf57600080fd5b806306fdde031161026b57806306fdde03146103765780630d43d65e146103af5780630e5c011e146103c45780630e89341c146103e45780632eb2c2d61461040457806337de060e1461042457600080fd5b8062783b55146102b1578062fdd58e146102c857806301ffc9a7146102fb57806302329a291461032b57806304a7ff181461034b578063050dad8c14610361575b600080fd5b3480156102bd57600080fd5b506102c6610957565b005b3480156102d457600080fd5b506102e86102e3366004612c8e565b610b13565b6040519081526020015b60405180910390f35b34801561030757600080fd5b5061031b610316366004612dfc565b610ba5565b60405190151581526020016102f2565b34801561033757600080fd5b506102c6610346366004612dc2565b610bf7565b34801561035757600080fd5b506102e8600a5481565b34801561036d57600080fd5b506102e8610c34565b34801561038257600080fd5b506040805180820190915260078152664f62656c69736b60c81b60208201525b6040516102f2919061305e565b3480156103bb57600080fd5b506102e8610d72565b3480156103d057600080fd5b506102c66103df366004612a95565b610de0565b3480156103f057600080fd5b506103a26103ff366004612e7f565b610e26565b34801561041057600080fd5b506102c661041f366004612b08565b610ef3565b34801561043057600080fd5b506102e860095481565b6102c6610f8a565b34801561044e57600080fd5b506102e861045d366004612e7f565b611028565b34801561046e57600080fd5b5061048261047d366004612cef565b611049565b6040516102f2919061301d565b34801561049b57600080fd5b506102c66104aa366004612a95565b611173565b3480156104bb57600080fd5b506102c66104ca366004612e36565b6111b7565b3480156104db57600080fd5b506102e860085481565b3480156104f157600080fd5b50610524610500366004612c8e565b60136020908152600092835260408084209091529082529020805460019091015482565b604080519283526020830191909152016102f2565b34801561054557600080fd5b50600c5461031b9060ff1681565b34801561055f57600080fd5b506102e861056e366004612eb1565b60106020526000908152604090205481565b34801561058c57600080fd5b506102c66111f4565b3480156105a157600080fd5b506102e860075481565b3480156105b757600080fd5b506102c66105c6366004612a95565b61122a565b3480156105d757600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016102f2565b34801561060957600080fd5b506040805180820190915260078152664f42454c49534b60c81b60208201526103a2565b34801561063957600080fd5b506102c6610648366004612e7f565b6112a0565b34801561065957600080fd5b506102c6610668366004612c60565b6114f9565b34801561067957600080fd5b506102e8600f5481565b34801561068f57600080fd5b506103a2604051806040016040528060078152602001664f62656c69736b60c81b81525081565b3480156106c257600080fd5b506102e86106d1366004612a95565b611504565b3480156106e257600080fd5b506102e86106f1366004612e7f565b6115f9565b34801561070257600080fd5b506102c6610711366004612a95565b611658565b34801561072257600080fd5b506103a26116ce565b34801561073757600080fd5b506102e860065481565b34801561074d57600080fd5b506102e861075c366004612a95565b61175c565b34801561076d57600080fd5b506102e861077c366004612c8e565b6117c4565b34801561078d57600080fd5b506012546105e5906001600160a01b031681565b3480156107ad57600080fd5b506102e86107bc366004612a95565b60116020526000908152604090205481565b3480156107da57600080fd5b506102e86107e9366004612a95565b60146020526000908152604090205481565b34801561080757600080fd5b5061031b610816366004612bb6565b611974565b34801561082757600080fd5b506015546105e5906001600160a01b031681565b34801561084757600080fd5b5061031b610856366004612acf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561089057600080fd5b506102c661089f366004612bf7565b611a2e565b3480156108b057600080fd5b506102c66108bf366004612a95565b611ab5565b3480156108d057600080fd5b506004546105e5906001600160a01b031681565b3480156108f057600080fd5b506102c66108ff366004612cba565b611b4d565b34801561091057600080fd5b506103a2604051806040016040528060078152602001664f42454c49534b60c81b81525081565b34801561094357600080fd5b506102c6610952366004612a95565b611b5d565b6003546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190613195565b60405180910390fd5b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b1580156109d357600080fd5b505afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190612e98565b6004805460408051638da5cb5b60e01b815290519394506001600160a01b039091169263a9059cbb923092638da5cb5b9281830192602092829003018186803b158015610a5757600080fd5b505afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f9190612ab2565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b158015610ad757600080fd5b505af1158015610aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0f9190612ddf565b5050565b60006001600160a01b038316610b7f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610981565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610bd657506001600160e01b031982166303a24d0760e21b145b80610bf157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b03163314610c215760405162461bcd60e51b815260040161098190613195565b600c805460ff1916911515919091179055565b600080605a905061012c600f541015610c6d57600e600081548110610c5b57610c5b613343565b90600052602060002001549050610d5a565b610258600f541015610c8d57600e600181548110610c5b57610c5b613343565b610384600f541015610cad57600e600281548110610c5b57610c5b613343565b6104b0600f541015610ccd57600e600381548110610c5b57610c5b613343565b6105dc600f541015610ced57600e600481548110610c5b57610c5b613343565b610708600f541015610d0d57600e600581548110610c5b57610c5b613343565b610834600f541015610d2d57600e600681548110610c5b57610c5b613343565b610960600f5411610d5a57600e600781548110610d4c57610d4c613343565b906000526020600020015490505b610d6c81670de0b6b3a764000061321a565b91505090565b600080610d7d611bab565b61ffff1690506000614000821015610d9757506001610bf1565b6140008210158015610daa575061800082105b15610db757506002610bf1565b6180008210158015610dca575061c00082105b15610dd757506003610bf1565b50600492915050565b6012546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161098190613148565b6001600160a01b03166000908152601460205260409020429055565b6060600082118015610e3a57506008548211155b610e975760405162461bcd60e51b815260206004820152602860248201527f4f62656c69736b3a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b6064820152608401610981565b6000610ea1611bd4565b90506000815111610ec15760405180602001604052806000815250610eec565b80610ecb84611c66565b604051602001610edc929190612f3b565b6040516020818303038152906040525b9392505050565b6001600160a01b038516331480610f0f5750610f0f8533610856565b610f765760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610981565b610f838585858585611d6c565b5050505050565b6003546001600160a01b03163314610fb45760405162461bcd60e51b815260040161098190613195565b6000610fc86003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061102557600080fd5b50565b600e818154811061103857600080fd5b600091825260209091200154905081565b606081518351146110ae5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610981565b6000835167ffffffffffffffff8111156110ca576110ca613359565b6040519080825280602002602001820160405280156110f3578160200160208202803683370190505b50905060005b845181101561116b5761113e85828151811061111757611117613343565b602002602001015185838151811061113157611131613343565b6020026020010151610b13565b82828151811061115057611150613343565b6020908102919091010152611164816132e8565b90506110f9565b509392505050565b6012546001600160a01b0316331461119d5760405162461bcd60e51b815260040161098190613148565b6001600160a01b0316600090815260146020526040812055565b6003546001600160a01b031633146111e15760405162461bcd60e51b815260040161098190613195565b8051610b0f906005906020840190612907565b6003546001600160a01b0316331461121e5760405162461bcd60e51b815260040161098190613195565b6112286000611f57565b565b6003546001600160a01b031633146112545760405162461bcd60e51b815260040161098190613195565b601280546001600160a01b0319166001600160a01b03831690811790915560405133907f6fccb2395fb1e669015abf21302a9c315022eb6dc165163fe4f1620e6338e65e90600090a350565b600c5460ff16156112d75760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610981565b33803b9032811480156112e8575081155b6113185760405162461bcd60e51b81526020600482015260016024820152603960f81b6044820152606401610981565b600061132433856117c4565b600480546040516323b872dd60e01b81523392810192909252306024830152604482018390529192506000916001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561137d57600080fd5b505af1158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190612ddf565b9050806113e95760405162461bcd60e51b8152602060048201526002602482015261031360f41b6044820152606401610981565b60065485600f546113fa91906131ee565b111561142d5760405162461bcd60e51b8152602060048201526002602482015261313160f01b6044820152606401610981565b336000908152601160205260408120805487929061144c9084906131ee565b9250508190555084600f600082825461146591906131ee565b909155505080156114ae5760005b858110156114ac576000611485610d72565b90506114a33382600160405180602001604052806000815250611fa9565b50600101611473565b505b50506040516bffffffffffffffffffffffff19606083811b8216602084015241901b16603482015260480160408051601f198184030181529190528051602090910120600d55505050565b610b0f3383836120b9565b6001600160a01b03811660009081526014602052604081205461152957506000919050565b600060015b60085481116115f2576001600160a01b038416600081815260136020908152604080832085845282528083208151808301835281548152600190910154818401908152600b5460095496865260149094529190932054905192939192611594919061219a565b61159e9042613239565b6115a88886610b13565b6115b2919061321a565b6115bc919061321a565b6115c69190613206565b81516115d290856131ee565b6115dc91906131ee565b92505080806115ea906132e8565b91505061152e565b5092915050565b600032611607600143613239565b60405160609290921b6bffffffffffffffffffffffff191660208301524060348201524260548201526074810183905260940160408051601f19818403018152919052805160209091012092915050565b6003546001600160a01b031633146116825760405162461bcd60e51b815260040161098190613195565b600480546001600160a01b0319166001600160a01b03831690811790915560405133907f424cc3ddfb515c24c4b354cfd9b8e3e3795069062e02fdff3e73cd6b99c5f60390600090a350565b600580546116db90613280565b80601f016020809104026020016040519081016040528092919081815260200182805461170790613280565b80156117545780601f1061172957610100808354040283529160200191611754565b820191906000526020600020905b81548152906001019060200180831161173757829003601f168201915b505050505081565b6001600160a01b03811660009081526014602052604081205461178157506000919050565b600060015b60085481116115f25760095461179c8583610b13565b6117a6919061321a565b6117b090836131ee565b9150806117bc816132e8565b915050611786565b60008060006117d1610c34565b6001600160a01b038616600090815260116020526040812054919250906117f99086906131ee565b9050600381116118145761180d858361321a565b925061196a565b6001600160a01b0386166000908152601160205260408120546118505761183c83600261321a565b9350611849600287613239565b9050611903565b6001600160a01b038716600090815260116020526040902054600114156118895761187c83600161321a565b9350611849600187613239565b6001600160a01b038716600090815260116020526040902054600214156118b1575084611903565b506001600160a01b03861660009081526011602052604090205485906118d990600290613239565b6118e490601e61321a565b6118f690670de0b6b3a764000061321a565b61190090846131ee565b92505b6000600282611913600182613239565b61191e90601e61321a565b61193090670de0b6b3a764000061321a565b61193b87600261321a565b61194591906131ee565b61194f919061321a565b6119599190613206565b905061196581866131ee565b945050505b5090949350505050565b6003546000906001600160a01b031633146119a15760405162461bcd60e51b815260040161098190613195565b60405163095ea7b360e01b81526001600160a01b0384811660048301526024820184905285169063095ea7b390604401602060405180830381600087803b1580156119eb57600080fd5b505af11580156119ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a239190612ddf565b506001949350505050565b6001600160a01b038516331480611a4a5750611a4a8533610856565b611aa85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610981565b610f8385858585856121b1565b6003546001600160a01b03163314611adf5760405162461bcd60e51b815260040161098190613195565b6001600160a01b038116611b445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b61102581611f57565b611b588383836122ce565b505050565b6012546001600160a01b03163314611b875760405162461bcd60e51b815260040161098190613148565b6001600160a01b038116600090815260146020526040902042905561102581612447565b6000600a546001611bbc91906131ee565b600a819055611bcf906106f190426131ee565b905090565b606060058054611be390613280565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0f90613280565b8015611c5c5780601f10611c3157610100808354040283529160200191611c5c565b820191906000526020600020905b815481529060010190602001808311611c3f57829003601f168201915b5050505050905090565b606081611c8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb45780611c9e816132e8565b9150611cad9050600a83613206565b9150611c8e565b60008167ffffffffffffffff811115611ccf57611ccf613359565b6040519080825280601f01601f191660200182016040528015611cf9576020820181803683370190505b5090505b8415611d6457611d0e600183613239565b9150611d1b600a86613303565b611d269060306131ee565b60f81b818381518110611d3b57611d3b613343565b60200101906001600160f81b031916908160001a905350611d5d600a86613206565b9450611cfd565b949350505050565b8151835114611dce5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610981565b6001600160a01b038416611df45760405162461bcd60e51b8152600401610981906130b9565b33611e03818787878787612492565b60005b8451811015611ee9576000858281518110611e2357611e23613343565b602002602001015190506000858381518110611e4157611e41613343565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611e915760405162461bcd60e51b8152600401610981906130fe565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ece9084906131ee565b9250508190555050505080611ee2906132e8565b9050611e06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f39929190613030565b60405180910390a4611f4f818787878787612687565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166120095760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610981565b336120298160008761201a886127f2565b612023886127f2565b87612492565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906120599084906131ee565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f838160008787878761283d565b816001600160a01b0316836001600160a01b0316141561212d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610981565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818310156121aa5781610eec565b5090919050565b6001600160a01b0384166121d75760405162461bcd60e51b8152600401610981906130b9565b336121e781878761201a886127f2565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122285760405162461bcd60e51b8152600401610981906130fe565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906122659084906131ee565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122c582888888888861283d565b50505050505050565b6001600160a01b0383166123305760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610981565b3361235f81856000612341876127f2565b61234a876127f2565b60405180602001604052806000815250612492565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123dc5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610981565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60015b6008548111610b0f576001600160a01b03821660009081526013602090815260408083208484529091528120908155426001909101558061248a816132e8565b91505061244a565b60005b83518110156122c55760008482815181106124b2576124b2613343565b6020026020010151905060008483815181106124d0576124d0613343565b60200260200101519050600081116124e9575050612675565b6001600160a01b0388161580159061250a575060006125088984610b13565b115b156125b9576001600160a01b038816600081815260136020908152604080832086845282528083209383526014909152902054156125b757600b546009546001600160a01b038b166000908152601460205260409020546001840154612570919061219a565b61257a9042613239565b6125848c87610b13565b61258e919061321a565b612598919061321a565b6125a29190613206565b81546125ae91906131ee565b81554260018201555b505b6001600160a01b03871615612672576001600160a01b0387166000818152601360209081526040808320868452825280832093835260149091529020541561267057600b546009546001600160a01b038a166000908152601460205260409020546001840154612629919061219a565b6126339042613239565b61263d8b87610b13565b612647919061321a565b612651919061321a565b61265b9190613206565b815461266791906131ee565b81554260018201555b505b50505b8061267f816132e8565b915050612495565b6001600160a01b0384163b15611f4f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126cb9089908990889088908890600401612f7a565b602060405180830381600087803b1580156126e557600080fd5b505af1925050508015612715575060408051601f3d908101601f1916820190925261271291810190612e19565b60015b6127c25761272161336f565b806308c379a0141561275b575061273661338b565b80612741575061275d565b8060405162461bcd60e51b8152600401610981919061305e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610981565b6001600160e01b0319811663bc197c8160e01b146122c55760405162461bcd60e51b815260040161098190613071565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061282c5761282c613343565b602090810291909101015292915050565b6001600160a01b0384163b15611f4f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906128819089908990889088908890600401612fd8565b602060405180830381600087803b15801561289b57600080fd5b505af19250505080156128cb575060408051601f3d908101601f191682019092526128c891810190612e19565b60015b6128d75761272161336f565b6001600160e01b0319811663f23a6e6160e01b146122c55760405162461bcd60e51b815260040161098190613071565b82805461291390613280565b90600052602060002090601f016020900481019282612935576000855561297b565b82601f1061294e57805160ff191683800117855561297b565b8280016001018555821561297b579182015b8281111561297b578251825591602001919060010190612960565b5061298792915061298b565b5090565b5b80821115612987576000815560010161298c565b600067ffffffffffffffff8311156129ba576129ba613359565b6040516129d1601f8501601f1916602001826132bb565b8091508381528484840111156129e657600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612a0f57600080fd5b81356020612a1c826131ca565b604051612a2982826132bb565b8381528281019150858301600585901b87018401881015612a4957600080fd5b60005b85811015612a6857813584529284019290840190600101612a4c565b5090979650505050505050565b600082601f830112612a8657600080fd5b610eec838335602085016129a0565b600060208284031215612aa757600080fd5b8135610eec81613415565b600060208284031215612ac457600080fd5b8151610eec81613415565b60008060408385031215612ae257600080fd5b8235612aed81613415565b91506020830135612afd81613415565b809150509250929050565b600080600080600060a08688031215612b2057600080fd5b8535612b2b81613415565b94506020860135612b3b81613415565b9350604086013567ffffffffffffffff80821115612b5857600080fd5b612b6489838a016129fe565b94506060880135915080821115612b7a57600080fd5b612b8689838a016129fe565b93506080880135915080821115612b9c57600080fd5b50612ba988828901612a75565b9150509295509295909350565b600080600060608486031215612bcb57600080fd5b8335612bd681613415565b92506020840135612be681613415565b929592945050506040919091013590565b600080600080600060a08688031215612c0f57600080fd5b8535612c1a81613415565b94506020860135612c2a81613415565b93506040860135925060608601359150608086013567ffffffffffffffff811115612c5457600080fd5b612ba988828901612a75565b60008060408385031215612c7357600080fd5b8235612c7e81613415565b91506020830135612afd8161342a565b60008060408385031215612ca157600080fd5b8235612cac81613415565b946020939093013593505050565b600080600060608486031215612ccf57600080fd5b8335612cda81613415565b95602085013595506040909401359392505050565b60008060408385031215612d0257600080fd5b823567ffffffffffffffff80821115612d1a57600080fd5b818501915085601f830112612d2e57600080fd5b81356020612d3b826131ca565b604051612d4882826132bb565b8381528281019150858301600585901b870184018b1015612d6857600080fd5b600096505b84871015612d94578035612d8081613415565b835260019690960195918301918301612d6d565b5096505086013592505080821115612dab57600080fd5b50612db8858286016129fe565b9150509250929050565b600060208284031215612dd457600080fd5b8135610eec8161342a565b600060208284031215612df157600080fd5b8151610eec8161342a565b600060208284031215612e0e57600080fd5b8135610eec81613438565b600060208284031215612e2b57600080fd5b8151610eec81613438565b600060208284031215612e4857600080fd5b813567ffffffffffffffff811115612e5f57600080fd5b8201601f81018413612e7057600080fd5b611d64848235602084016129a0565b600060208284031215612e9157600080fd5b5035919050565b600060208284031215612eaa57600080fd5b5051919050565b600060208284031215612ec357600080fd5b813560ff81168114610eec57600080fd5b600081518084526020808501945080840160005b83811015612f0457815187529582019590820190600101612ee8565b509495945050505050565b60008151808452612f27816020860160208601613250565b601f01601f19169290920160200192915050565b60008351612f4d818460208801613250565b835190830190612f61818360208801613250565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612fa690830186612ed4565b8281036060840152612fb88186612ed4565b90508281036080840152612fcc8185612f0f565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061301290830184612f0f565b979650505050505050565b602081526000610eec6020830184612ed4565b6040815260006130436040830185612ed4565b82810360208401526130558185612ed4565b95945050505050565b602081526000610eec6020830184612f0f565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252602d908201527f4f6e6c79205374616b696e6720636f6e74726163742063616e2063616c6c207460408201526c3434b990333ab731ba34b7b71760991b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156131e4576131e4613359565b5060051b60200190565b6000821982111561320157613201613317565b500190565b6000826132155761321561332d565b500490565b600081600019048311821515161561323457613234613317565b500290565b60008282101561324b5761324b613317565b500390565b60005b8381101561326b578181015183820152602001613253565b8381111561327a576000848401525b50505050565b600181811c9082168061329457607f821691505b602082108114156132b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156132e1576132e1613359565b6040525050565b60006000198214156132fc576132fc613317565b5060010190565b6000826133125761331261332d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156133885760046000803e5060005160e01c5b90565b600060443d10156133995790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156133c957505050505090565b82850191508151818111156133e15750505050505090565b843d87010160208285010111156133fb5750505050505090565b61340a602082860101876132bb565b509095945050505050565b6001600160a01b038116811461102557600080fd5b801515811461102557600080fd5b6001600160e01b03198116811461102557600080fdfea2646970667358221220a5253b1ead6be738b715af58e0ef8d47cebc2651aa2c0a00d77d414c66a53f8764736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000060000000000000000000000000d4bcf8702763e95a6b6040cf60fe9379000bcef500000000000000000000000039edad1f64cb319ac01bd458278b754768821c54000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6d657461766f6c7574696f6e2e6d7970696e6174612e636c6f75642f697066732f516d524d554571387368646979664841485762436a317074475363455234686265745a436775765439436e7538582f0000000000000000

Deployed Bytecode

0x6080604052600436106102ac5760003560e01c80638da5cb5b11610175578063d63de69c116100dc578063e985e9c511610095578063f3a8be7a1161006f578063f3a8be7a146108c4578063f5298aca146108e4578063f76f8d7814610904578063f9d1a04e1461093757600080fd5b8063e985e9c51461083b578063f242432a14610884578063f2fde38b146108a457600080fd5b8063d63de69c14610761578063d7b4be2414610781578063dbaae913146107a1578063df602c03146107ce578063e1f21c67146107fb578063e7a905361461081b57600080fd5b8063b1ceff301161012e578063b1ceff30146106b6578063b863bd37146106d6578063d36b6fa3146106f6578063d547cfb714610716578063d5abeb011461072b578063d5f6bd651461074157600080fd5b80638da5cb5b146105cb57806395d89b41146105fd578063a0712d681461062d578063a22cb4651461064d578063a2309ff81461066d578063a3f4df7e1461068357600080fd5b80633ccfd60b116102195780635c163d24116101d25780635c163d24146104e55780635c975abb146105395780636a9e18a614610553578063715018a6146105805780637cc8251c1461059557806381db0a49146105ab57600080fd5b80633ccfd60b1461043a5780633fabddea146104425780634e1273f4146104625780635517c30f1461048f57806355f804b3146104af5780635a570c0c146104cf57600080fd5b806306fdde031161026b57806306fdde03146103765780630d43d65e146103af5780630e5c011e146103c45780630e89341c146103e45780632eb2c2d61461040457806337de060e1461042457600080fd5b8062783b55146102b1578062fdd58e146102c857806301ffc9a7146102fb57806302329a291461032b57806304a7ff181461034b578063050dad8c14610361575b600080fd5b3480156102bd57600080fd5b506102c6610957565b005b3480156102d457600080fd5b506102e86102e3366004612c8e565b610b13565b6040519081526020015b60405180910390f35b34801561030757600080fd5b5061031b610316366004612dfc565b610ba5565b60405190151581526020016102f2565b34801561033757600080fd5b506102c6610346366004612dc2565b610bf7565b34801561035757600080fd5b506102e8600a5481565b34801561036d57600080fd5b506102e8610c34565b34801561038257600080fd5b506040805180820190915260078152664f62656c69736b60c81b60208201525b6040516102f2919061305e565b3480156103bb57600080fd5b506102e8610d72565b3480156103d057600080fd5b506102c66103df366004612a95565b610de0565b3480156103f057600080fd5b506103a26103ff366004612e7f565b610e26565b34801561041057600080fd5b506102c661041f366004612b08565b610ef3565b34801561043057600080fd5b506102e860095481565b6102c6610f8a565b34801561044e57600080fd5b506102e861045d366004612e7f565b611028565b34801561046e57600080fd5b5061048261047d366004612cef565b611049565b6040516102f2919061301d565b34801561049b57600080fd5b506102c66104aa366004612a95565b611173565b3480156104bb57600080fd5b506102c66104ca366004612e36565b6111b7565b3480156104db57600080fd5b506102e860085481565b3480156104f157600080fd5b50610524610500366004612c8e565b60136020908152600092835260408084209091529082529020805460019091015482565b604080519283526020830191909152016102f2565b34801561054557600080fd5b50600c5461031b9060ff1681565b34801561055f57600080fd5b506102e861056e366004612eb1565b60106020526000908152604090205481565b34801561058c57600080fd5b506102c66111f4565b3480156105a157600080fd5b506102e860075481565b3480156105b757600080fd5b506102c66105c6366004612a95565b61122a565b3480156105d757600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016102f2565b34801561060957600080fd5b506040805180820190915260078152664f42454c49534b60c81b60208201526103a2565b34801561063957600080fd5b506102c6610648366004612e7f565b6112a0565b34801561065957600080fd5b506102c6610668366004612c60565b6114f9565b34801561067957600080fd5b506102e8600f5481565b34801561068f57600080fd5b506103a2604051806040016040528060078152602001664f62656c69736b60c81b81525081565b3480156106c257600080fd5b506102e86106d1366004612a95565b611504565b3480156106e257600080fd5b506102e86106f1366004612e7f565b6115f9565b34801561070257600080fd5b506102c6610711366004612a95565b611658565b34801561072257600080fd5b506103a26116ce565b34801561073757600080fd5b506102e860065481565b34801561074d57600080fd5b506102e861075c366004612a95565b61175c565b34801561076d57600080fd5b506102e861077c366004612c8e565b6117c4565b34801561078d57600080fd5b506012546105e5906001600160a01b031681565b3480156107ad57600080fd5b506102e86107bc366004612a95565b60116020526000908152604090205481565b3480156107da57600080fd5b506102e86107e9366004612a95565b60146020526000908152604090205481565b34801561080757600080fd5b5061031b610816366004612bb6565b611974565b34801561082757600080fd5b506015546105e5906001600160a01b031681565b34801561084757600080fd5b5061031b610856366004612acf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561089057600080fd5b506102c661089f366004612bf7565b611a2e565b3480156108b057600080fd5b506102c66108bf366004612a95565b611ab5565b3480156108d057600080fd5b506004546105e5906001600160a01b031681565b3480156108f057600080fd5b506102c66108ff366004612cba565b611b4d565b34801561091057600080fd5b506103a2604051806040016040528060078152602001664f42454c49534b60c81b81525081565b34801561094357600080fd5b506102c6610952366004612a95565b611b5d565b6003546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190613195565b60405180910390fd5b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b1580156109d357600080fd5b505afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190612e98565b6004805460408051638da5cb5b60e01b815290519394506001600160a01b039091169263a9059cbb923092638da5cb5b9281830192602092829003018186803b158015610a5757600080fd5b505afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f9190612ab2565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b158015610ad757600080fd5b505af1158015610aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0f9190612ddf565b5050565b60006001600160a01b038316610b7f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610981565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b1480610bd657506001600160e01b031982166303a24d0760e21b145b80610bf157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b03163314610c215760405162461bcd60e51b815260040161098190613195565b600c805460ff1916911515919091179055565b600080605a905061012c600f541015610c6d57600e600081548110610c5b57610c5b613343565b90600052602060002001549050610d5a565b610258600f541015610c8d57600e600181548110610c5b57610c5b613343565b610384600f541015610cad57600e600281548110610c5b57610c5b613343565b6104b0600f541015610ccd57600e600381548110610c5b57610c5b613343565b6105dc600f541015610ced57600e600481548110610c5b57610c5b613343565b610708600f541015610d0d57600e600581548110610c5b57610c5b613343565b610834600f541015610d2d57600e600681548110610c5b57610c5b613343565b610960600f5411610d5a57600e600781548110610d4c57610d4c613343565b906000526020600020015490505b610d6c81670de0b6b3a764000061321a565b91505090565b600080610d7d611bab565b61ffff1690506000614000821015610d9757506001610bf1565b6140008210158015610daa575061800082105b15610db757506002610bf1565b6180008210158015610dca575061c00082105b15610dd757506003610bf1565b50600492915050565b6012546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161098190613148565b6001600160a01b03166000908152601460205260409020429055565b6060600082118015610e3a57506008548211155b610e975760405162461bcd60e51b815260206004820152602860248201527f4f62656c69736b3a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b6064820152608401610981565b6000610ea1611bd4565b90506000815111610ec15760405180602001604052806000815250610eec565b80610ecb84611c66565b604051602001610edc929190612f3b565b6040516020818303038152906040525b9392505050565b6001600160a01b038516331480610f0f5750610f0f8533610856565b610f765760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610981565b610f838585858585611d6c565b5050505050565b6003546001600160a01b03163314610fb45760405162461bcd60e51b815260040161098190613195565b6000610fc86003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061102557600080fd5b50565b600e818154811061103857600080fd5b600091825260209091200154905081565b606081518351146110ae5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610981565b6000835167ffffffffffffffff8111156110ca576110ca613359565b6040519080825280602002602001820160405280156110f3578160200160208202803683370190505b50905060005b845181101561116b5761113e85828151811061111757611117613343565b602002602001015185838151811061113157611131613343565b6020026020010151610b13565b82828151811061115057611150613343565b6020908102919091010152611164816132e8565b90506110f9565b509392505050565b6012546001600160a01b0316331461119d5760405162461bcd60e51b815260040161098190613148565b6001600160a01b0316600090815260146020526040812055565b6003546001600160a01b031633146111e15760405162461bcd60e51b815260040161098190613195565b8051610b0f906005906020840190612907565b6003546001600160a01b0316331461121e5760405162461bcd60e51b815260040161098190613195565b6112286000611f57565b565b6003546001600160a01b031633146112545760405162461bcd60e51b815260040161098190613195565b601280546001600160a01b0319166001600160a01b03831690811790915560405133907f6fccb2395fb1e669015abf21302a9c315022eb6dc165163fe4f1620e6338e65e90600090a350565b600c5460ff16156112d75760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610981565b33803b9032811480156112e8575081155b6113185760405162461bcd60e51b81526020600482015260016024820152603960f81b6044820152606401610981565b600061132433856117c4565b600480546040516323b872dd60e01b81523392810192909252306024830152604482018390529192506000916001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561137d57600080fd5b505af1158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190612ddf565b9050806113e95760405162461bcd60e51b8152602060048201526002602482015261031360f41b6044820152606401610981565b60065485600f546113fa91906131ee565b111561142d5760405162461bcd60e51b8152602060048201526002602482015261313160f01b6044820152606401610981565b336000908152601160205260408120805487929061144c9084906131ee565b9250508190555084600f600082825461146591906131ee565b909155505080156114ae5760005b858110156114ac576000611485610d72565b90506114a33382600160405180602001604052806000815250611fa9565b50600101611473565b505b50506040516bffffffffffffffffffffffff19606083811b8216602084015241901b16603482015260480160408051601f198184030181529190528051602090910120600d55505050565b610b0f3383836120b9565b6001600160a01b03811660009081526014602052604081205461152957506000919050565b600060015b60085481116115f2576001600160a01b038416600081815260136020908152604080832085845282528083208151808301835281548152600190910154818401908152600b5460095496865260149094529190932054905192939192611594919061219a565b61159e9042613239565b6115a88886610b13565b6115b2919061321a565b6115bc919061321a565b6115c69190613206565b81516115d290856131ee565b6115dc91906131ee565b92505080806115ea906132e8565b91505061152e565b5092915050565b600032611607600143613239565b60405160609290921b6bffffffffffffffffffffffff191660208301524060348201524260548201526074810183905260940160408051601f19818403018152919052805160209091012092915050565b6003546001600160a01b031633146116825760405162461bcd60e51b815260040161098190613195565b600480546001600160a01b0319166001600160a01b03831690811790915560405133907f424cc3ddfb515c24c4b354cfd9b8e3e3795069062e02fdff3e73cd6b99c5f60390600090a350565b600580546116db90613280565b80601f016020809104026020016040519081016040528092919081815260200182805461170790613280565b80156117545780601f1061172957610100808354040283529160200191611754565b820191906000526020600020905b81548152906001019060200180831161173757829003601f168201915b505050505081565b6001600160a01b03811660009081526014602052604081205461178157506000919050565b600060015b60085481116115f25760095461179c8583610b13565b6117a6919061321a565b6117b090836131ee565b9150806117bc816132e8565b915050611786565b60008060006117d1610c34565b6001600160a01b038616600090815260116020526040812054919250906117f99086906131ee565b9050600381116118145761180d858361321a565b925061196a565b6001600160a01b0386166000908152601160205260408120546118505761183c83600261321a565b9350611849600287613239565b9050611903565b6001600160a01b038716600090815260116020526040902054600114156118895761187c83600161321a565b9350611849600187613239565b6001600160a01b038716600090815260116020526040902054600214156118b1575084611903565b506001600160a01b03861660009081526011602052604090205485906118d990600290613239565b6118e490601e61321a565b6118f690670de0b6b3a764000061321a565b61190090846131ee565b92505b6000600282611913600182613239565b61191e90601e61321a565b61193090670de0b6b3a764000061321a565b61193b87600261321a565b61194591906131ee565b61194f919061321a565b6119599190613206565b905061196581866131ee565b945050505b5090949350505050565b6003546000906001600160a01b031633146119a15760405162461bcd60e51b815260040161098190613195565b60405163095ea7b360e01b81526001600160a01b0384811660048301526024820184905285169063095ea7b390604401602060405180830381600087803b1580156119eb57600080fd5b505af11580156119ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a239190612ddf565b506001949350505050565b6001600160a01b038516331480611a4a5750611a4a8533610856565b611aa85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610981565b610f8385858585856121b1565b6003546001600160a01b03163314611adf5760405162461bcd60e51b815260040161098190613195565b6001600160a01b038116611b445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b61102581611f57565b611b588383836122ce565b505050565b6012546001600160a01b03163314611b875760405162461bcd60e51b815260040161098190613148565b6001600160a01b038116600090815260146020526040902042905561102581612447565b6000600a546001611bbc91906131ee565b600a819055611bcf906106f190426131ee565b905090565b606060058054611be390613280565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0f90613280565b8015611c5c5780601f10611c3157610100808354040283529160200191611c5c565b820191906000526020600020905b815481529060010190602001808311611c3f57829003601f168201915b5050505050905090565b606081611c8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb45780611c9e816132e8565b9150611cad9050600a83613206565b9150611c8e565b60008167ffffffffffffffff811115611ccf57611ccf613359565b6040519080825280601f01601f191660200182016040528015611cf9576020820181803683370190505b5090505b8415611d6457611d0e600183613239565b9150611d1b600a86613303565b611d269060306131ee565b60f81b818381518110611d3b57611d3b613343565b60200101906001600160f81b031916908160001a905350611d5d600a86613206565b9450611cfd565b949350505050565b8151835114611dce5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610981565b6001600160a01b038416611df45760405162461bcd60e51b8152600401610981906130b9565b33611e03818787878787612492565b60005b8451811015611ee9576000858281518110611e2357611e23613343565b602002602001015190506000858381518110611e4157611e41613343565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611e915760405162461bcd60e51b8152600401610981906130fe565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ece9084906131ee565b9250508190555050505080611ee2906132e8565b9050611e06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f39929190613030565b60405180910390a4611f4f818787878787612687565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166120095760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610981565b336120298160008761201a886127f2565b612023886127f2565b87612492565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906120599084906131ee565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f838160008787878761283d565b816001600160a01b0316836001600160a01b0316141561212d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610981565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818310156121aa5781610eec565b5090919050565b6001600160a01b0384166121d75760405162461bcd60e51b8152600401610981906130b9565b336121e781878761201a886127f2565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122285760405162461bcd60e51b8152600401610981906130fe565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906122659084906131ee565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122c582888888888861283d565b50505050505050565b6001600160a01b0383166123305760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610981565b3361235f81856000612341876127f2565b61234a876127f2565b60405180602001604052806000815250612492565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123dc5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610981565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60015b6008548111610b0f576001600160a01b03821660009081526013602090815260408083208484529091528120908155426001909101558061248a816132e8565b91505061244a565b60005b83518110156122c55760008482815181106124b2576124b2613343565b6020026020010151905060008483815181106124d0576124d0613343565b60200260200101519050600081116124e9575050612675565b6001600160a01b0388161580159061250a575060006125088984610b13565b115b156125b9576001600160a01b038816600081815260136020908152604080832086845282528083209383526014909152902054156125b757600b546009546001600160a01b038b166000908152601460205260409020546001840154612570919061219a565b61257a9042613239565b6125848c87610b13565b61258e919061321a565b612598919061321a565b6125a29190613206565b81546125ae91906131ee565b81554260018201555b505b6001600160a01b03871615612672576001600160a01b0387166000818152601360209081526040808320868452825280832093835260149091529020541561267057600b546009546001600160a01b038a166000908152601460205260409020546001840154612629919061219a565b6126339042613239565b61263d8b87610b13565b612647919061321a565b612651919061321a565b61265b9190613206565b815461266791906131ee565b81554260018201555b505b50505b8061267f816132e8565b915050612495565b6001600160a01b0384163b15611f4f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906126cb9089908990889088908890600401612f7a565b602060405180830381600087803b1580156126e557600080fd5b505af1925050508015612715575060408051601f3d908101601f1916820190925261271291810190612e19565b60015b6127c25761272161336f565b806308c379a0141561275b575061273661338b565b80612741575061275d565b8060405162461bcd60e51b8152600401610981919061305e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610981565b6001600160e01b0319811663bc197c8160e01b146122c55760405162461bcd60e51b815260040161098190613071565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061282c5761282c613343565b602090810291909101015292915050565b6001600160a01b0384163b15611f4f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906128819089908990889088908890600401612fd8565b602060405180830381600087803b15801561289b57600080fd5b505af19250505080156128cb575060408051601f3d908101601f191682019092526128c891810190612e19565b60015b6128d75761272161336f565b6001600160e01b0319811663f23a6e6160e01b146122c55760405162461bcd60e51b815260040161098190613071565b82805461291390613280565b90600052602060002090601f016020900481019282612935576000855561297b565b82601f1061294e57805160ff191683800117855561297b565b8280016001018555821561297b579182015b8281111561297b578251825591602001919060010190612960565b5061298792915061298b565b5090565b5b80821115612987576000815560010161298c565b600067ffffffffffffffff8311156129ba576129ba613359565b6040516129d1601f8501601f1916602001826132bb565b8091508381528484840111156129e657600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612a0f57600080fd5b81356020612a1c826131ca565b604051612a2982826132bb565b8381528281019150858301600585901b87018401881015612a4957600080fd5b60005b85811015612a6857813584529284019290840190600101612a4c565b5090979650505050505050565b600082601f830112612a8657600080fd5b610eec838335602085016129a0565b600060208284031215612aa757600080fd5b8135610eec81613415565b600060208284031215612ac457600080fd5b8151610eec81613415565b60008060408385031215612ae257600080fd5b8235612aed81613415565b91506020830135612afd81613415565b809150509250929050565b600080600080600060a08688031215612b2057600080fd5b8535612b2b81613415565b94506020860135612b3b81613415565b9350604086013567ffffffffffffffff80821115612b5857600080fd5b612b6489838a016129fe565b94506060880135915080821115612b7a57600080fd5b612b8689838a016129fe565b93506080880135915080821115612b9c57600080fd5b50612ba988828901612a75565b9150509295509295909350565b600080600060608486031215612bcb57600080fd5b8335612bd681613415565b92506020840135612be681613415565b929592945050506040919091013590565b600080600080600060a08688031215612c0f57600080fd5b8535612c1a81613415565b94506020860135612c2a81613415565b93506040860135925060608601359150608086013567ffffffffffffffff811115612c5457600080fd5b612ba988828901612a75565b60008060408385031215612c7357600080fd5b8235612c7e81613415565b91506020830135612afd8161342a565b60008060408385031215612ca157600080fd5b8235612cac81613415565b946020939093013593505050565b600080600060608486031215612ccf57600080fd5b8335612cda81613415565b95602085013595506040909401359392505050565b60008060408385031215612d0257600080fd5b823567ffffffffffffffff80821115612d1a57600080fd5b818501915085601f830112612d2e57600080fd5b81356020612d3b826131ca565b604051612d4882826132bb565b8381528281019150858301600585901b870184018b1015612d6857600080fd5b600096505b84871015612d94578035612d8081613415565b835260019690960195918301918301612d6d565b5096505086013592505080821115612dab57600080fd5b50612db8858286016129fe565b9150509250929050565b600060208284031215612dd457600080fd5b8135610eec8161342a565b600060208284031215612df157600080fd5b8151610eec8161342a565b600060208284031215612e0e57600080fd5b8135610eec81613438565b600060208284031215612e2b57600080fd5b8151610eec81613438565b600060208284031215612e4857600080fd5b813567ffffffffffffffff811115612e5f57600080fd5b8201601f81018413612e7057600080fd5b611d64848235602084016129a0565b600060208284031215612e9157600080fd5b5035919050565b600060208284031215612eaa57600080fd5b5051919050565b600060208284031215612ec357600080fd5b813560ff81168114610eec57600080fd5b600081518084526020808501945080840160005b83811015612f0457815187529582019590820190600101612ee8565b509495945050505050565b60008151808452612f27816020860160208601613250565b601f01601f19169290920160200192915050565b60008351612f4d818460208801613250565b835190830190612f61818360208801613250565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612fa690830186612ed4565b8281036060840152612fb88186612ed4565b90508281036080840152612fcc8185612f0f565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061301290830184612f0f565b979650505050505050565b602081526000610eec6020830184612ed4565b6040815260006130436040830185612ed4565b82810360208401526130558185612ed4565b95945050505050565b602081526000610eec6020830184612f0f565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252602d908201527f4f6e6c79205374616b696e6720636f6e74726163742063616e2063616c6c207460408201526c3434b990333ab731ba34b7b71760991b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156131e4576131e4613359565b5060051b60200190565b6000821982111561320157613201613317565b500190565b6000826132155761321561332d565b500490565b600081600019048311821515161561323457613234613317565b500290565b60008282101561324b5761324b613317565b500390565b60005b8381101561326b578181015183820152602001613253565b8381111561327a576000848401525b50505050565b600181811c9082168061329457607f821691505b602082108114156132b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156132e1576132e1613359565b6040525050565b60006000198214156132fc576132fc613317565b5060010190565b6000826133125761331261332d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156133885760046000803e5060005160e01c5b90565b600060443d10156133995790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156133c957505050505090565b82850191508151818111156133e15750505050505090565b843d87010160208285010111156133fb5750505050505090565b61340a602082860101876132bb565b509095945050505050565b6001600160a01b038116811461102557600080fd5b801515811461102557600080fd5b6001600160e01b03198116811461102557600080fdfea2646970667358221220a5253b1ead6be738b715af58e0ef8d47cebc2651aa2c0a00d77d414c66a53f8764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000d4bcf8702763e95a6b6040cf60fe9379000bcef500000000000000000000000039edad1f64cb319ac01bd458278b754768821c54000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6d657461766f6c7574696f6e2e6d7970696e6174612e636c6f75642f697066732f516d524d554571387368646979664841485762436a317074475363455234686265745a436775765439436e7538582f0000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://metavolution.mypinata.cloud/ipfs/QmRMUEq8shdiyfHAHWbCj1ptGScER4hbetZCguvT9Cnu8X/
Arg [1] : _tropyAddress (address): 0xD4BCF8702763e95A6B6040cF60fe9379000BCEf5
Arg [2] : _vrfRandomGenerator (address): 0x39EDad1f64Cb319ac01BD458278B754768821c54

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000d4bcf8702763e95a6b6040cf60fe9379000bcef5
Arg [2] : 00000000000000000000000039edad1f64cb319ac01bd458278b754768821c54
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [4] : 68747470733a2f2f6d657461766f6c7574696f6e2e6d7970696e6174612e636c
Arg [5] : 6f75642f697066732f516d524d554571387368646979664841485762436a3170
Arg [6] : 74475363455234686265745a436775765439436e7538582f0000000000000000


Loading...
Loading
Loading...
Loading
[ 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.