ETH Price: $3,427.66 (+5.29%)
Gas: 11 Gwei

Token

Mutant Degen Monster Apes (MDMA)
 

Overview

Max Total Supply

484 MDMA

Holders

249

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MDMA
0x443452e7f0f5da7fd912ea5006bf4f278c13ea7c
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:
MutantDegenMonsterApes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : MutantDegenMonsterApes.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Math.sol";
import "./ERC721Enumerable.sol";
import "./ITransferController.sol";

contract MutantDegenMonsterApes is ERC721Enumerable, Ownable {
    using SafeMath for uint256;

    // Events
    event TokenMinted(uint256 tokenId, address owner, uint256 first_encounter);

    ITransferController public transferController =
        ITransferController(0x13B3f7Bd9D50B853f3D2Dc44FD8B4BC8fFa34cB0);

    // Provenance number
    string public PROVENANCE = "";

    // Max amount of token to purchase per account each time
    uint256 public MAX_PURCHASE = 2;

    // Maximum amount of tokens to supply.
    uint256 public MAX_TOKENS = 9999;

    // Current price.
    uint256 public CURRENT_PRICE = 20000000000000000;

    // Define if sale is active
    bool public saleIsActive = false;

    bool public isPresale = false;

    mapping(address => bool) public isWhitelistUtilized;

    // Base URI
    string private baseURI;

    /**
     * Contract constructor
     */
    constructor() ERC721("Mutant Degen Monster Apes", "MDMA") {}

    /**
     * With
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Reserve tokens
     */
    function reserveTokens(uint256 amount) public onlyOwner {
        uint256 i;
        uint256 tokenId;
        uint256 first_encounter = block.timestamp;

        for (i = 1; i <= amount; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    /*
     * Set provenance once it's calculated
     */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE = provenanceHash;
    }

    /*
     * Set max tokens
     */
    function setMaxTokens(uint256 maxTokens) public onlyOwner {
        MAX_TOKENS = maxTokens;
    }

    /*
     * Pause sale if active, make active if paused
     */
    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function changeMaxPurchase(uint256 newMaxPurchase) public onlyOwner {
        MAX_PURCHASE = newMaxPurchase;
    }

    /**
     * Mint MutantDegenMonsterApes
     */
    function mintMutantDegenMonsterApes(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Mint is not available right now");
        require(
            numberOfTokens <= MAX_PURCHASE,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_TOKENS,
            "Purchase would exceed max supply of MutantDegenMonsterApes"
        );
        require(
            CURRENT_PRICE.mul(numberOfTokens) <= msg.value,
            "Value sent is not correct"
        );
        if (isPresale) {
            require(
                transferController.isWhiteListed(msg.sender) &&
                    !isWhitelistUtilized[msg.sender],
                "You are not Whitelisted, Please contract to administrator"
            );
            isWhitelistUtilized[msg.sender] = true;
        }
        uint256 first_encounter = block.timestamp;
        uint256 tokenId;

        for (uint256 i = 1; i <= numberOfTokens; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    function changePresale(bool newisPresale) public onlyOwner {
        isPresale = newisPresale;
    }

    /**
     * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
     */
    function setBaseURI(string memory BaseURI) public onlyOwner {
        baseURI = BaseURI;
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * Set the current token price
     */
    function setCurrentPrice(uint256 currentPrice) public onlyOwner {
        CURRENT_PRICE = currentPrice;
    }

    function changeControllerAddress(address _contollerAddress)
        public
        onlyOwner
    {
        transferController = ITransferController(_contollerAddress);
    }
}

File 2 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

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

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 3 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

File 4 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 16 : Math.sol
// SPDX-License-Identifier: MIT

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, so we distribute.
        return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 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 6 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

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

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

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

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

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

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 16 : ITransferController.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.0;
interface ITransferController {
    function isWhiteListed(address _user)  external view returns (bool);
}

File 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 11 of 16 : Address.sol
// SPDX-License-Identifier: MIT

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;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

File 12 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 14 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

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 15 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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

File 16 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"first_encounter","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURRENT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contollerAddress","type":"address"}],"name":"changeControllerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPurchase","type":"uint256"}],"name":"changeMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newisPresale","type":"bool"}],"name":"changePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelistUtilized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintMutantDegenMonsterApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferController","outputs":[{"internalType":"contract ITransferController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160a01b0319167313b3f7bd9d50b853f3d2dc44fd8b4bc8ffa34cb017905560a06040819052600060808190526200004191600c9162000155565b506002600d5561270f600e5566470de4df820000600f556010805461ffff191690553480156200007057600080fd5b50604080518082018252601981527f4d7574616e7420446567656e204d6f6e737465722041706573000000000000006020808301918252835180850190945260048452634d444d4160e01b908401528151919291620000d29160009162000155565b508051620000e890600190602084019062000155565b5050506000620000fd6200015160201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000238565b3390565b8280546200016390620001fb565b90600052602060002090601f016020900481019282620001875760008555620001d2565b82601f10620001a257805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d2578251825591602001919060010190620001b5565b50620001e0929150620001e4565b5090565b5b80821115620001e05760008155600101620001e5565b6002810460018216806200021057607f821691505b602082108114156200023257634e487b7160e01b600052602260045260246000fd5b50919050565b61287d80620002486000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b573f104116100ab578063e985e9c51161006f578063e985e9c514610610578063eb8d244414610630578063f2fde38b14610645578063f47c84c514610665578063f6ff0c881461067a57610225565b8063b573f10414610570578063b88d4fde14610590578063c4e37095146105b0578063c87b56dd146105d0578063d031370b146105f057610225565b80638da5cb5b116100f25780638da5cb5b146104fc57806395364a841461051157806395d89b41146105265780639e082d431461053b578063a22cb4651461055057610225565b806370a08231146104925780637146bd08146104b2578063715018a6146104c75780637f6567f7146104dc57610225565b806323b872dd116101b15780634f6ccce7116101755780634f6ccce7146103fd57806355f804b31461041d5780636352211e1461043d5780636373a6b11461045d578063699c40c31461047257610225565b806323b872dd146103735780632f745c59146103935780633ccfd60b146103b357806342842e0e146103c85780634b369a61146103e857610225565b8063095ea7b3116101f8578063095ea7b3146102cf57806310969523146102f157806311e776fe1461031157806318160ddd1461033157806318b200711461035357610225565b806301ffc9a71461022a57806306fdde03146102605780630717536614610282578063081812fc146102a2575b600080fd5b34801561023657600080fd5b5061024a610245366004611ef8565b61068d565b604051610257919061203a565b60405180910390f35b34801561026c57600080fd5b506102756106ba565b6040516102579190612045565b34801561028e57600080fd5b5061024a61029d366004611d61565b61074c565b3480156102ae57600080fd5b506102c26102bd366004611f76565b610761565b6040516102579190611fe9565b3480156102db57600080fd5b506102ef6102ea366004611e97565b6107ad565b005b3480156102fd57600080fd5b506102ef61030c366004611f30565b610845565b34801561031d57600080fd5b506102ef61032c366004611f76565b61089b565b34801561033d57600080fd5b506103466108df565b60405161025791906126be565b34801561035f57600080fd5b506102ef61036e366004611f76565b6108e5565b34801561037f57600080fd5b506102ef61038e366004611dad565b610929565b34801561039f57600080fd5b506103466103ae366004611e97565b610961565b3480156103bf57600080fd5b506102ef6109b3565b3480156103d457600080fd5b506102ef6103e3366004611dad565b610a21565b3480156103f457600080fd5b50610346610a3c565b34801561040957600080fd5b50610346610418366004611f76565b610a42565b34801561042957600080fd5b506102ef610438366004611f30565b610a9d565b34801561044957600080fd5b506102c2610458366004611f76565b610aef565b34801561046957600080fd5b50610275610b24565b34801561047e57600080fd5b506102ef61048d366004611d61565b610bb2565b34801561049e57600080fd5b506103466104ad366004611d61565b610c13565b3480156104be57600080fd5b50610346610c57565b3480156104d357600080fd5b506102ef610c5d565b3480156104e857600080fd5b506102ef6104f7366004611f76565b610ce6565b34801561050857600080fd5b506102c2610d2a565b34801561051d57600080fd5b5061024a610d39565b34801561053257600080fd5b50610275610d47565b34801561054757600080fd5b506102c2610d56565b34801561055c57600080fd5b506102ef61056b366004611e61565b610d65565b34801561057c57600080fd5b506102ef61058b366004611ec0565b610e33565b34801561059c57600080fd5b506102ef6105ab366004611de8565b610e8c565b3480156105bc57600080fd5b506102ef6105cb366004611ec0565b610ecb565b3480156105dc57600080fd5b506102756105eb366004611f76565b610f1d565b3480156105fc57600080fd5b506102ef61060b366004611f76565b610fa0565b34801561061c57600080fd5b5061024a61062b366004611d7b565b611062565b34801561063c57600080fd5b5061024a611090565b34801561065157600080fd5b506102ef610660366004611d61565b611099565b34801561067157600080fd5b5061034661115a565b6102ef610688366004611f76565b611160565b60006001600160e01b0319821663780e9d6360e01b14806106b257506106b28261135e565b90505b919050565b6060600080546106c990612774565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612774565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b60116020526000908152604090205460ff1681565b600061076c8261139e565b6107915760405162461bcd60e51b8152600401610788906124c7565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b882610aef565b9050806001600160a01b0316836001600160a01b031614156107ec5760405162461bcd60e51b8152600401610788906125e0565b806001600160a01b03166107fe6113bb565b6001600160a01b0316148061081a575061081a8161062b6113bb565b6108365760405162461bcd60e51b81526004016107889061230e565b61084083836113bf565b505050565b61084d6113bb565b6001600160a01b031661085e610d2a565b6001600160a01b0316146108845760405162461bcd60e51b815260040161078890612513565b805161089790600c906020840190611c41565b5050565b6108a36113bb565b6001600160a01b03166108b4610d2a565b6001600160a01b0316146108da5760405162461bcd60e51b815260040161078890612513565b600e55565b60085490565b6108ed6113bb565b6001600160a01b03166108fe610d2a565b6001600160a01b0316146109245760405162461bcd60e51b815260040161078890612513565b600f55565b61093a6109346113bb565b8261142d565b6109565760405162461bcd60e51b815260040161078890612621565b6108408383836114b2565b600061096c83610c13565b821061098a5760405162461bcd60e51b8152600401610788906120b5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109bb6113bb565b6001600160a01b03166109cc610d2a565b6001600160a01b0316146109f25760405162461bcd60e51b815260040161078890612513565b6040514790339082156108fc029083906000818181858888f19350505050158015610897573d6000803e3d6000fd5b61084083838360405180602001604052806000815250610e8c565b600f5481565b6000610a4c6108df565b8210610a6a5760405162461bcd60e51b815260040161078890612672565b60088281548110610a8b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610aa56113bb565b6001600160a01b0316610ab6610d2a565b6001600160a01b031614610adc5760405162461bcd60e51b815260040161078890612513565b8051610897906012906020840190611c41565b6000818152600260205260408120546001600160a01b0316806106b25760405162461bcd60e51b8152600401610788906123b5565b600c8054610b3190612774565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90612774565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba6113bb565b6001600160a01b0316610bcb610d2a565b6001600160a01b031614610bf15760405162461bcd60e51b815260040161078890612513565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610c3b5760405162461bcd60e51b81526004016107889061236b565b506001600160a01b031660009081526003602052604090205490565b600d5481565b610c656113bb565b6001600160a01b0316610c76610d2a565b6001600160a01b031614610c9c5760405162461bcd60e51b815260040161078890612513565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610cee6113bb565b6001600160a01b0316610cff610d2a565b6001600160a01b031614610d255760405162461bcd60e51b815260040161078890612513565b600d55565b600a546001600160a01b031690565b601054610100900460ff1681565b6060600180546106c990612774565b600b546001600160a01b031681565b610d6d6113bb565b6001600160a01b0316826001600160a01b03161415610d9e5760405162461bcd60e51b815260040161078890612213565b8060056000610dab6113bb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610def6113bb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e27919061203a565b60405180910390a35050565b610e3b6113bb565b6001600160a01b0316610e4c610d2a565b6001600160a01b031614610e725760405162461bcd60e51b815260040161078890612513565b601080549115156101000261ff0019909216919091179055565b610e9d610e976113bb565b8361142d565b610eb95760405162461bcd60e51b815260040161078890612621565b610ec5848484846115df565b50505050565b610ed36113bb565b6001600160a01b0316610ee4610d2a565b6001600160a01b031614610f0a5760405162461bcd60e51b815260040161078890612513565b6010805460ff1916911515919091179055565b6060610f288261139e565b610f445760405162461bcd60e51b815260040161078890612591565b6000610f4e611612565b90506000815111610f6e5760405180602001604052806000815250610f99565b80610f7884611621565b604051602001610f89929190611fba565b6040516020818303038152906040525b9392505050565b610fa86113bb565b6001600160a01b0316610fb9610d2a565b6001600160a01b031614610fdf5760405162461bcd60e51b815260040161078890612513565b60016000425b838311610ec557610fff6001610ff96108df565b9061173c565b9150600e548211611050576110143383611748565b7f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051611047939291906126c7565b60405180910390a15b8261105a816127af565b935050610fe5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b6110a16113bb565b6001600160a01b03166110b2610d2a565b6001600160a01b0316146110d85760405162461bcd60e51b815260040161078890612513565b6001600160a01b0381166110fe5760405162461bcd60e51b815260040161078890612152565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b60105460ff166111825760405162461bcd60e51b81526004016107889061224a565b600d548111156111a45760405162461bcd60e51b8152600401610788906122cd565b600e546111b382610ff96108df565b11156111d15760405162461bcd60e51b815260040161078890612058565b600f5434906111e09083611762565b11156111fe5760405162461bcd60e51b8152600401610788906123fe565b601054610100900460ff16156112e157600b546040516337c8b87b60e11b81526001600160a01b0390911690636f9170f69061123e903390600401611fe9565b60206040518083038186803b15801561125657600080fd5b505afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190611edc565b80156112aa57503360009081526011602052604090205460ff16155b6112c65760405162461bcd60e51b81526004016107889061246a565b336000908152601160205260409020805460ff191660011790555b42600060015b838111610ec5576112fb6001610ff96108df565b9150600e54821161134c576113103383611748565b7f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611343939291906126c7565b60405180910390a15b80611356816127af565b9150506112e7565b60006001600160e01b031982166380ac58cd60e01b148061138f57506001600160e01b03198216635b5e139f60e01b145b806106b257506106b28261176e565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f482610aef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114388261139e565b6114545760405162461bcd60e51b815260040161078890612281565b600061145f83610aef565b9050806001600160a01b0316846001600160a01b0316148061149a5750836001600160a01b031661148f84610761565b6001600160a01b0316145b806114aa57506114aa8185611062565b949350505050565b826001600160a01b03166114c582610aef565b6001600160a01b0316146114eb5760405162461bcd60e51b815260040161078890612548565b6001600160a01b0382166115115760405162461bcd60e51b8152600401610788906121cf565b61151c838383611787565b6115276000826113bf565b6001600160a01b0383166000908152600360205260408120805460019290611550908490612731565b90915550506001600160a01b038216600090815260036020526040812080546001929061157e9084906126e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115ea8484846114b2565b6115f684848484611810565b610ec55760405162461bcd60e51b815260040161078890612100565b6060601280546106c990612774565b60608161164657506040805180820190915260018152600360fc1b60208201526106b5565b8160005b8115611670578061165a816127af565b91506116699050600a836126fe565b915061164a565b60008167ffffffffffffffff81111561169957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116c3576020820181803683370190505b5090505b84156114aa576116d8600183612731565b91506116e5600a866127ca565b6116f09060306126e6565b60f81b81838151811061171357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611735600a866126fe565b94506116c7565b6000610f9982846126e6565b61089782826040518060200160405280600081525061192b565b6000610f998284612712565b6001600160e01b031981166301ffc9a760e01b14919050565b611792838383610840565b6001600160a01b0383166117ae576117a98161195e565b6117d1565b816001600160a01b0316836001600160a01b0316146117d1576117d183826119a2565b6001600160a01b0382166117ed576117e881611a3f565b610840565b826001600160a01b0316826001600160a01b031614610840576108408282611b18565b6000611824846001600160a01b0316611b5c565b1561192057836001600160a01b031663150b7a026118406113bb565b8786866040518563ffffffff1660e01b81526004016118629493929190611ffd565b602060405180830381600087803b15801561187c57600080fd5b505af19250505080156118ac575060408051601f3d908101601f191682019092526118a991810190611f14565b60015b611906573d8080156118da576040519150601f19603f3d011682016040523d82523d6000602084013e6118df565b606091505b5080516118fe5760405162461bcd60e51b815260040161078890612100565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114aa565b506001949350505050565b6119358383611b62565b6119426000848484611810565b6108405760405162461bcd60e51b815260040161078890612100565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119af84610c13565b6119b99190612731565b600083815260076020526040902054909150808214611a0c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5190600190612731565b60008381526009602052604081205460088054939450909284908110611a8757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ab657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611afc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b2383610c13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611b885760405162461bcd60e51b815260040161078890612435565b611b918161139e565b15611bae5760405162461bcd60e51b815260040161078890612198565b611bba60008383611787565b6001600160a01b0382166000908152600360205260408120805460019290611be39084906126e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c4d90612774565b90600052602060002090601f016020900481019282611c6f5760008555611cb5565b82601f10611c8857805160ff1916838001178555611cb5565b82800160010185558215611cb5579182015b82811115611cb5578251825591602001919060010190611c9a565b50611cc1929150611cc5565b5090565b5b80821115611cc15760008155600101611cc6565b600067ffffffffffffffff80841115611cf557611cf561280a565b604051601f8501601f191681016020018281118282101715611d1957611d1961280a565b604052848152915081838501861015611d3157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106b557600080fd5b600060208284031215611d72578081fd5b610f9982611d4a565b60008060408385031215611d8d578081fd5b611d9683611d4a565b9150611da460208401611d4a565b90509250929050565b600080600060608486031215611dc1578081fd5b611dca84611d4a565b9250611dd860208501611d4a565b9150604084013590509250925092565b60008060008060808587031215611dfd578081fd5b611e0685611d4a565b9350611e1460208601611d4a565b925060408501359150606085013567ffffffffffffffff811115611e36578182fd5b8501601f81018713611e46578182fd5b611e5587823560208401611cda565b91505092959194509250565b60008060408385031215611e73578182fd5b611e7c83611d4a565b91506020830135611e8c81612820565b809150509250929050565b60008060408385031215611ea9578182fd5b611eb283611d4a565b946020939093013593505050565b600060208284031215611ed1578081fd5b8135610f9981612820565b600060208284031215611eed578081fd5b8151610f9981612820565b600060208284031215611f09578081fd5b8135610f9981612831565b600060208284031215611f25578081fd5b8151610f9981612831565b600060208284031215611f41578081fd5b813567ffffffffffffffff811115611f57578182fd5b8201601f81018413611f67578182fd5b6114aa84823560208401611cda565b600060208284031215611f87578081fd5b5035919050565b60008151808452611fa6816020860160208601612748565b601f01601f19169290920160200192915050565b60008351611fcc818460208801612748565b835190830190611fe0818360208801612748565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203090830184611f8e565b9695505050505050565b901515815260200190565b600060208252610f996020830184611f8e565b6020808252603a908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f66204d7574616e74446567656e4d6f6e7374657241706573000000000000606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f7700604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526039908201527f596f7520617265206e6f742057686974656c69737465642c20506c656173652060408201527f636f6e747261637420746f2061646d696e6973747261746f7200000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b9283526001600160a01b03919091166020830152604082015260600190565b600082198211156126f9576126f96127de565b500190565b60008261270d5761270d6127f4565b500490565b600081600019048311821515161561272c5761272c6127de565b500290565b600082821015612743576127436127de565b500390565b60005b8381101561276357818101518382015260200161274b565b83811115610ec55750506000910152565b60028104600182168061278857607f821691505b602082108114156127a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c3576127c36127de565b5060010190565b6000826127d9576127d96127f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461282e57600080fd5b50565b6001600160e01b03198116811461282e57600080fdfea26469706673582212206a637abe572dddb29fb0b4d8cfb14adb80ffa82c0ebe4174c3d8d3cd2fb86e9064736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b573f104116100ab578063e985e9c51161006f578063e985e9c514610610578063eb8d244414610630578063f2fde38b14610645578063f47c84c514610665578063f6ff0c881461067a57610225565b8063b573f10414610570578063b88d4fde14610590578063c4e37095146105b0578063c87b56dd146105d0578063d031370b146105f057610225565b80638da5cb5b116100f25780638da5cb5b146104fc57806395364a841461051157806395d89b41146105265780639e082d431461053b578063a22cb4651461055057610225565b806370a08231146104925780637146bd08146104b2578063715018a6146104c75780637f6567f7146104dc57610225565b806323b872dd116101b15780634f6ccce7116101755780634f6ccce7146103fd57806355f804b31461041d5780636352211e1461043d5780636373a6b11461045d578063699c40c31461047257610225565b806323b872dd146103735780632f745c59146103935780633ccfd60b146103b357806342842e0e146103c85780634b369a61146103e857610225565b8063095ea7b3116101f8578063095ea7b3146102cf57806310969523146102f157806311e776fe1461031157806318160ddd1461033157806318b200711461035357610225565b806301ffc9a71461022a57806306fdde03146102605780630717536614610282578063081812fc146102a2575b600080fd5b34801561023657600080fd5b5061024a610245366004611ef8565b61068d565b604051610257919061203a565b60405180910390f35b34801561026c57600080fd5b506102756106ba565b6040516102579190612045565b34801561028e57600080fd5b5061024a61029d366004611d61565b61074c565b3480156102ae57600080fd5b506102c26102bd366004611f76565b610761565b6040516102579190611fe9565b3480156102db57600080fd5b506102ef6102ea366004611e97565b6107ad565b005b3480156102fd57600080fd5b506102ef61030c366004611f30565b610845565b34801561031d57600080fd5b506102ef61032c366004611f76565b61089b565b34801561033d57600080fd5b506103466108df565b60405161025791906126be565b34801561035f57600080fd5b506102ef61036e366004611f76565b6108e5565b34801561037f57600080fd5b506102ef61038e366004611dad565b610929565b34801561039f57600080fd5b506103466103ae366004611e97565b610961565b3480156103bf57600080fd5b506102ef6109b3565b3480156103d457600080fd5b506102ef6103e3366004611dad565b610a21565b3480156103f457600080fd5b50610346610a3c565b34801561040957600080fd5b50610346610418366004611f76565b610a42565b34801561042957600080fd5b506102ef610438366004611f30565b610a9d565b34801561044957600080fd5b506102c2610458366004611f76565b610aef565b34801561046957600080fd5b50610275610b24565b34801561047e57600080fd5b506102ef61048d366004611d61565b610bb2565b34801561049e57600080fd5b506103466104ad366004611d61565b610c13565b3480156104be57600080fd5b50610346610c57565b3480156104d357600080fd5b506102ef610c5d565b3480156104e857600080fd5b506102ef6104f7366004611f76565b610ce6565b34801561050857600080fd5b506102c2610d2a565b34801561051d57600080fd5b5061024a610d39565b34801561053257600080fd5b50610275610d47565b34801561054757600080fd5b506102c2610d56565b34801561055c57600080fd5b506102ef61056b366004611e61565b610d65565b34801561057c57600080fd5b506102ef61058b366004611ec0565b610e33565b34801561059c57600080fd5b506102ef6105ab366004611de8565b610e8c565b3480156105bc57600080fd5b506102ef6105cb366004611ec0565b610ecb565b3480156105dc57600080fd5b506102756105eb366004611f76565b610f1d565b3480156105fc57600080fd5b506102ef61060b366004611f76565b610fa0565b34801561061c57600080fd5b5061024a61062b366004611d7b565b611062565b34801561063c57600080fd5b5061024a611090565b34801561065157600080fd5b506102ef610660366004611d61565b611099565b34801561067157600080fd5b5061034661115a565b6102ef610688366004611f76565b611160565b60006001600160e01b0319821663780e9d6360e01b14806106b257506106b28261135e565b90505b919050565b6060600080546106c990612774565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612774565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b60116020526000908152604090205460ff1681565b600061076c8261139e565b6107915760405162461bcd60e51b8152600401610788906124c7565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b882610aef565b9050806001600160a01b0316836001600160a01b031614156107ec5760405162461bcd60e51b8152600401610788906125e0565b806001600160a01b03166107fe6113bb565b6001600160a01b0316148061081a575061081a8161062b6113bb565b6108365760405162461bcd60e51b81526004016107889061230e565b61084083836113bf565b505050565b61084d6113bb565b6001600160a01b031661085e610d2a565b6001600160a01b0316146108845760405162461bcd60e51b815260040161078890612513565b805161089790600c906020840190611c41565b5050565b6108a36113bb565b6001600160a01b03166108b4610d2a565b6001600160a01b0316146108da5760405162461bcd60e51b815260040161078890612513565b600e55565b60085490565b6108ed6113bb565b6001600160a01b03166108fe610d2a565b6001600160a01b0316146109245760405162461bcd60e51b815260040161078890612513565b600f55565b61093a6109346113bb565b8261142d565b6109565760405162461bcd60e51b815260040161078890612621565b6108408383836114b2565b600061096c83610c13565b821061098a5760405162461bcd60e51b8152600401610788906120b5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109bb6113bb565b6001600160a01b03166109cc610d2a565b6001600160a01b0316146109f25760405162461bcd60e51b815260040161078890612513565b6040514790339082156108fc029083906000818181858888f19350505050158015610897573d6000803e3d6000fd5b61084083838360405180602001604052806000815250610e8c565b600f5481565b6000610a4c6108df565b8210610a6a5760405162461bcd60e51b815260040161078890612672565b60088281548110610a8b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610aa56113bb565b6001600160a01b0316610ab6610d2a565b6001600160a01b031614610adc5760405162461bcd60e51b815260040161078890612513565b8051610897906012906020840190611c41565b6000818152600260205260408120546001600160a01b0316806106b25760405162461bcd60e51b8152600401610788906123b5565b600c8054610b3190612774565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90612774565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba6113bb565b6001600160a01b0316610bcb610d2a565b6001600160a01b031614610bf15760405162461bcd60e51b815260040161078890612513565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610c3b5760405162461bcd60e51b81526004016107889061236b565b506001600160a01b031660009081526003602052604090205490565b600d5481565b610c656113bb565b6001600160a01b0316610c76610d2a565b6001600160a01b031614610c9c5760405162461bcd60e51b815260040161078890612513565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610cee6113bb565b6001600160a01b0316610cff610d2a565b6001600160a01b031614610d255760405162461bcd60e51b815260040161078890612513565b600d55565b600a546001600160a01b031690565b601054610100900460ff1681565b6060600180546106c990612774565b600b546001600160a01b031681565b610d6d6113bb565b6001600160a01b0316826001600160a01b03161415610d9e5760405162461bcd60e51b815260040161078890612213565b8060056000610dab6113bb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610def6113bb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e27919061203a565b60405180910390a35050565b610e3b6113bb565b6001600160a01b0316610e4c610d2a565b6001600160a01b031614610e725760405162461bcd60e51b815260040161078890612513565b601080549115156101000261ff0019909216919091179055565b610e9d610e976113bb565b8361142d565b610eb95760405162461bcd60e51b815260040161078890612621565b610ec5848484846115df565b50505050565b610ed36113bb565b6001600160a01b0316610ee4610d2a565b6001600160a01b031614610f0a5760405162461bcd60e51b815260040161078890612513565b6010805460ff1916911515919091179055565b6060610f288261139e565b610f445760405162461bcd60e51b815260040161078890612591565b6000610f4e611612565b90506000815111610f6e5760405180602001604052806000815250610f99565b80610f7884611621565b604051602001610f89929190611fba565b6040516020818303038152906040525b9392505050565b610fa86113bb565b6001600160a01b0316610fb9610d2a565b6001600160a01b031614610fdf5760405162461bcd60e51b815260040161078890612513565b60016000425b838311610ec557610fff6001610ff96108df565b9061173c565b9150600e548211611050576110143383611748565b7f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051611047939291906126c7565b60405180910390a15b8261105a816127af565b935050610fe5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b6110a16113bb565b6001600160a01b03166110b2610d2a565b6001600160a01b0316146110d85760405162461bcd60e51b815260040161078890612513565b6001600160a01b0381166110fe5760405162461bcd60e51b815260040161078890612152565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b60105460ff166111825760405162461bcd60e51b81526004016107889061224a565b600d548111156111a45760405162461bcd60e51b8152600401610788906122cd565b600e546111b382610ff96108df565b11156111d15760405162461bcd60e51b815260040161078890612058565b600f5434906111e09083611762565b11156111fe5760405162461bcd60e51b8152600401610788906123fe565b601054610100900460ff16156112e157600b546040516337c8b87b60e11b81526001600160a01b0390911690636f9170f69061123e903390600401611fe9565b60206040518083038186803b15801561125657600080fd5b505afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190611edc565b80156112aa57503360009081526011602052604090205460ff16155b6112c65760405162461bcd60e51b81526004016107889061246a565b336000908152601160205260409020805460ff191660011790555b42600060015b838111610ec5576112fb6001610ff96108df565b9150600e54821161134c576113103383611748565b7f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611343939291906126c7565b60405180910390a15b80611356816127af565b9150506112e7565b60006001600160e01b031982166380ac58cd60e01b148061138f57506001600160e01b03198216635b5e139f60e01b145b806106b257506106b28261176e565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f482610aef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114388261139e565b6114545760405162461bcd60e51b815260040161078890612281565b600061145f83610aef565b9050806001600160a01b0316846001600160a01b0316148061149a5750836001600160a01b031661148f84610761565b6001600160a01b0316145b806114aa57506114aa8185611062565b949350505050565b826001600160a01b03166114c582610aef565b6001600160a01b0316146114eb5760405162461bcd60e51b815260040161078890612548565b6001600160a01b0382166115115760405162461bcd60e51b8152600401610788906121cf565b61151c838383611787565b6115276000826113bf565b6001600160a01b0383166000908152600360205260408120805460019290611550908490612731565b90915550506001600160a01b038216600090815260036020526040812080546001929061157e9084906126e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115ea8484846114b2565b6115f684848484611810565b610ec55760405162461bcd60e51b815260040161078890612100565b6060601280546106c990612774565b60608161164657506040805180820190915260018152600360fc1b60208201526106b5565b8160005b8115611670578061165a816127af565b91506116699050600a836126fe565b915061164a565b60008167ffffffffffffffff81111561169957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116c3576020820181803683370190505b5090505b84156114aa576116d8600183612731565b91506116e5600a866127ca565b6116f09060306126e6565b60f81b81838151811061171357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611735600a866126fe565b94506116c7565b6000610f9982846126e6565b61089782826040518060200160405280600081525061192b565b6000610f998284612712565b6001600160e01b031981166301ffc9a760e01b14919050565b611792838383610840565b6001600160a01b0383166117ae576117a98161195e565b6117d1565b816001600160a01b0316836001600160a01b0316146117d1576117d183826119a2565b6001600160a01b0382166117ed576117e881611a3f565b610840565b826001600160a01b0316826001600160a01b031614610840576108408282611b18565b6000611824846001600160a01b0316611b5c565b1561192057836001600160a01b031663150b7a026118406113bb565b8786866040518563ffffffff1660e01b81526004016118629493929190611ffd565b602060405180830381600087803b15801561187c57600080fd5b505af19250505080156118ac575060408051601f3d908101601f191682019092526118a991810190611f14565b60015b611906573d8080156118da576040519150601f19603f3d011682016040523d82523d6000602084013e6118df565b606091505b5080516118fe5760405162461bcd60e51b815260040161078890612100565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114aa565b506001949350505050565b6119358383611b62565b6119426000848484611810565b6108405760405162461bcd60e51b815260040161078890612100565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119af84610c13565b6119b99190612731565b600083815260076020526040902054909150808214611a0c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5190600190612731565b60008381526009602052604081205460088054939450909284908110611a8757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ab657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611afc57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b2383610c13565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b038216611b885760405162461bcd60e51b815260040161078890612435565b611b918161139e565b15611bae5760405162461bcd60e51b815260040161078890612198565b611bba60008383611787565b6001600160a01b0382166000908152600360205260408120805460019290611be39084906126e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c4d90612774565b90600052602060002090601f016020900481019282611c6f5760008555611cb5565b82601f10611c8857805160ff1916838001178555611cb5565b82800160010185558215611cb5579182015b82811115611cb5578251825591602001919060010190611c9a565b50611cc1929150611cc5565b5090565b5b80821115611cc15760008155600101611cc6565b600067ffffffffffffffff80841115611cf557611cf561280a565b604051601f8501601f191681016020018281118282101715611d1957611d1961280a565b604052848152915081838501861015611d3157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106b557600080fd5b600060208284031215611d72578081fd5b610f9982611d4a565b60008060408385031215611d8d578081fd5b611d9683611d4a565b9150611da460208401611d4a565b90509250929050565b600080600060608486031215611dc1578081fd5b611dca84611d4a565b9250611dd860208501611d4a565b9150604084013590509250925092565b60008060008060808587031215611dfd578081fd5b611e0685611d4a565b9350611e1460208601611d4a565b925060408501359150606085013567ffffffffffffffff811115611e36578182fd5b8501601f81018713611e46578182fd5b611e5587823560208401611cda565b91505092959194509250565b60008060408385031215611e73578182fd5b611e7c83611d4a565b91506020830135611e8c81612820565b809150509250929050565b60008060408385031215611ea9578182fd5b611eb283611d4a565b946020939093013593505050565b600060208284031215611ed1578081fd5b8135610f9981612820565b600060208284031215611eed578081fd5b8151610f9981612820565b600060208284031215611f09578081fd5b8135610f9981612831565b600060208284031215611f25578081fd5b8151610f9981612831565b600060208284031215611f41578081fd5b813567ffffffffffffffff811115611f57578182fd5b8201601f81018413611f67578182fd5b6114aa84823560208401611cda565b600060208284031215611f87578081fd5b5035919050565b60008151808452611fa6816020860160208601612748565b601f01601f19169290920160200192915050565b60008351611fcc818460208801612748565b835190830190611fe0818360208801612748565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203090830184611f8e565b9695505050505050565b901515815260200190565b600060208252610f996020830184611f8e565b6020808252603a908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f66204d7574616e74446567656e4d6f6e7374657241706573000000000000606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f7700604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526039908201527f596f7520617265206e6f742057686974656c69737465642c20506c656173652060408201527f636f6e747261637420746f2061646d696e6973747261746f7200000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b9283526001600160a01b03919091166020830152604082015260600190565b600082198211156126f9576126f96127de565b500190565b60008261270d5761270d6127f4565b500490565b600081600019048311821515161561272c5761272c6127de565b500290565b600082821015612743576127436127de565b500390565b60005b8381101561276357818101518382015260200161274b565b83811115610ec55750506000910152565b60028104600182168061278857607f821691505b602082108114156127a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c3576127c36127de565b5060010190565b6000826127d9576127d96127f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461282e57600080fd5b50565b6001600160e01b03198116811461282e57600080fdfea26469706673582212206a637abe572dddb29fb0b4d8cfb14adb80ffa82c0ebe4174c3d8d3cd2fb86e9064736f6c63430008000033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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