ETH Price: $3,184.12 (+2.77%)

Token

The Project Cats Official (TPCO)
 

Overview

Max Total Supply

3,343 TPCO

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TPCO
0xbb1f78fe4729efe133825f87dbbb247cdb3ac0c0
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:
TPCO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract TPCO is ERC721A {
    using Strings for uint256;

    address public owner;

    uint256 public constant MAX_SUPPLY = 3343;
    uint256 public constant MAX_PUBLIC_MINT = 10;
    uint256 public constant MAX_WHITELIST_MINT = 10;
    uint256 public constant MAX_FREE_MINT = 10;
    uint256 public PUBLIC_SALE_PRICE = 0 ether;
    uint256 public WHITELIST_SALE_PRICE = 0 ether;

    string public baseTokenUri;
    string public placeholderTokenUri;

    bool public isRevealed = false;
    bool public publicSale = false;
    bool public whiteListSale = false;
    bool public pause = true;
    bool public teamMinted;

    bytes32 private merkleRoot;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor() ERC721A("The Project Cats Official", "TPCO") {
        owner = msg.sender;
    }

    modifier callerIsUser() {
        require(
            tx.origin == msg.sender,
            "TPC :: Cannot be called by a contract"
        );
        _;
    }
    modifier OnlyOwner() {
        require(owner == msg.sender, "You are not the owner");
        _;
    }

    function freeMint(uint256 _quantity) public callerIsUser {
        require(pause == false, "Sale is paused");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "TPC :: Beyond Max Supply"
        );
        require(
            (totalPublicMint[msg.sender] + _quantity) <= MAX_FREE_MINT,
            "TPC :: Already minted 3 times!"
        );
        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function mint(uint256 _quantity) external payable callerIsUser {
        require(pause == false, "Sale is paused");
        require(publicSale, "TPC :: Not Yet Active.");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "TPC :: Beyond Max Supply"
        );
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "TPC :: Below ");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity)
        external
        payable
        callerIsUser
    {
        require(whiteListSale, "TPC :: Minting is on Pause");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "TPC :: Cannot mint beyond max supply"
        );
        require(
            (totalWhitelistMint[msg.sender] + _quantity) <= MAX_WHITELIST_MINT,
            "TPC :: Cannot mint beyond whitelist max mint!"
        );
        require(
            msg.value >= (WHITELIST_SALE_PRICE * _quantity),
            "TPC :: Payment is below the price"
        );
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, sender),
            "TPC :: You are not whitelisted"
        );

        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external OnlyOwner {
        require(!teamMinted, "TPC :: Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 200);
    }

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

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

        uint256 trueId = tokenId + 1;

        if (!isRevealed) {
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return
            bytes(baseTokenUri).length > 0
                ? string(
                    abi.encodePacked(baseTokenUri, trueId.toString(), ".json")
                )
                : "";
    }

    function updatePublicPrice(uint256 _newPrice) public OnlyOwner {
        //update the public sale price
        PUBLIC_SALE_PRICE = _newPrice; //new price wei cost
    }

    function updateWhiteListPrice(uint256 _newPrice) public OnlyOwner {
        // update the whitelist sale price
        WHITELIST_SALE_PRICE = _newPrice; //new price wei cost
    }

    function setTokenUri(string memory _baseTokenUri) external OnlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function setPlaceHolderUri(string memory _placeholderTokenUri)
        external
        OnlyOwner
    {
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external OnlyOwner {
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32) {
        return merkleRoot;
    }

    function togglePause() external OnlyOwner {
        pause = !pause;
    }

    function toggleWhiteListSale() external OnlyOwner {
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external OnlyOwner {
        publicSale = !publicSale;
    }

    function toggleReveal() external OnlyOwner {
        isRevealed = !isRevealed;
    }

    function transferOwner(address _to) public OnlyOwner {
        owner = _to;
    }

    function withdraw() external OnlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

File 6 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"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":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","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":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updateWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556000600a556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600d60036101000a81548160ff0219169083151502179055503480156200008757600080fd5b506040518060400160405280601981526020017f5468652050726f6a6563742043617473204f6666696369616c000000000000008152506040518060400160405280600481526020017f5450434f0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010c9291906200018a565b508060039080519060200190620001259291906200018a565b50620001366200018560201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029f565b600090565b82805462000198906200023a565b90600052602060002090601f016020900481019282620001bc576000855562000208565b82601f10620001d757805160ff191683800117855562000208565b8280016001018555821562000208579182015b8281111562000207578251825591602001919060010190620001ea565b5b5090506200021791906200021b565b5090565b5b80821115620002365760008160009055506001016200021c565b5090565b600060028204905060018216806200025357607f821691505b602082108114156200026a576200026962000270565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149a880620002af6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a0712d68116100c1578063c08dfd3c1161007a578063c08dfd3c14610920578063c4ae31681461094b578063c87b56dd14610962578063e222c7f91461099f578063e8b5498d146109b6578063e985e9c5146109e15761027d565b8063a0712d6814610847578063a22cb46514610863578063b0962c531461088c578063b88d4fde146108b5578063ba7a86b8146108de578063bc912e1a146108f55761027d565b80637cb64759116101135780637cb647591461075b5780638456cb591461078457806386a173ee146107af5780638bb64a8c146107da5780638da5cb5b146107f157806395d89b411461081c5761027d565b80636352211e1461066257806365f130971461069f57806370a08231146106ca5780637a0101a2146107075780637c928fe9146107325761027d565b806323b872dd116101f357806342842e0e116101ac57806342842e0e1461057857806349590657146105a15780634cf5f7a4146105cc5780634fb2e45d146105f757806354214f69146106205780635b8ad4291461064b5761027d565b806323b872dd1461049b5780632904e6d9146104c457806332cb6b0c146104e057806333bc1c5c1461050b5780633ccfd60b1461053657806341cda2031461054d5761027d565b8063081812fc11610245578063081812fc1461037b578063095ea7b3146103b857806316e0a200146103e157806318160ddd1461040a578063184d0e4e146104355780631c16521c1461045e5761027d565b806301ffc9a7146102825780630345e3cb146102bf5780630675b7c6146102fc57806306fdde031461032557806307e89ec014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906139fd565b610a1e565b6040516102b69190613eec565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906137d9565b610b00565b6040516102f39190614104565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613a4f565b610b18565b005b34801561033157600080fd5b5061033a610bc2565b6040516103479190613f22565b60405180910390f35b34801561035c57600080fd5b50610365610c54565b6040516103729190614104565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613a90565b610c5a565b6040516103af9190613e85565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613944565b610cd6565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613a90565b610ddb565b005b34801561041657600080fd5b5061041f610e75565b60405161042c9190614104565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613a90565b610e8c565b005b34801561046a57600080fd5b50610485600480360381019061048091906137d9565b610f26565b6040516104929190614104565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd919061383e565b610f3e565b005b6104de60048036038101906104d99190613980565b610f4e565b005b3480156104ec57600080fd5b506104f561121c565b6040516105029190614104565b60405180910390f35b34801561051757600080fd5b50610520611222565b60405161052d9190613eec565b60405180910390f35b34801561054257600080fd5b5061054b611235565b005b34801561055957600080fd5b5061056261130e565b60405161056f9190614104565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a919061383e565b611313565b005b3480156105ad57600080fd5b506105b6611333565b6040516105c39190613f07565b60405180910390f35b3480156105d857600080fd5b506105e161133d565b6040516105ee9190613f22565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137d9565b6113cb565b005b34801561062c57600080fd5b5061063561149f565b6040516106429190613eec565b60405180910390f35b34801561065757600080fd5b506106606114b2565b005b34801561066e57600080fd5b5061068960048036038101906106849190613a90565b61156e565b6040516106969190613e85565b60405180910390f35b3480156106ab57600080fd5b506106b4611584565b6040516106c19190614104565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906137d9565b611589565b6040516106fe9190614104565b60405180910390f35b34801561071357600080fd5b5061071c611659565b6040516107299190613f22565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613a90565b6116e7565b005b34801561076757600080fd5b50610782600480360381019061077d91906139d4565b6118f3565b005b34801561079057600080fd5b5061079961198d565b6040516107a69190613eec565b60405180910390f35b3480156107bb57600080fd5b506107c46119a0565b6040516107d19190613eec565b60405180910390f35b3480156107e657600080fd5b506107ef6119b3565b005b3480156107fd57600080fd5b50610806611a6f565b6040516108139190613e85565b60405180910390f35b34801561082857600080fd5b50610831611a95565b60405161083e9190613f22565b60405180910390f35b610861600480360381019061085c9190613a90565b611b27565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613908565b611d44565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613a4f565b611ebc565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061388d565b611f66565b005b3480156108ea57600080fd5b506108f3611fde565b005b34801561090157600080fd5b5061090a6120e6565b6040516109179190614104565b60405180910390f35b34801561092c57600080fd5b506109356120ec565b6040516109429190614104565b60405180910390f35b34801561095757600080fd5b506109606120f1565b005b34801561096e57600080fd5b5061098960048036038101906109849190613a90565b6121ad565b6040516109969190613f22565b60405180910390f35b3480156109ab57600080fd5b506109b461230f565b005b3480156109c257600080fd5b506109cb6123cb565b6040516109d89190613eec565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613802565b6123de565b604051610a159190613eec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af95750610af882612472565b5b9050919050565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90613fa4565b60405180910390fd5b80600b9080519060200190610bbe92919061350f565b5050565b606060028054610bd1906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfd906143ff565b8015610c4a5780601f10610c1f57610100808354040283529160200191610c4a565b820191906000526020600020905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b60095481565b6000610c65826124dc565b610c9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce18261156e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d49576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6861252a565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb57610d9481610d8f61252a565b6123de565b610dca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610dd6838383612532565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613fa4565b60405180910390fd5b8060098190555050565b6000610e7f6125e4565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390613fa4565b60405180910390fd5b80600a8190555050565b600f6020528060005260406000206000915090505481565b610f498383836125e9565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614064565b60405180910390fd5b600d60029054906101000a900460ff1661100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290613f44565b60405180910390fd5b610d0f81611017610e75565b611021919061422a565b1115611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906140c4565b60405180910390fd5b600a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110af919061422a565b11156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790614044565b60405180910390fd5b80600a546110fe91906142b1565b341015611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614004565b60405180910390fd5b6000336040516020016111539190613e3b565b60405160208183030381529060405280519060200120905061117883600e5483612a9f565b6111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae906140e4565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611206919061422a565b925050819055506112173383612ab6565b505050565b610d0f81565b600d60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613fa4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561130b573d6000803e3d6000fd5b50565b600a81565b61132e83838360405180602001604052806000815250611f66565b505050565b6000600e54905090565b600c805461134a906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611376906143ff565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613fa4565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613fa4565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600061157982612ad4565b600001519050919050565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600b8054611666906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906143ff565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90614064565b60405180910390fd5b60001515600d60039054906101000a900460ff161515146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906140a4565b60405180910390fd5b610d0f816117b7610e75565b6117c1919061422a565b1115611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613fe4565b60405180910390fd5b600a81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184f919061422a565b1115611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613fc4565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118df919061422a565b925050819055506118f03382612ab6565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613fa4565b60405180910390fd5b80600e8190555050565b600d60039054906101000a900460ff1681565b600d60029054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90613fa4565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054611aa4906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad0906143ff565b8015611b1d5780601f10611af257610100808354040283529160200191611b1d565b820191906000526020600020905b815481529060010190602001808311611b0057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614064565b60405180910390fd5b60001515600d60039054906101000a900460ff16151514611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906140a4565b60405180910390fd5b600d60019054906101000a900460ff16611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614084565b60405180910390fd5b610d0f81611c46610e75565b611c50919061422a565b1115611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613fe4565b60405180910390fd5b80600954611c9f91906142b1565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613f84565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d30919061422a565b92505081905550611d413382612ab6565b50565b611d4c61252a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dbe61252a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6b61252a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb09190613eec565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613fa4565b60405180910390fd5b80600c9080519060200190611f6292919061350f565b5050565b611f718484846125e9565b611f908373ffffffffffffffffffffffffffffffffffffffff16612d5f565b15611fd857611fa184848484612d82565b611fd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590613fa4565b60405180910390fd5b600d60049054906101000a900460ff16156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590613f64565b60405180910390fd5b6001600d60046101000a81548160ff0219169083151502179055506120e43360c8612ab6565b565b600a5481565b600a81565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890613fa4565b60405180910390fd5b600d60039054906101000a900460ff1615600d60036101000a81548160ff021916908315150217905550565b60606121b8826124dc565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614024565b60405180910390fd5b6000600183612206919061422a565b9050600d60009054906101000a900460ff166122af57600c8054612229906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612255906143ff565b80156122a25780601f10612277576101008083540402835291602001916122a2565b820191906000526020600020905b81548152906001019060200180831161228557829003601f168201915b505050505091505061230a565b6000600b80546122be906143ff565b9050116122da5760405180602001604052806000815250612306565b600b6122e582612ee2565b6040516020016122f6929190613e56565b6040516020818303038152906040525b9150505b919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613fa4565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60049054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124e76125e4565b111580156124f6575060005482105b8015612523575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006125f482612ad4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661268061252a565b73ffffffffffffffffffffffffffffffffffffffff1614806126af57506126ae856126a961252a565b6123de565b5b806126f457506126bd61252a565b73ffffffffffffffffffffffffffffffffffffffff166126dc84610c5a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061272d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612794576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a1858585600161308f565b6127ad60008487612532565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a2d576000548214612a2c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a988585856001613095565b5050505050565b600082612aac858461309b565b1490509392505050565b612ad0828260405180602001604052806000815250613136565b5050565b612adc613595565b600082905080612aea6125e4565b11612d2857600054811015612d27576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d2557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c09578092505050612d5a565b5b600115612d2457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1f578092505050612d5a565b612c0a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da861252a565b8786866040518563ffffffff1660e01b8152600401612dca9493929190613ea0565b602060405180830381600087803b158015612de457600080fd5b505af1925050508015612e1557506040513d601f19601f82011682018060405250810190612e129190613a26565b60015b612e8f573d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b50600081511415612e87576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f2a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061308a565b600082905060005b60008214612f5c578080612f4590614462565b915050600a82612f559190614280565b9150612f32565b60008167ffffffffffffffff811115612f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612fd05781602001600182028036833780820191505090505b5090505b6000851461308357600182612fe9919061430b565b9150600a85612ff891906144cf565b6030613004919061422a565b60f81b818381518110613040577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561307c9190614280565b9450612fd4565b8093505050505b919050565b50505050565b50505050565b60008082905060005b845181101561312b5760008582815181106130e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161310a5761310383826134f8565b9250613117565b61311481846134f8565b92505b50808061312390614462565b9150506130a4565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156131de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131eb600085838661308f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133ac8673ffffffffffffffffffffffffffffffffffffffff16612d5f565b15613471575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134216000878480600101955087612d82565b613457576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133b257826000541461346c57600080fd5b6134dc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613472575b8160008190555050506134f26000858386613095565b50505050565b600082600052816020526040600020905092915050565b82805461351b906143ff565b90600052602060002090601f01602090048101928261353d5760008555613584565b82601f1061355657805160ff1916838001178555613584565b82800160010185558215613584579182015b82811115613583578251825591602001919060010190613568565b5b50905061359191906135d8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f15760008160009055506001016135d9565b5090565b600061360861360384614144565b61411f565b9050808382526020820190508285602086028201111561362757600080fd5b60005b85811015613657578161363d8882613731565b84526020840193506020830192505060018101905061362a565b5050509392505050565b600061367461366f84614170565b61411f565b90508281526020810184848401111561368c57600080fd5b6136978482856143bd565b509392505050565b60006136b26136ad846141a1565b61411f565b9050828152602081018484840111156136ca57600080fd5b6136d58482856143bd565b509392505050565b6000813590506136ec816148ff565b92915050565b600082601f83011261370357600080fd5b81356137138482602086016135f5565b91505092915050565b60008135905061372b81614916565b92915050565b6000813590506137408161492d565b92915050565b60008135905061375581614944565b92915050565b60008151905061376a81614944565b92915050565b600082601f83011261378157600080fd5b8135613791848260208601613661565b91505092915050565b600082601f8301126137ab57600080fd5b81356137bb84826020860161369f565b91505092915050565b6000813590506137d38161495b565b92915050565b6000602082840312156137eb57600080fd5b60006137f9848285016136dd565b91505092915050565b6000806040838503121561381557600080fd5b6000613823858286016136dd565b9250506020613834858286016136dd565b9150509250929050565b60008060006060848603121561385357600080fd5b6000613861868287016136dd565b9350506020613872868287016136dd565b9250506040613883868287016137c4565b9150509250925092565b600080600080608085870312156138a357600080fd5b60006138b1878288016136dd565b94505060206138c2878288016136dd565b93505060406138d3878288016137c4565b925050606085013567ffffffffffffffff8111156138f057600080fd5b6138fc87828801613770565b91505092959194509250565b6000806040838503121561391b57600080fd5b6000613929858286016136dd565b925050602061393a8582860161371c565b9150509250929050565b6000806040838503121561395757600080fd5b6000613965858286016136dd565b9250506020613976858286016137c4565b9150509250929050565b6000806040838503121561399357600080fd5b600083013567ffffffffffffffff8111156139ad57600080fd5b6139b9858286016136f2565b92505060206139ca858286016137c4565b9150509250929050565b6000602082840312156139e657600080fd5b60006139f484828501613731565b91505092915050565b600060208284031215613a0f57600080fd5b6000613a1d84828501613746565b91505092915050565b600060208284031215613a3857600080fd5b6000613a468482850161375b565b91505092915050565b600060208284031215613a6157600080fd5b600082013567ffffffffffffffff811115613a7b57600080fd5b613a878482850161379a565b91505092915050565b600060208284031215613aa257600080fd5b6000613ab0848285016137c4565b91505092915050565b613ac28161433f565b82525050565b613ad9613ad48261433f565b6144ab565b82525050565b613ae881614351565b82525050565b613af78161435d565b82525050565b6000613b08826141e7565b613b1281856141fd565b9350613b228185602086016143cc565b613b2b816145bc565b840191505092915050565b6000613b41826141f2565b613b4b818561420e565b9350613b5b8185602086016143cc565b613b64816145bc565b840191505092915050565b6000613b7a826141f2565b613b84818561421f565b9350613b948185602086016143cc565b80840191505092915050565b60008154613bad816143ff565b613bb7818661421f565b94506001821660008114613bd25760018114613be357613c16565b60ff19831686528186019350613c16565b613bec856141d2565b60005b83811015613c0e57815481890152600182019150602081019050613bef565b838801955050505b50505092915050565b6000613c2c601a8361420e565b9150613c37826145da565b602082019050919050565b6000613c4f601a8361420e565b9150613c5a82614603565b602082019050919050565b6000613c72600d8361420e565b9150613c7d8261462c565b602082019050919050565b6000613c9560158361420e565b9150613ca082614655565b602082019050919050565b6000613cb8601e8361420e565b9150613cc38261467e565b602082019050919050565b6000613cdb60188361420e565b9150613ce6826146a7565b602082019050919050565b6000613cfe60218361420e565b9150613d09826146d0565b604082019050919050565b6000613d2160058361421f565b9150613d2c8261471f565b600582019050919050565b6000613d44602f8361420e565b9150613d4f82614748565b604082019050919050565b6000613d67602d8361420e565b9150613d7282614797565b604082019050919050565b6000613d8a60258361420e565b9150613d95826147e6565b604082019050919050565b6000613dad60168361420e565b9150613db882614835565b602082019050919050565b6000613dd0600e8361420e565b9150613ddb8261485e565b602082019050919050565b6000613df360248361420e565b9150613dfe82614887565b604082019050919050565b6000613e16601e8361420e565b9150613e21826148d6565b602082019050919050565b613e35816143b3565b82525050565b6000613e478284613ac8565b60148201915081905092915050565b6000613e628285613ba0565b9150613e6e8284613b6f565b9150613e7982613d14565b91508190509392505050565b6000602082019050613e9a6000830184613ab9565b92915050565b6000608082019050613eb56000830187613ab9565b613ec26020830186613ab9565b613ecf6040830185613e2c565b8181036060830152613ee18184613afd565b905095945050505050565b6000602082019050613f016000830184613adf565b92915050565b6000602082019050613f1c6000830184613aee565b92915050565b60006020820190508181036000830152613f3c8184613b36565b905092915050565b60006020820190508181036000830152613f5d81613c1f565b9050919050565b60006020820190508181036000830152613f7d81613c42565b9050919050565b60006020820190508181036000830152613f9d81613c65565b9050919050565b60006020820190508181036000830152613fbd81613c88565b9050919050565b60006020820190508181036000830152613fdd81613cab565b9050919050565b60006020820190508181036000830152613ffd81613cce565b9050919050565b6000602082019050818103600083015261401d81613cf1565b9050919050565b6000602082019050818103600083015261403d81613d37565b9050919050565b6000602082019050818103600083015261405d81613d5a565b9050919050565b6000602082019050818103600083015261407d81613d7d565b9050919050565b6000602082019050818103600083015261409d81613da0565b9050919050565b600060208201905081810360008301526140bd81613dc3565b9050919050565b600060208201905081810360008301526140dd81613de6565b9050919050565b600060208201905081810360008301526140fd81613e09565b9050919050565b60006020820190506141196000830184613e2c565b92915050565b600061412961413a565b90506141358282614431565b919050565b6000604051905090565b600067ffffffffffffffff82111561415f5761415e61458d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561418b5761418a61458d565b5b614194826145bc565b9050602081019050919050565b600067ffffffffffffffff8211156141bc576141bb61458d565b5b6141c5826145bc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614235826143b3565b9150614240836143b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561427557614274614500565b5b828201905092915050565b600061428b826143b3565b9150614296836143b3565b9250826142a6576142a561452f565b5b828204905092915050565b60006142bc826143b3565b91506142c7836143b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614300576142ff614500565b5b828202905092915050565b6000614316826143b3565b9150614321836143b3565b92508282101561433457614333614500565b5b828203905092915050565b600061434a82614393565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143ea5780820151818401526020810190506143cf565b838111156143f9576000848401525b50505050565b6000600282049050600182168061441757607f821691505b6020821081141561442b5761442a61455e565b5b50919050565b61443a826145bc565b810181811067ffffffffffffffff821117156144595761445861458d565b5b80604052505050565b600061446d826143b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144a05761449f614500565b5b600182019050919050565b60006144b6826144bd565b9050919050565b60006144c8826145cd565b9050919050565b60006144da826143b3565b91506144e5836143b3565b9250826144f5576144f461452f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f545043203a3a204d696e74696e67206973206f6e205061757365000000000000600082015250565b7f545043203a3a205465616d20616c7265616479206d696e746564000000000000600082015250565b7f545043203a3a2042656c6f772000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f545043203a3a20416c7265616479206d696e74656420332074696d6573210000600082015250565b7f545043203a3a204265796f6e64204d617820537570706c790000000000000000600082015250565b7f545043203a3a205061796d656e742069732062656c6f7720746865207072696360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f545043203a3a2043616e6e6f74206d696e74206265796f6e642077686974656c60008201527f697374206d6178206d696e742100000000000000000000000000000000000000602082015250565b7f545043203a3a2043616e6e6f742062652063616c6c6564206279206120636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b7f545043203a3a204e6f7420596574204163746976652e00000000000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f545043203a3a2043616e6e6f74206d696e74206265796f6e64206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f545043203a3a20596f7520617265206e6f742077686974656c69737465640000600082015250565b6149088161433f565b811461491357600080fd5b50565b61491f81614351565b811461492a57600080fd5b50565b6149368161435d565b811461494157600080fd5b50565b61494d81614367565b811461495857600080fd5b50565b614964816143b3565b811461496f57600080fd5b5056fea26469706673582212206e4ee875da366180ff33982c77ec8e0dc4a7e024295777892410c968eef382de64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a0712d68116100c1578063c08dfd3c1161007a578063c08dfd3c14610920578063c4ae31681461094b578063c87b56dd14610962578063e222c7f91461099f578063e8b5498d146109b6578063e985e9c5146109e15761027d565b8063a0712d6814610847578063a22cb46514610863578063b0962c531461088c578063b88d4fde146108b5578063ba7a86b8146108de578063bc912e1a146108f55761027d565b80637cb64759116101135780637cb647591461075b5780638456cb591461078457806386a173ee146107af5780638bb64a8c146107da5780638da5cb5b146107f157806395d89b411461081c5761027d565b80636352211e1461066257806365f130971461069f57806370a08231146106ca5780637a0101a2146107075780637c928fe9146107325761027d565b806323b872dd116101f357806342842e0e116101ac57806342842e0e1461057857806349590657146105a15780634cf5f7a4146105cc5780634fb2e45d146105f757806354214f69146106205780635b8ad4291461064b5761027d565b806323b872dd1461049b5780632904e6d9146104c457806332cb6b0c146104e057806333bc1c5c1461050b5780633ccfd60b1461053657806341cda2031461054d5761027d565b8063081812fc11610245578063081812fc1461037b578063095ea7b3146103b857806316e0a200146103e157806318160ddd1461040a578063184d0e4e146104355780631c16521c1461045e5761027d565b806301ffc9a7146102825780630345e3cb146102bf5780630675b7c6146102fc57806306fdde031461032557806307e89ec014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906139fd565b610a1e565b6040516102b69190613eec565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906137d9565b610b00565b6040516102f39190614104565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613a4f565b610b18565b005b34801561033157600080fd5b5061033a610bc2565b6040516103479190613f22565b60405180910390f35b34801561035c57600080fd5b50610365610c54565b6040516103729190614104565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613a90565b610c5a565b6040516103af9190613e85565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613944565b610cd6565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613a90565b610ddb565b005b34801561041657600080fd5b5061041f610e75565b60405161042c9190614104565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613a90565b610e8c565b005b34801561046a57600080fd5b50610485600480360381019061048091906137d9565b610f26565b6040516104929190614104565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd919061383e565b610f3e565b005b6104de60048036038101906104d99190613980565b610f4e565b005b3480156104ec57600080fd5b506104f561121c565b6040516105029190614104565b60405180910390f35b34801561051757600080fd5b50610520611222565b60405161052d9190613eec565b60405180910390f35b34801561054257600080fd5b5061054b611235565b005b34801561055957600080fd5b5061056261130e565b60405161056f9190614104565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a919061383e565b611313565b005b3480156105ad57600080fd5b506105b6611333565b6040516105c39190613f07565b60405180910390f35b3480156105d857600080fd5b506105e161133d565b6040516105ee9190613f22565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137d9565b6113cb565b005b34801561062c57600080fd5b5061063561149f565b6040516106429190613eec565b60405180910390f35b34801561065757600080fd5b506106606114b2565b005b34801561066e57600080fd5b5061068960048036038101906106849190613a90565b61156e565b6040516106969190613e85565b60405180910390f35b3480156106ab57600080fd5b506106b4611584565b6040516106c19190614104565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906137d9565b611589565b6040516106fe9190614104565b60405180910390f35b34801561071357600080fd5b5061071c611659565b6040516107299190613f22565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613a90565b6116e7565b005b34801561076757600080fd5b50610782600480360381019061077d91906139d4565b6118f3565b005b34801561079057600080fd5b5061079961198d565b6040516107a69190613eec565b60405180910390f35b3480156107bb57600080fd5b506107c46119a0565b6040516107d19190613eec565b60405180910390f35b3480156107e657600080fd5b506107ef6119b3565b005b3480156107fd57600080fd5b50610806611a6f565b6040516108139190613e85565b60405180910390f35b34801561082857600080fd5b50610831611a95565b60405161083e9190613f22565b60405180910390f35b610861600480360381019061085c9190613a90565b611b27565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613908565b611d44565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613a4f565b611ebc565b005b3480156108c157600080fd5b506108dc60048036038101906108d7919061388d565b611f66565b005b3480156108ea57600080fd5b506108f3611fde565b005b34801561090157600080fd5b5061090a6120e6565b6040516109179190614104565b60405180910390f35b34801561092c57600080fd5b506109356120ec565b6040516109429190614104565b60405180910390f35b34801561095757600080fd5b506109606120f1565b005b34801561096e57600080fd5b5061098960048036038101906109849190613a90565b6121ad565b6040516109969190613f22565b60405180910390f35b3480156109ab57600080fd5b506109b461230f565b005b3480156109c257600080fd5b506109cb6123cb565b6040516109d89190613eec565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613802565b6123de565b604051610a159190613eec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af95750610af882612472565b5b9050919050565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90613fa4565b60405180910390fd5b80600b9080519060200190610bbe92919061350f565b5050565b606060028054610bd1906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfd906143ff565b8015610c4a5780601f10610c1f57610100808354040283529160200191610c4a565b820191906000526020600020905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b60095481565b6000610c65826124dc565b610c9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce18261156e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d49576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6861252a565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb57610d9481610d8f61252a565b6123de565b610dca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610dd6838383612532565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613fa4565b60405180910390fd5b8060098190555050565b6000610e7f6125e4565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390613fa4565b60405180910390fd5b80600a8190555050565b600f6020528060005260406000206000915090505481565b610f498383836125e9565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614064565b60405180910390fd5b600d60029054906101000a900460ff1661100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290613f44565b60405180910390fd5b610d0f81611017610e75565b611021919061422a565b1115611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906140c4565b60405180910390fd5b600a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110af919061422a565b11156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790614044565b60405180910390fd5b80600a546110fe91906142b1565b341015611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614004565b60405180910390fd5b6000336040516020016111539190613e3b565b60405160208183030381529060405280519060200120905061117883600e5483612a9f565b6111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae906140e4565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611206919061422a565b925050819055506112173383612ab6565b505050565b610d0f81565b600d60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613fa4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561130b573d6000803e3d6000fd5b50565b600a81565b61132e83838360405180602001604052806000815250611f66565b505050565b6000600e54905090565b600c805461134a906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611376906143ff565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613fa4565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613fa4565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600061157982612ad4565b600001519050919050565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600b8054611666906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906143ff565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90614064565b60405180910390fd5b60001515600d60039054906101000a900460ff161515146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906140a4565b60405180910390fd5b610d0f816117b7610e75565b6117c1919061422a565b1115611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613fe4565b60405180910390fd5b600a81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184f919061422a565b1115611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613fc4565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118df919061422a565b925050819055506118f03382612ab6565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90613fa4565b60405180910390fd5b80600e8190555050565b600d60039054906101000a900460ff1681565b600d60029054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90613fa4565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054611aa4906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad0906143ff565b8015611b1d5780601f10611af257610100808354040283529160200191611b1d565b820191906000526020600020905b815481529060010190602001808311611b0057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614064565b60405180910390fd5b60001515600d60039054906101000a900460ff16151514611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906140a4565b60405180910390fd5b600d60019054906101000a900460ff16611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614084565b60405180910390fd5b610d0f81611c46610e75565b611c50919061422a565b1115611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613fe4565b60405180910390fd5b80600954611c9f91906142b1565b341015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613f84565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d30919061422a565b92505081905550611d413382612ab6565b50565b611d4c61252a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dbe61252a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6b61252a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb09190613eec565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613fa4565b60405180910390fd5b80600c9080519060200190611f6292919061350f565b5050565b611f718484846125e9565b611f908373ffffffffffffffffffffffffffffffffffffffff16612d5f565b15611fd857611fa184848484612d82565b611fd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590613fa4565b60405180910390fd5b600d60049054906101000a900460ff16156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590613f64565b60405180910390fd5b6001600d60046101000a81548160ff0219169083151502179055506120e43360c8612ab6565b565b600a5481565b600a81565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890613fa4565b60405180910390fd5b600d60039054906101000a900460ff1615600d60036101000a81548160ff021916908315150217905550565b60606121b8826124dc565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614024565b60405180910390fd5b6000600183612206919061422a565b9050600d60009054906101000a900460ff166122af57600c8054612229906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612255906143ff565b80156122a25780601f10612277576101008083540402835291602001916122a2565b820191906000526020600020905b81548152906001019060200180831161228557829003601f168201915b505050505091505061230a565b6000600b80546122be906143ff565b9050116122da5760405180602001604052806000815250612306565b600b6122e582612ee2565b6040516020016122f6929190613e56565b6040516020818303038152906040525b9150505b919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613fa4565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60049054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124e76125e4565b111580156124f6575060005482105b8015612523575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006125f482612ad4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661268061252a565b73ffffffffffffffffffffffffffffffffffffffff1614806126af57506126ae856126a961252a565b6123de565b5b806126f457506126bd61252a565b73ffffffffffffffffffffffffffffffffffffffff166126dc84610c5a565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061272d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612794576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a1858585600161308f565b6127ad60008487612532565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a2d576000548214612a2c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a988585856001613095565b5050505050565b600082612aac858461309b565b1490509392505050565b612ad0828260405180602001604052806000815250613136565b5050565b612adc613595565b600082905080612aea6125e4565b11612d2857600054811015612d27576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d2557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c09578092505050612d5a565b5b600115612d2457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1f578092505050612d5a565b612c0a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da861252a565b8786866040518563ffffffff1660e01b8152600401612dca9493929190613ea0565b602060405180830381600087803b158015612de457600080fd5b505af1925050508015612e1557506040513d601f19601f82011682018060405250810190612e129190613a26565b60015b612e8f573d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b50600081511415612e87576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f2a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061308a565b600082905060005b60008214612f5c578080612f4590614462565b915050600a82612f559190614280565b9150612f32565b60008167ffffffffffffffff811115612f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612fd05781602001600182028036833780820191505090505b5090505b6000851461308357600182612fe9919061430b565b9150600a85612ff891906144cf565b6030613004919061422a565b60f81b818381518110613040577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561307c9190614280565b9450612fd4565b8093505050505b919050565b50505050565b50505050565b60008082905060005b845181101561312b5760008582815181106130e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161310a5761310383826134f8565b9250613117565b61311481846134f8565b92505b50808061312390614462565b9150506130a4565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156131de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131eb600085838661308f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506133ac8673ffffffffffffffffffffffffffffffffffffffff16612d5f565b15613471575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134216000878480600101955087612d82565b613457576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106133b257826000541461346c57600080fd5b6134dc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613472575b8160008190555050506134f26000858386613095565b50505050565b600082600052816020526040600020905092915050565b82805461351b906143ff565b90600052602060002090601f01602090048101928261353d5760008555613584565b82601f1061355657805160ff1916838001178555613584565b82800160010185558215613584579182015b82811115613583578251825591602001919060010190613568565b5b50905061359191906135d8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135f15760008160009055506001016135d9565b5090565b600061360861360384614144565b61411f565b9050808382526020820190508285602086028201111561362757600080fd5b60005b85811015613657578161363d8882613731565b84526020840193506020830192505060018101905061362a565b5050509392505050565b600061367461366f84614170565b61411f565b90508281526020810184848401111561368c57600080fd5b6136978482856143bd565b509392505050565b60006136b26136ad846141a1565b61411f565b9050828152602081018484840111156136ca57600080fd5b6136d58482856143bd565b509392505050565b6000813590506136ec816148ff565b92915050565b600082601f83011261370357600080fd5b81356137138482602086016135f5565b91505092915050565b60008135905061372b81614916565b92915050565b6000813590506137408161492d565b92915050565b60008135905061375581614944565b92915050565b60008151905061376a81614944565b92915050565b600082601f83011261378157600080fd5b8135613791848260208601613661565b91505092915050565b600082601f8301126137ab57600080fd5b81356137bb84826020860161369f565b91505092915050565b6000813590506137d38161495b565b92915050565b6000602082840312156137eb57600080fd5b60006137f9848285016136dd565b91505092915050565b6000806040838503121561381557600080fd5b6000613823858286016136dd565b9250506020613834858286016136dd565b9150509250929050565b60008060006060848603121561385357600080fd5b6000613861868287016136dd565b9350506020613872868287016136dd565b9250506040613883868287016137c4565b9150509250925092565b600080600080608085870312156138a357600080fd5b60006138b1878288016136dd565b94505060206138c2878288016136dd565b93505060406138d3878288016137c4565b925050606085013567ffffffffffffffff8111156138f057600080fd5b6138fc87828801613770565b91505092959194509250565b6000806040838503121561391b57600080fd5b6000613929858286016136dd565b925050602061393a8582860161371c565b9150509250929050565b6000806040838503121561395757600080fd5b6000613965858286016136dd565b9250506020613976858286016137c4565b9150509250929050565b6000806040838503121561399357600080fd5b600083013567ffffffffffffffff8111156139ad57600080fd5b6139b9858286016136f2565b92505060206139ca858286016137c4565b9150509250929050565b6000602082840312156139e657600080fd5b60006139f484828501613731565b91505092915050565b600060208284031215613a0f57600080fd5b6000613a1d84828501613746565b91505092915050565b600060208284031215613a3857600080fd5b6000613a468482850161375b565b91505092915050565b600060208284031215613a6157600080fd5b600082013567ffffffffffffffff811115613a7b57600080fd5b613a878482850161379a565b91505092915050565b600060208284031215613aa257600080fd5b6000613ab0848285016137c4565b91505092915050565b613ac28161433f565b82525050565b613ad9613ad48261433f565b6144ab565b82525050565b613ae881614351565b82525050565b613af78161435d565b82525050565b6000613b08826141e7565b613b1281856141fd565b9350613b228185602086016143cc565b613b2b816145bc565b840191505092915050565b6000613b41826141f2565b613b4b818561420e565b9350613b5b8185602086016143cc565b613b64816145bc565b840191505092915050565b6000613b7a826141f2565b613b84818561421f565b9350613b948185602086016143cc565b80840191505092915050565b60008154613bad816143ff565b613bb7818661421f565b94506001821660008114613bd25760018114613be357613c16565b60ff19831686528186019350613c16565b613bec856141d2565b60005b83811015613c0e57815481890152600182019150602081019050613bef565b838801955050505b50505092915050565b6000613c2c601a8361420e565b9150613c37826145da565b602082019050919050565b6000613c4f601a8361420e565b9150613c5a82614603565b602082019050919050565b6000613c72600d8361420e565b9150613c7d8261462c565b602082019050919050565b6000613c9560158361420e565b9150613ca082614655565b602082019050919050565b6000613cb8601e8361420e565b9150613cc38261467e565b602082019050919050565b6000613cdb60188361420e565b9150613ce6826146a7565b602082019050919050565b6000613cfe60218361420e565b9150613d09826146d0565b604082019050919050565b6000613d2160058361421f565b9150613d2c8261471f565b600582019050919050565b6000613d44602f8361420e565b9150613d4f82614748565b604082019050919050565b6000613d67602d8361420e565b9150613d7282614797565b604082019050919050565b6000613d8a60258361420e565b9150613d95826147e6565b604082019050919050565b6000613dad60168361420e565b9150613db882614835565b602082019050919050565b6000613dd0600e8361420e565b9150613ddb8261485e565b602082019050919050565b6000613df360248361420e565b9150613dfe82614887565b604082019050919050565b6000613e16601e8361420e565b9150613e21826148d6565b602082019050919050565b613e35816143b3565b82525050565b6000613e478284613ac8565b60148201915081905092915050565b6000613e628285613ba0565b9150613e6e8284613b6f565b9150613e7982613d14565b91508190509392505050565b6000602082019050613e9a6000830184613ab9565b92915050565b6000608082019050613eb56000830187613ab9565b613ec26020830186613ab9565b613ecf6040830185613e2c565b8181036060830152613ee18184613afd565b905095945050505050565b6000602082019050613f016000830184613adf565b92915050565b6000602082019050613f1c6000830184613aee565b92915050565b60006020820190508181036000830152613f3c8184613b36565b905092915050565b60006020820190508181036000830152613f5d81613c1f565b9050919050565b60006020820190508181036000830152613f7d81613c42565b9050919050565b60006020820190508181036000830152613f9d81613c65565b9050919050565b60006020820190508181036000830152613fbd81613c88565b9050919050565b60006020820190508181036000830152613fdd81613cab565b9050919050565b60006020820190508181036000830152613ffd81613cce565b9050919050565b6000602082019050818103600083015261401d81613cf1565b9050919050565b6000602082019050818103600083015261403d81613d37565b9050919050565b6000602082019050818103600083015261405d81613d5a565b9050919050565b6000602082019050818103600083015261407d81613d7d565b9050919050565b6000602082019050818103600083015261409d81613da0565b9050919050565b600060208201905081810360008301526140bd81613dc3565b9050919050565b600060208201905081810360008301526140dd81613de6565b9050919050565b600060208201905081810360008301526140fd81613e09565b9050919050565b60006020820190506141196000830184613e2c565b92915050565b600061412961413a565b90506141358282614431565b919050565b6000604051905090565b600067ffffffffffffffff82111561415f5761415e61458d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561418b5761418a61458d565b5b614194826145bc565b9050602081019050919050565b600067ffffffffffffffff8211156141bc576141bb61458d565b5b6141c5826145bc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614235826143b3565b9150614240836143b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561427557614274614500565b5b828201905092915050565b600061428b826143b3565b9150614296836143b3565b9250826142a6576142a561452f565b5b828204905092915050565b60006142bc826143b3565b91506142c7836143b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614300576142ff614500565b5b828202905092915050565b6000614316826143b3565b9150614321836143b3565b92508282101561433457614333614500565b5b828203905092915050565b600061434a82614393565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143ea5780820151818401526020810190506143cf565b838111156143f9576000848401525b50505050565b6000600282049050600182168061441757607f821691505b6020821081141561442b5761442a61455e565b5b50919050565b61443a826145bc565b810181811067ffffffffffffffff821117156144595761445861458d565b5b80604052505050565b600061446d826143b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144a05761449f614500565b5b600182019050919050565b60006144b6826144bd565b9050919050565b60006144c8826145cd565b9050919050565b60006144da826143b3565b91506144e5836143b3565b9250826144f5576144f461452f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f545043203a3a204d696e74696e67206973206f6e205061757365000000000000600082015250565b7f545043203a3a205465616d20616c7265616479206d696e746564000000000000600082015250565b7f545043203a3a2042656c6f772000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f545043203a3a20416c7265616479206d696e74656420332074696d6573210000600082015250565b7f545043203a3a204265796f6e64204d617820537570706c790000000000000000600082015250565b7f545043203a3a205061796d656e742069732062656c6f7720746865207072696360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f545043203a3a2043616e6e6f74206d696e74206265796f6e642077686974656c60008201527f697374206d6178206d696e742100000000000000000000000000000000000000602082015250565b7f545043203a3a2043616e6e6f742062652063616c6c6564206279206120636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b7f545043203a3a204e6f7420596574204163746976652e00000000000000000000600082015250565b7f53616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f545043203a3a2043616e6e6f74206d696e74206265796f6e64206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f545043203a3a20596f7520617265206e6f742077686974656c69737465640000600082015250565b6149088161433f565b811461491357600080fd5b50565b61491f81614351565b811461492a57600080fd5b50565b6149368161435d565b811461494157600080fd5b50565b61494d81614367565b811461495857600080fd5b50565b614964816143b3565b811461496f57600080fd5b5056fea26469706673582212206e4ee875da366180ff33982c77ec8e0dc4a7e024295777892410c968eef382de64736f6c63430008040033

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.