ETH Price: $3,269.62 (-5.91%)

Token

YETIPUNKS (YP)
 

Overview

Max Total Supply

200 YP

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 YP
0xb00cdd1ef43e7b7d2fdad4a07e6a1fd13382b90a
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:
YetiPunks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : YetiPunks.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract YetiPunks is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    uint256 public immutable maxPerAddressDuringPublicSale = 6;
    uint256 public immutable amountForGiveaway;
    bool private revealed = false;
    bool private publicSaleOn = false;
    string public notRevealedUri;

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        uint256 amountForGiveaway_,
        string memory _initBaseUri,
        string memory _initNotRevealedUri
    ) ERC721A("YETIPUNKS", "YP", maxBatchSize_, collectionSize_) {
        amountForGiveaway = amountForGiveaway_;

        setBaseURI(_initBaseUri);
        setNotRevealedURI(_initNotRevealedUri);

        address[] memory devAddresses = new address[](3);
        devAddresses[0] = 0xbe16A803431fB1694656187334c50792031CD6Ac;
        devAddresses[1] = 0xAE534782fE40DA31a4D890d3bADAeF0352FEead7;
        devAddresses[2] = 0x7638aC632C177BB6eB88826065eb62b878F93754;
        devMint(devAddresses, 7);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        uint256 publicPrice = 0.02 ether;
        require(publicSaleOn, "Mint is not live");
        require(quantity <= maxBatchSize, "Max batch minting quantity exceeded");
        require(
            totalSupply() + quantity <= collectionSize - amountForGiveaway,
            "Public sale finished"
        );
        require(
            numberMinted(msg.sender) + quantity <=
                maxPerAddressDuringPublicSale,
            "Wallet limit exceeded"
        );
        require(msg.value >= publicPrice, "Need to send more ETH");
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    // For marketing etc.
    function devMint(address[] memory receiverAddresses, uint256 mintAmount)
        public
        onlyOwner
    {
        require(
            totalSupply() + mintAmount <= collectionSize,
            "Exceeded max supply"
        );

        for (uint256 i = 0; i < receiverAddresses.length; i++) {
            _safeMint(receiverAddresses[i], mintAmount);
        }
    }

    // metadata URI
    string private _baseTokenURI;

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

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

        string memory baseURI = _baseURI();

        if (revealed == true) {
            return
                bytes(baseURI).length > 0
                    ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                    : "";
        } else {
            return notRevealedUri;
        }
    }

    function revealCollection() public onlyOwner {
        revealed = true;
    }

    function setPublicSale(bool state) public onlyOwner {
        publicSaleOn = state;
    }

    function withdrawBalance() public onlyOwner {
        uint256 oneThird = (address(this).balance * 33) / 100;
        (bool unorthadoxantSuccess, ) = payable(
            0xbe16A803431fB1694656187334c50792031CD6Ac
        ).call{value: oneThird}("");
        require(unorthadoxantSuccess);
        (bool somkidSuccess, ) = payable(
            0xAE534782fE40DA31a4D890d3bADAeF0352FEead7
        ).call{value: oneThird}("");
        require(somkidSuccess);
        (bool andreasSuccess, ) = payable(
            0x7638aC632C177BB6eB88826065eb62b878F93754
        ).call{value: address(this).balance}("");
        require(andreasSuccess);
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) public view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : 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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 12 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForGiveaway_","type":"uint256"},{"internalType":"string","name":"_initBaseUri","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"_numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForGiveaway","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":[{"internalType":"address[]","name":"receiverAddresses","type":"address[]"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddressDuringPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260006001556000600855600660c0908152506000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200005a57600080fd5b5060405162006e8b38038062006e8b8339818101604052810190620000809190620010e1565b6040518060400160405280600981526020017f5945544950554e4b5300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f595000000000000000000000000000000000000000000000000000000000000081525086866200010e62000102620003b560201b60201c565b620003bd60201b60201c565b6000811162000154576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014b906200122e565b60405180910390fd5b600082116200019a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019190620012c6565b60405180910390fd5b8360029080519060200190620001b292919062000e59565b508260039080519060200190620001cb92919062000e59565b508160a0818152505080608081815250505050505060016009819055508260e0818152505062000201826200048160201b60201c565b62000212816200052c60201b60201c565b6000600367ffffffffffffffff81111562000232576200023162000f73565b5b604051908082528060200260200182016040528015620002615781602001602082028036833780820191505090505b50905073be16a803431fb1694656187334c50792031cd6ac8160008151811062000290576200028f620012e8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073ae534782fe40da31a4d890d3badaef0352feead781600181518110620002f657620002f5620012e8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737638ac632c177bb6eb88826065eb62b878f93754816002815181106200035c576200035b620012e8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050620003a9816007620005d760201b60201c565b50505050505062001973565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000491620003b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004b76200072160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005079062001367565b60405180910390fd5b80600c90805190602001906200052892919062000e59565b5050565b6200053c620003b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005626200072160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b29062001367565b60405180910390fd5b80600b9080519060200190620005d392919062000e59565b5050565b620005e7620003b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200060d6200072160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000666576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065d9062001367565b60405180910390fd5b608051816200067a6200074a60201b60201c565b620006869190620013b8565b1115620006ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c19062001465565b60405180910390fd5b60005b82518110156200071c5762000706838281518110620006f157620006f0620012e8565b5b6020026020010151836200075460201b60201c565b8080620007139062001487565b915050620006cd565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600154905090565b620007768282604051806020016040528060008152506200077a60201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620007f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007eb906200154b565b60405180910390fd5b620008058162000c7260201b60201c565b1562000848576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083f90620015bd565b60405180910390fd5b60a05183111562000890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008879062001655565b60405180910390fd5b620008a5600085838662000c8060201b60201c565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151620009a4919062001693565b6fffffffffffffffffffffffffffffffff168152602001858360200151620009cd919062001693565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101562000c4d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000be5600088848862000c8660201b60201c565b62000c27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1e9062001756565b60405180910390fd5b818062000c349062001487565b925050808062000c449062001487565b91505062000b6b565b508060018190555062000c6a600087858862000e4060201b60201c565b505050505050565b600060015482109050919050565b50505050565b600062000cb48473ffffffffffffffffffffffffffffffffffffffff1662000e4660201b620020681760201c565b1562000e33578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000ce6620003b560201b60201c565b8786866040518563ffffffff1660e01b815260040162000d0a94939291906200182b565b602060405180830381600087803b15801562000d2557600080fd5b505af192505050801562000d5957506040513d601f19601f8201168201806040525081019062000d569190620018dc565b60015b62000de2573d806000811462000d8c576040519150601f19603f3d011682016040523d82523d6000602084013e62000d91565b606091505b5060008151141562000dda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dd19062001756565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000e38565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b82805462000e67906200193d565b90600052602060002090601f01602090048101928262000e8b576000855562000ed7565b82601f1062000ea657805160ff191683800117855562000ed7565b8280016001018555821562000ed7579182015b8281111562000ed657825182559160200191906001019062000eb9565b5b50905062000ee6919062000eea565b5090565b5b8082111562000f0557600081600090555060010162000eeb565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000f328162000f1d565b811462000f3e57600080fd5b50565b60008151905062000f528162000f27565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000fad8262000f62565b810181811067ffffffffffffffff8211171562000fcf5762000fce62000f73565b5b80604052505050565b600062000fe462000f09565b905062000ff2828262000fa2565b919050565b600067ffffffffffffffff82111562001015576200101462000f73565b5b620010208262000f62565b9050602081019050919050565b60005b838110156200104d57808201518184015260208101905062001030565b838111156200105d576000848401525b50505050565b60006200107a620010748462000ff7565b62000fd8565b90508281526020810184848401111562001099576200109862000f5d565b5b620010a68482856200102d565b509392505050565b600082601f830112620010c657620010c562000f58565b5b8151620010d884826020860162001063565b91505092915050565b600080600080600060a086880312156200110057620010ff62000f13565b5b6000620011108882890162000f41565b9550506020620011238882890162000f41565b9450506040620011368882890162000f41565b935050606086015167ffffffffffffffff8111156200115a576200115962000f18565b5b6200116888828901620010ae565b925050608086015167ffffffffffffffff8111156200118c576200118b62000f18565b5b6200119a88828901620010ae565b9150509295509295909350565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062001216602e83620011a7565b91506200122382620011b8565b604082019050919050565b60006020820190508181036000830152620012498162001207565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620012ae602783620011a7565b9150620012bb8262001250565b604082019050919050565b60006020820190508181036000830152620012e1816200129f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200134f602083620011a7565b91506200135c8262001317565b602082019050919050565b60006020820190508181036000830152620013828162001340565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013c58262000f1d565b9150620013d28362000f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200140a576200140962001389565b5b828201905092915050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b60006200144d601383620011a7565b91506200145a8262001415565b602082019050919050565b6000602082019050818103600083015262001480816200143e565b9050919050565b6000620014948262000f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620014ca57620014c962001389565b5b600182019050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062001533602183620011a7565b91506200154082620014d5565b604082019050919050565b60006020820190508181036000830152620015668162001524565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000620015a5601d83620011a7565b9150620015b2826200156d565b602082019050919050565b60006020820190508181036000830152620015d88162001596565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006200163d602283620011a7565b91506200164a82620015df565b604082019050919050565b6000602082019050818103600083015262001670816200162e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000620016a08262001677565b9150620016ad8362001677565b9250826fffffffffffffffffffffffffffffffff03821115620016d557620016d462001389565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006200173e603383620011a7565b91506200174b82620016e0565b604082019050919050565b6000602082019050818103600083015262001771816200172f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620017a58262001778565b9050919050565b620017b78162001798565b82525050565b620017c88162000f1d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620017f782620017ce565b620018038185620017d9565b9350620018158185602086016200102d565b620018208162000f62565b840191505092915050565b6000608082019050620018426000830187620017ac565b620018516020830186620017ac565b620018606040830185620017bd565b8181036060830152620018748184620017ea565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620018b6816200187f565b8114620018c257600080fd5b50565b600081519050620018d681620018ab565b92915050565b600060208284031215620018f557620018f462000f13565b5b60006200190584828501620018c5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200195657607f821691505b602082108114156200196d576200196c6200190e565b5b50919050565b60805160a05160c05160e0516154a6620019e5600039600081816119810152611afc015260008181611a210152611ceb01526000818161191e01528181612a4801528181612a7101526131d20152600081816119a201528181611d8b015281816127d0015261280401526154a66000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e686801e1161006f578063e686801e14610736578063e9566bf614610761578063e985e9c51461078a578063f2c4ce1e146107c7578063f2fde38b146107f0576101f9565b8063b88d4fde14610668578063c87b56dd14610691578063d7224ba0146106ce578063dc33e681146106f9576101f9565b806395d89b41116100dc57806395d89b41146105cd578063a22cb465146105f8578063b3ab66b014610621578063b5148d431461063d576101f9565b806370a0823114610511578063715018a61461054e5780638da5cb5b146105655780639231ab2a14610590576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461042e57806355f804b31461046b5780635aca1bb6146104945780635fd8c710146104bd5780636352211e146104d4576101f9565b80632f745c591461037457806340d0b4a9146103b157806342842e0e146103c85780634d388a98146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632d20fb601461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613739565b610819565b6040516102329190613781565b60405180910390f35b34801561024757600080fd5b50610250610963565b60405161025d9190613835565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061388d565b6109f5565b60405161029a91906138fb565b60405180910390f35b3480156102af57600080fd5b506102b8610a7a565b6040516102c59190613835565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613942565b610b08565b005b34801561030357600080fd5b5061030c610c21565b6040516103199190613991565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906139ac565b610c2b565b005b34801561035757600080fd5b50610372600480360381019061036d919061388d565b610c3b565b005b34801561038057600080fd5b5061039b60048036038101906103969190613942565b610d19565b6040516103a89190613991565b60405180910390f35b3480156103bd57600080fd5b506103c6610f17565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906139ac565b610fb0565b005b3480156103fd57600080fd5b50610418600480360381019061041391906139ff565b610fd0565b6040516104259190613991565b60405180910390f35b34801561043a57600080fd5b506104556004803603810190610450919061388d565b6110b9565b6040516104629190613991565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613b61565b61110c565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613bd6565b6111a2565b005b3480156104c957600080fd5b506104d261123b565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061388d565b611478565b60405161050891906138fb565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906139ff565b61148e565b6040516105459190613991565b60405180910390f35b34801561055a57600080fd5b50610563611577565b005b34801561057157600080fd5b5061057a6115ff565b60405161058791906138fb565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061388d565b611628565b6040516105c49190613c64565b60405180910390f35b3480156105d957600080fd5b506105e2611640565b6040516105ef9190613835565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613c7f565b6116d2565b005b61063b6004803603810190610636919061388d565b611853565b005b34801561064957600080fd5b50610652611afa565b60405161065f9190613991565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190613d60565b611b1e565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061388d565b611b7a565b6040516106c59190613835565b60405180910390f35b3480156106da57600080fd5b506106e3611cd1565b6040516106f09190613991565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906139ff565b611cd7565b60405161072d9190613991565b60405180910390f35b34801561074257600080fd5b5061074b611ce9565b6040516107589190613991565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613eab565b611d0d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613f07565b611e46565b6040516107be9190613781565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613b61565b611eda565b005b3480156107fc57600080fd5b50610817600480360381019061081291906139ff565b611f70565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b8261207b565b5b9050919050565b60606002805461097290613f76565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90613f76565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a00826120e5565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061401a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610a8790613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab390613f76565b8015610b005780601f10610ad557610100808354040283529160200191610b00565b820191906000526020600020905b815481529060010190602001808311610ae357829003601f168201915b505050505081565b6000610b1382611478565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906140ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba36120f3565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc6120f3565b611e46565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c089061413e565b60405180910390fd5b610c1c8383836120fb565b505050565b6000600154905090565b610c368383836121ad565b505050565b610c436120f3565b73ffffffffffffffffffffffffffffffffffffffff16610c616115ff565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906141aa565b60405180910390fd5b60026009541415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490614216565b60405180910390fd5b6002600981905550610d0e81612766565b600160098190555050565b6000610d248361148e565b8210610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c906142a8565b60405180910390fd5b6000610d6f610c21565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e6957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec15786841415610eb2578195505050505050610f11565b8380610ebd906142f7565b9450505b508080610ecd906142f7565b915050610d77565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f08906143b2565b60405180910390fd5b92915050565b610f1f6120f3565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6115ff565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906141aa565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b610fcb83838360405180602001604052806000815250611b1e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614444565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006110c3610c21565b8210611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906144d6565b60405180910390fd5b819050919050565b6111146120f3565b73ffffffffffffffffffffffffffffffffffffffff166111326115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906141aa565b60405180910390fd5b80600c908051906020019061119e9291906135f0565b5050565b6111aa6120f3565b73ffffffffffffffffffffffffffffffffffffffff166111c86115ff565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906141aa565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6112436120f3565b73ffffffffffffffffffffffffffffffffffffffff166112616115ff565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906141aa565b60405180910390fd5b600060646021476112c891906144f6565b6112d2919061457f565b9050600073be16a803431fb1694656187334c50792031cd6ac73ffffffffffffffffffffffffffffffffffffffff168260405161130e906145e1565b60006040518083038185875af1925050503d806000811461134b576040519150601f19603f3d011682016040523d82523d6000602084013e611350565b606091505b505090508061135e57600080fd5b600073ae534782fe40da31a4d890d3badaef0352feead773ffffffffffffffffffffffffffffffffffffffff1683604051611398906145e1565b60006040518083038185875af1925050503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b50509050806113e857600080fd5b6000737638ac632c177bb6eb88826065eb62b878f9375473ffffffffffffffffffffffffffffffffffffffff1647604051611422906145e1565b60006040518083038185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b505090508061147257600080fd5b50505050565b6000611483826129f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690614668565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61157f6120f3565b73ffffffffffffffffffffffffffffffffffffffff1661159d6115ff565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906141aa565b60405180910390fd5b6115fd6000612bf7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611630613676565b611639826129f4565b9050919050565b60606003805461164f90613f76565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90613f76565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6116da6120f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906146d4565b60405180910390fd5b80600760006117556120f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118026120f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118479190613781565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614740565b60405180910390fd5b600066470de4df8200009050600a60019054906101000a900460ff1661191c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611913906147ac565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082111561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061483e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006119cb919061485e565b826119d4610c21565b6119de9190614892565b1115611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614934565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611a4a33611cd7565b611a549190614892565b1115611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c906149a0565b60405180910390fd5b80341015611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614a0c565b60405180910390fd5b611ae23383612cbb565b611af68282611af191906144f6565b612cd9565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611b298484846121ad565b611b3584848484612d7a565b611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614a9e565b60405180910390fd5b50505050565b6060611b85826120e5565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614b30565b60405180910390fd5b6000611bce612f11565b905060011515600a60009054906101000a900460ff1615151415611c3d576000815111611c0a5760405180602001604052806000815250611c35565b80611c1484612fa3565b604051602001611c25929190614bd8565b6040516020818303038152906040525b915050611ccc565b600b8054611c4a90613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7690613f76565b8015611cc35780601f10611c9857610100808354040283529160200191611cc3565b820191906000526020600020905b815481529060010190602001808311611ca657829003601f168201915b50505050509150505b919050565b60085481565b6000611ce282610fd0565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611d156120f3565b73ffffffffffffffffffffffffffffffffffffffff16611d336115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906141aa565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611db3610c21565b611dbd9190614892565b1115611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590614c53565b60405180910390fd5b60005b8251811015611e4157611e2e838281518110611e2057611e1f614c73565b5b602002602001015183612cbb565b8080611e39906142f7565b915050611e01565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee26120f3565b73ffffffffffffffffffffffffffffffffffffffff16611f006115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906141aa565b60405180910390fd5b80600b9080519060200190611f6c9291906135f0565b5050565b611f786120f3565b73ffffffffffffffffffffffffffffffffffffffff16611f966115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe3906141aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390614d14565b60405180910390fd5b61206581612bf7565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121b8826129f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121df6120f3565b73ffffffffffffffffffffffffffffffffffffffff16148061223b57506122046120f3565b73ffffffffffffffffffffffffffffffffffffffff16612223846109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612257575061225682600001516122516120f3565b611e46565b5b905080612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090614da6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230290614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614eca565b60405180910390fd5b6123888585856001613104565b61239860008484600001516120fb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124069190614f06565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124aa9190614f3a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125b09190614892565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126f657612626816120e5565b156126f5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461275e868686600161310a565b505050505050565b60006008549050600082116127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790614fcc565b60405180910390fd5b6000600183836127c09190614892565b6127ca919061485e565b905060017f00000000000000000000000000000000000000000000000000000000000000006127f9919061485e565b8111156128305760017f000000000000000000000000000000000000000000000000000000000000000061282d919061485e565b90505b612839816120e5565b612878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286f9061505e565b60405180910390fd5b60008290505b8181116129db57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129c85760006128fb826129f4565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806129d3906142f7565b91505061287e565b506001816129e99190614892565b600881905550505050565b6129fc613676565b612a05826120e5565b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b906150f0565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612aa85760017f000000000000000000000000000000000000000000000000000000000000000084612a9b919061485e565b612aa59190614892565b90505b60008390505b818110612bb6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba257809350505050612bf2565b508080612bae90615110565b915050612aae565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906151ac565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cd5828260405180602001604052806000815250613110565b5050565b80341015612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390614a0c565b60405180910390fd5b80341115612d77573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d4a919061485e565b9081150290604051600060405180830381858888f19350505050158015612d75573d6000803e3d6000fd5b505b50565b6000612d9b8473ffffffffffffffffffffffffffffffffffffffff16612068565b15612f04578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc46120f3565b8786866040518563ffffffff1660e01b8152600401612de69493929190615221565b602060405180830381600087803b158015612e0057600080fd5b505af1925050508015612e3157506040513d601f19601f82011682018060405250810190612e2e9190615282565b60015b612eb4573d8060008114612e61576040519150601f19603f3d011682016040523d82523d6000602084013e612e66565b606091505b50600081511415612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea390614a9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f09565b600190505b949350505050565b6060600c8054612f2090613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4c90613f76565b8015612f995780601f10612f6e57610100808354040283529160200191612f99565b820191906000526020600020905b815481529060010190602001808311612f7c57829003601f168201915b5050505050905090565b60606000821415612feb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ff565b600082905060005b6000821461301d578080613006906142f7565b915050600a82613016919061457f565b9150612ff3565b60008167ffffffffffffffff81111561303957613038613a36565b5b6040519080825280601f01601f19166020018201604052801561306b5781602001600182028036833780820191505090505b5090505b600085146130f857600182613084919061485e565b9150600a8561309391906152af565b603061309f9190614892565b60f81b8183815181106130b5576130b4614c73565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f1919061457f565b945061306f565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e90615352565b60405180910390fd5b613190816120e5565b156131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c7906153be565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322a90615450565b60405180910390fd5b6132406000858386613104565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161333d9190614f3a565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133649190614f3a565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135d357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135736000888488612d7a565b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990614a9e565b60405180910390fd5b81806135bd906142f7565b92505080806135cb906142f7565b915050613502565b50806001819055506135e8600087858861310a565b505050505050565b8280546135fc90613f76565b90600052602060002090601f01602090048101928261361e5760008555613665565b82601f1061363757805160ff1916838001178555613665565b82800160010185558215613665579182015b82811115613664578251825591602001919060010190613649565b5b50905061367291906136b0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136c95760008160009055506001016136b1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613716816136e1565b811461372157600080fd5b50565b6000813590506137338161370d565b92915050565b60006020828403121561374f5761374e6136d7565b5b600061375d84828501613724565b91505092915050565b60008115159050919050565b61377b81613766565b82525050565b60006020820190506137966000830184613772565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137d65780820151818401526020810190506137bb565b838111156137e5576000848401525b50505050565b6000601f19601f8301169050919050565b60006138078261379c565b61381181856137a7565b93506138218185602086016137b8565b61382a816137eb565b840191505092915050565b6000602082019050818103600083015261384f81846137fc565b905092915050565b6000819050919050565b61386a81613857565b811461387557600080fd5b50565b60008135905061388781613861565b92915050565b6000602082840312156138a3576138a26136d7565b5b60006138b184828501613878565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138e5826138ba565b9050919050565b6138f5816138da565b82525050565b600060208201905061391060008301846138ec565b92915050565b61391f816138da565b811461392a57600080fd5b50565b60008135905061393c81613916565b92915050565b60008060408385031215613959576139586136d7565b5b60006139678582860161392d565b925050602061397885828601613878565b9150509250929050565b61398b81613857565b82525050565b60006020820190506139a66000830184613982565b92915050565b6000806000606084860312156139c5576139c46136d7565b5b60006139d38682870161392d565b93505060206139e48682870161392d565b92505060406139f586828701613878565b9150509250925092565b600060208284031215613a1557613a146136d7565b5b6000613a238482850161392d565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a6e826137eb565b810181811067ffffffffffffffff82111715613a8d57613a8c613a36565b5b80604052505050565b6000613aa06136cd565b9050613aac8282613a65565b919050565b600067ffffffffffffffff821115613acc57613acb613a36565b5b613ad5826137eb565b9050602081019050919050565b82818337600083830152505050565b6000613b04613aff84613ab1565b613a96565b905082815260208101848484011115613b2057613b1f613a31565b5b613b2b848285613ae2565b509392505050565b600082601f830112613b4857613b47613a2c565b5b8135613b58848260208601613af1565b91505092915050565b600060208284031215613b7757613b766136d7565b5b600082013567ffffffffffffffff811115613b9557613b946136dc565b5b613ba184828501613b33565b91505092915050565b613bb381613766565b8114613bbe57600080fd5b50565b600081359050613bd081613baa565b92915050565b600060208284031215613bec57613beb6136d7565b5b6000613bfa84828501613bc1565b91505092915050565b613c0c816138da565b82525050565b600067ffffffffffffffff82169050919050565b613c2f81613c12565b82525050565b604082016000820151613c4b6000850182613c03565b506020820151613c5e6020850182613c26565b50505050565b6000604082019050613c796000830184613c35565b92915050565b60008060408385031215613c9657613c956136d7565b5b6000613ca48582860161392d565b9250506020613cb585828601613bc1565b9150509250929050565b600067ffffffffffffffff821115613cda57613cd9613a36565b5b613ce3826137eb565b9050602081019050919050565b6000613d03613cfe84613cbf565b613a96565b905082815260208101848484011115613d1f57613d1e613a31565b5b613d2a848285613ae2565b509392505050565b600082601f830112613d4757613d46613a2c565b5b8135613d57848260208601613cf0565b91505092915050565b60008060008060808587031215613d7a57613d796136d7565b5b6000613d888782880161392d565b9450506020613d998782880161392d565b9350506040613daa87828801613878565b925050606085013567ffffffffffffffff811115613dcb57613dca6136dc565b5b613dd787828801613d32565b91505092959194509250565b600067ffffffffffffffff821115613dfe57613dfd613a36565b5b602082029050602081019050919050565b600080fd5b6000613e27613e2284613de3565b613a96565b90508083825260208201905060208402830185811115613e4a57613e49613e0f565b5b835b81811015613e735780613e5f888261392d565b845260208401935050602081019050613e4c565b5050509392505050565b600082601f830112613e9257613e91613a2c565b5b8135613ea2848260208601613e14565b91505092915050565b60008060408385031215613ec257613ec16136d7565b5b600083013567ffffffffffffffff811115613ee057613edf6136dc565b5b613eec85828601613e7d565b9250506020613efd85828601613878565b9150509250929050565b60008060408385031215613f1e57613f1d6136d7565b5b6000613f2c8582860161392d565b9250506020613f3d8582860161392d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8e57607f821691505b60208210811415613fa257613fa1613f47565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614004602d836137a7565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006140966022836137a7565b91506140a18261403a565b604082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006141286039836137a7565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141946020836137a7565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614200601f836137a7565b915061420b826141ca565b602082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142926022836137a7565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061430282613857565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614335576143346142c8565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061439c602e836137a7565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061442e6031836137a7565b9150614439826143d2565b604082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c06023836137a7565b91506144cb82614464565b604082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b600061450182613857565b915061450c83613857565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614545576145446142c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061458a82613857565b915061459583613857565b9250826145a5576145a4614550565b5b828204905092915050565b600081905092915050565b50565b60006145cb6000836145b0565b91506145d6826145bb565b600082019050919050565b60006145ec826145be565b9150819050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614652602b836137a7565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006146be601a836137a7565b91506146c982614688565b602082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061472a601e836137a7565b9150614735826146f4565b602082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f4d696e74206973206e6f74206c69766500000000000000000000000000000000600082015250565b60006147966010836137a7565b91506147a182614760565b602082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4d6178206261746368206d696e74696e67207175616e7469747920657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b60006148286023836137a7565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b600061486982613857565b915061487483613857565b925082821015614887576148866142c8565b5b828203905092915050565b600061489d82613857565b91506148a883613857565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148dd576148dc6142c8565b5b828201905092915050565b7f5075626c69632073616c652066696e6973686564000000000000000000000000600082015250565b600061491e6014836137a7565b9150614929826148e8565b602082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f57616c6c6574206c696d69742065786365656465640000000000000000000000600082015250565b600061498a6015836137a7565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b60006149f66015836137a7565b9150614a01826149c0565b602082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614a886033836137a7565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b1a602f836137a7565b9150614b2582614abe565b604082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b600081905092915050565b6000614b668261379c565b614b708185614b50565b9350614b808185602086016137b8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bc2600583614b50565b9150614bcd82614b8c565b600582019050919050565b6000614be48285614b5b565b9150614bf08284614b5b565b9150614bfb82614bb5565b91508190509392505050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b6000614c3d6013836137a7565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cfe6026836137a7565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d906032836137a7565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614e226026836137a7565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46025836137a7565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614f1182614eea565b9150614f1c83614eea565b925082821015614f2f57614f2e6142c8565b5b828203905092915050565b6000614f4582614eea565b9150614f5083614eea565b9250826fffffffffffffffffffffffffffffffff03821115614f7557614f746142c8565b5b828201905092915050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b6000614fb66018836137a7565b9150614fc182614f80565b602082019050919050565b60006020820190508181036000830152614fe581614fa9565b9050919050565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b60006150486026836137a7565b915061505382614fec565b604082019050919050565b600060208201905081810360008301526150778161503b565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006150da602a836137a7565b91506150e58261507e565b604082019050919050565b60006020820190508181036000830152615109816150cd565b9050919050565b600061511b82613857565b9150600082141561512f5761512e6142c8565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615196602f836137a7565b91506151a18261513a565b604082019050919050565b600060208201905081810360008301526151c581615189565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151f3826151cc565b6151fd81856151d7565b935061520d8185602086016137b8565b615216816137eb565b840191505092915050565b600060808201905061523660008301876138ec565b61524360208301866138ec565b6152506040830185613982565b818103606083015261526281846151e8565b905095945050505050565b60008151905061527c8161370d565b92915050565b600060208284031215615298576152976136d7565b5b60006152a68482850161526d565b91505092915050565b60006152ba82613857565b91506152c583613857565b9250826152d5576152d4614550565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061533c6021836137a7565b9150615347826152e0565b604082019050919050565b6000602082019050818103600083015261536b8161532f565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006153a8601d836137a7565b91506153b382615372565b602082019050919050565b600060208201905081810360008301526153d78161539b565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061543a6022836137a7565b9150615445826153de565b604082019050919050565b600060208201905081810360008301526154698161542d565b905091905056fea264697066735822122042a819fccaebdd11a206eb184ce76221008f6de2c6b32522791722ab348254ac64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000058c000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516931565672504d4277555372593645713337763770396150666a4c7551563633764a5837556b50446b56362f000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d5a65575576415166465738564a3641796e335955316e5143784b597051725136476e5935396e3866685a43612f68696464656e5945544950554e4b2e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e686801e1161006f578063e686801e14610736578063e9566bf614610761578063e985e9c51461078a578063f2c4ce1e146107c7578063f2fde38b146107f0576101f9565b8063b88d4fde14610668578063c87b56dd14610691578063d7224ba0146106ce578063dc33e681146106f9576101f9565b806395d89b41116100dc57806395d89b41146105cd578063a22cb465146105f8578063b3ab66b014610621578063b5148d431461063d576101f9565b806370a0823114610511578063715018a61461054e5780638da5cb5b146105655780639231ab2a14610590576101f9565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce71461042e57806355f804b31461046b5780635aca1bb6146104945780635fd8c710146104bd5780636352211e146104d4576101f9565b80632f745c591461037457806340d0b4a9146103b157806342842e0e146103c85780634d388a98146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632d20fb601461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613739565b610819565b6040516102329190613781565b60405180910390f35b34801561024757600080fd5b50610250610963565b60405161025d9190613835565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061388d565b6109f5565b60405161029a91906138fb565b60405180910390f35b3480156102af57600080fd5b506102b8610a7a565b6040516102c59190613835565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190613942565b610b08565b005b34801561030357600080fd5b5061030c610c21565b6040516103199190613991565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906139ac565b610c2b565b005b34801561035757600080fd5b50610372600480360381019061036d919061388d565b610c3b565b005b34801561038057600080fd5b5061039b60048036038101906103969190613942565b610d19565b6040516103a89190613991565b60405180910390f35b3480156103bd57600080fd5b506103c6610f17565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906139ac565b610fb0565b005b3480156103fd57600080fd5b50610418600480360381019061041391906139ff565b610fd0565b6040516104259190613991565b60405180910390f35b34801561043a57600080fd5b506104556004803603810190610450919061388d565b6110b9565b6040516104629190613991565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613b61565b61110c565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613bd6565b6111a2565b005b3480156104c957600080fd5b506104d261123b565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061388d565b611478565b60405161050891906138fb565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906139ff565b61148e565b6040516105459190613991565b60405180910390f35b34801561055a57600080fd5b50610563611577565b005b34801561057157600080fd5b5061057a6115ff565b60405161058791906138fb565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061388d565b611628565b6040516105c49190613c64565b60405180910390f35b3480156105d957600080fd5b506105e2611640565b6040516105ef9190613835565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190613c7f565b6116d2565b005b61063b6004803603810190610636919061388d565b611853565b005b34801561064957600080fd5b50610652611afa565b60405161065f9190613991565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190613d60565b611b1e565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061388d565b611b7a565b6040516106c59190613835565b60405180910390f35b3480156106da57600080fd5b506106e3611cd1565b6040516106f09190613991565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906139ff565b611cd7565b60405161072d9190613991565b60405180910390f35b34801561074257600080fd5b5061074b611ce9565b6040516107589190613991565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613eab565b611d0d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613f07565b611e46565b6040516107be9190613781565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613b61565b611eda565b005b3480156107fc57600080fd5b50610817600480360381019061081291906139ff565b611f70565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b8261207b565b5b9050919050565b60606002805461097290613f76565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90613f76565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a00826120e5565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a369061401a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610a8790613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab390613f76565b8015610b005780601f10610ad557610100808354040283529160200191610b00565b820191906000526020600020905b815481529060010190602001808311610ae357829003601f168201915b505050505081565b6000610b1382611478565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906140ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba36120f3565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc6120f3565b611e46565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c089061413e565b60405180910390fd5b610c1c8383836120fb565b505050565b6000600154905090565b610c368383836121ad565b505050565b610c436120f3565b73ffffffffffffffffffffffffffffffffffffffff16610c616115ff565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906141aa565b60405180910390fd5b60026009541415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490614216565b60405180910390fd5b6002600981905550610d0e81612766565b600160098190555050565b6000610d248361148e565b8210610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c906142a8565b60405180910390fd5b6000610d6f610c21565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e6957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec15786841415610eb2578195505050505050610f11565b8380610ebd906142f7565b9450505b508080610ecd906142f7565b915050610d77565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f08906143b2565b60405180910390fd5b92915050565b610f1f6120f3565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6115ff565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906141aa565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b610fcb83838360405180602001604052806000815250611b1e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614444565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006110c3610c21565b8210611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906144d6565b60405180910390fd5b819050919050565b6111146120f3565b73ffffffffffffffffffffffffffffffffffffffff166111326115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906141aa565b60405180910390fd5b80600c908051906020019061119e9291906135f0565b5050565b6111aa6120f3565b73ffffffffffffffffffffffffffffffffffffffff166111c86115ff565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906141aa565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6112436120f3565b73ffffffffffffffffffffffffffffffffffffffff166112616115ff565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906141aa565b60405180910390fd5b600060646021476112c891906144f6565b6112d2919061457f565b9050600073be16a803431fb1694656187334c50792031cd6ac73ffffffffffffffffffffffffffffffffffffffff168260405161130e906145e1565b60006040518083038185875af1925050503d806000811461134b576040519150601f19603f3d011682016040523d82523d6000602084013e611350565b606091505b505090508061135e57600080fd5b600073ae534782fe40da31a4d890d3badaef0352feead773ffffffffffffffffffffffffffffffffffffffff1683604051611398906145e1565b60006040518083038185875af1925050503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b50509050806113e857600080fd5b6000737638ac632c177bb6eb88826065eb62b878f9375473ffffffffffffffffffffffffffffffffffffffff1647604051611422906145e1565b60006040518083038185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b505090508061147257600080fd5b50505050565b6000611483826129f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690614668565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61157f6120f3565b73ffffffffffffffffffffffffffffffffffffffff1661159d6115ff565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906141aa565b60405180910390fd5b6115fd6000612bf7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611630613676565b611639826129f4565b9050919050565b60606003805461164f90613f76565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90613f76565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b5050505050905090565b6116da6120f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906146d4565b60405180910390fd5b80600760006117556120f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118026120f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118479190613781565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614740565b60405180910390fd5b600066470de4df8200009050600a60019054906101000a900460ff1661191c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611913906147ac565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a82111561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061483e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000197f000000000000000000000000000000000000000000000000000000000000058c6119cb919061485e565b826119d4610c21565b6119de9190614892565b1115611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614934565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000682611a4a33611cd7565b611a549190614892565b1115611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c906149a0565b60405180910390fd5b80341015611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614a0c565b60405180910390fd5b611ae23383612cbb565b611af68282611af191906144f6565b612cd9565b5050565b7f000000000000000000000000000000000000000000000000000000000000001981565b611b298484846121ad565b611b3584848484612d7a565b611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614a9e565b60405180910390fd5b50505050565b6060611b85826120e5565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614b30565b60405180910390fd5b6000611bce612f11565b905060011515600a60009054906101000a900460ff1615151415611c3d576000815111611c0a5760405180602001604052806000815250611c35565b80611c1484612fa3565b604051602001611c25929190614bd8565b6040516020818303038152906040525b915050611ccc565b600b8054611c4a90613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7690613f76565b8015611cc35780601f10611c9857610100808354040283529160200191611cc3565b820191906000526020600020905b815481529060010190602001808311611ca657829003601f168201915b50505050509150505b919050565b60085481565b6000611ce282610fd0565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000681565b611d156120f3565b73ffffffffffffffffffffffffffffffffffffffff16611d336115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d80906141aa565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000058c81611db3610c21565b611dbd9190614892565b1115611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590614c53565b60405180910390fd5b60005b8251811015611e4157611e2e838281518110611e2057611e1f614c73565b5b602002602001015183612cbb565b8080611e39906142f7565b915050611e01565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee26120f3565b73ffffffffffffffffffffffffffffffffffffffff16611f006115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906141aa565b60405180910390fd5b80600b9080519060200190611f6c9291906135f0565b5050565b611f786120f3565b73ffffffffffffffffffffffffffffffffffffffff16611f966115ff565b73ffffffffffffffffffffffffffffffffffffffff1614611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe3906141aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390614d14565b60405180910390fd5b61206581612bf7565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121b8826129f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121df6120f3565b73ffffffffffffffffffffffffffffffffffffffff16148061223b57506122046120f3565b73ffffffffffffffffffffffffffffffffffffffff16612223846109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612257575061225682600001516122516120f3565b611e46565b5b905080612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090614da6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230290614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290614eca565b60405180910390fd5b6123888585856001613104565b61239860008484600001516120fb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124069190614f06565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124aa9190614f3a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125b09190614892565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126f657612626816120e5565b156126f5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461275e868686600161310a565b505050505050565b60006008549050600082116127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790614fcc565b60405180910390fd5b6000600183836127c09190614892565b6127ca919061485e565b905060017f000000000000000000000000000000000000000000000000000000000000058c6127f9919061485e565b8111156128305760017f000000000000000000000000000000000000000000000000000000000000058c61282d919061485e565b90505b612839816120e5565b612878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286f9061505e565b60405180910390fd5b60008290505b8181116129db57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129c85760006128fb826129f4565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806129d3906142f7565b91505061287e565b506001816129e99190614892565b600881905550505050565b6129fc613676565b612a05826120e5565b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b906150f0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612aa85760017f000000000000000000000000000000000000000000000000000000000000000a84612a9b919061485e565b612aa59190614892565b90505b60008390505b818110612bb6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba257809350505050612bf2565b508080612bae90615110565b915050612aae565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906151ac565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cd5828260405180602001604052806000815250613110565b5050565b80341015612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1390614a0c565b60405180910390fd5b80341115612d77573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d4a919061485e565b9081150290604051600060405180830381858888f19350505050158015612d75573d6000803e3d6000fd5b505b50565b6000612d9b8473ffffffffffffffffffffffffffffffffffffffff16612068565b15612f04578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc46120f3565b8786866040518563ffffffff1660e01b8152600401612de69493929190615221565b602060405180830381600087803b158015612e0057600080fd5b505af1925050508015612e3157506040513d601f19601f82011682018060405250810190612e2e9190615282565b60015b612eb4573d8060008114612e61576040519150601f19603f3d011682016040523d82523d6000602084013e612e66565b606091505b50600081511415612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea390614a9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f09565b600190505b949350505050565b6060600c8054612f2090613f76565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4c90613f76565b8015612f995780601f10612f6e57610100808354040283529160200191612f99565b820191906000526020600020905b815481529060010190602001808311612f7c57829003601f168201915b5050505050905090565b60606000821415612feb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ff565b600082905060005b6000821461301d578080613006906142f7565b915050600a82613016919061457f565b9150612ff3565b60008167ffffffffffffffff81111561303957613038613a36565b5b6040519080825280601f01601f19166020018201604052801561306b5781602001600182028036833780820191505090505b5090505b600085146130f857600182613084919061485e565b9150600a8561309391906152af565b603061309f9190614892565b60f81b8183815181106130b5576130b4614c73565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f1919061457f565b945061306f565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e90615352565b60405180910390fd5b613190816120e5565b156131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c7906153be565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322a90615450565b60405180910390fd5b6132406000858386613104565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161333d9190614f3a565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133649190614f3a565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156135d357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135736000888488612d7a565b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990614a9e565b60405180910390fd5b81806135bd906142f7565b92505080806135cb906142f7565b915050613502565b50806001819055506135e8600087858861310a565b505050505050565b8280546135fc90613f76565b90600052602060002090601f01602090048101928261361e5760008555613665565b82601f1061363757805160ff1916838001178555613665565b82800160010185558215613665579182015b82811115613664578251825591602001919060010190613649565b5b50905061367291906136b0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136c95760008160009055506001016136b1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613716816136e1565b811461372157600080fd5b50565b6000813590506137338161370d565b92915050565b60006020828403121561374f5761374e6136d7565b5b600061375d84828501613724565b91505092915050565b60008115159050919050565b61377b81613766565b82525050565b60006020820190506137966000830184613772565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137d65780820151818401526020810190506137bb565b838111156137e5576000848401525b50505050565b6000601f19601f8301169050919050565b60006138078261379c565b61381181856137a7565b93506138218185602086016137b8565b61382a816137eb565b840191505092915050565b6000602082019050818103600083015261384f81846137fc565b905092915050565b6000819050919050565b61386a81613857565b811461387557600080fd5b50565b60008135905061388781613861565b92915050565b6000602082840312156138a3576138a26136d7565b5b60006138b184828501613878565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138e5826138ba565b9050919050565b6138f5816138da565b82525050565b600060208201905061391060008301846138ec565b92915050565b61391f816138da565b811461392a57600080fd5b50565b60008135905061393c81613916565b92915050565b60008060408385031215613959576139586136d7565b5b60006139678582860161392d565b925050602061397885828601613878565b9150509250929050565b61398b81613857565b82525050565b60006020820190506139a66000830184613982565b92915050565b6000806000606084860312156139c5576139c46136d7565b5b60006139d38682870161392d565b93505060206139e48682870161392d565b92505060406139f586828701613878565b9150509250925092565b600060208284031215613a1557613a146136d7565b5b6000613a238482850161392d565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a6e826137eb565b810181811067ffffffffffffffff82111715613a8d57613a8c613a36565b5b80604052505050565b6000613aa06136cd565b9050613aac8282613a65565b919050565b600067ffffffffffffffff821115613acc57613acb613a36565b5b613ad5826137eb565b9050602081019050919050565b82818337600083830152505050565b6000613b04613aff84613ab1565b613a96565b905082815260208101848484011115613b2057613b1f613a31565b5b613b2b848285613ae2565b509392505050565b600082601f830112613b4857613b47613a2c565b5b8135613b58848260208601613af1565b91505092915050565b600060208284031215613b7757613b766136d7565b5b600082013567ffffffffffffffff811115613b9557613b946136dc565b5b613ba184828501613b33565b91505092915050565b613bb381613766565b8114613bbe57600080fd5b50565b600081359050613bd081613baa565b92915050565b600060208284031215613bec57613beb6136d7565b5b6000613bfa84828501613bc1565b91505092915050565b613c0c816138da565b82525050565b600067ffffffffffffffff82169050919050565b613c2f81613c12565b82525050565b604082016000820151613c4b6000850182613c03565b506020820151613c5e6020850182613c26565b50505050565b6000604082019050613c796000830184613c35565b92915050565b60008060408385031215613c9657613c956136d7565b5b6000613ca48582860161392d565b9250506020613cb585828601613bc1565b9150509250929050565b600067ffffffffffffffff821115613cda57613cd9613a36565b5b613ce3826137eb565b9050602081019050919050565b6000613d03613cfe84613cbf565b613a96565b905082815260208101848484011115613d1f57613d1e613a31565b5b613d2a848285613ae2565b509392505050565b600082601f830112613d4757613d46613a2c565b5b8135613d57848260208601613cf0565b91505092915050565b60008060008060808587031215613d7a57613d796136d7565b5b6000613d888782880161392d565b9450506020613d998782880161392d565b9350506040613daa87828801613878565b925050606085013567ffffffffffffffff811115613dcb57613dca6136dc565b5b613dd787828801613d32565b91505092959194509250565b600067ffffffffffffffff821115613dfe57613dfd613a36565b5b602082029050602081019050919050565b600080fd5b6000613e27613e2284613de3565b613a96565b90508083825260208201905060208402830185811115613e4a57613e49613e0f565b5b835b81811015613e735780613e5f888261392d565b845260208401935050602081019050613e4c565b5050509392505050565b600082601f830112613e9257613e91613a2c565b5b8135613ea2848260208601613e14565b91505092915050565b60008060408385031215613ec257613ec16136d7565b5b600083013567ffffffffffffffff811115613ee057613edf6136dc565b5b613eec85828601613e7d565b9250506020613efd85828601613878565b9150509250929050565b60008060408385031215613f1e57613f1d6136d7565b5b6000613f2c8582860161392d565b9250506020613f3d8582860161392d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8e57607f821691505b60208210811415613fa257613fa1613f47565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614004602d836137a7565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006140966022836137a7565b91506140a18261403a565b604082019050919050565b600060208201905081810360008301526140c581614089565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006141286039836137a7565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141946020836137a7565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614200601f836137a7565b915061420b826141ca565b602082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142926022836137a7565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061430282613857565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614335576143346142c8565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061439c602e836137a7565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061442e6031836137a7565b9150614439826143d2565b604082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c06023836137a7565b91506144cb82614464565b604082019050919050565b600060208201905081810360008301526144ef816144b3565b9050919050565b600061450182613857565b915061450c83613857565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614545576145446142c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061458a82613857565b915061459583613857565b9250826145a5576145a4614550565b5b828204905092915050565b600081905092915050565b50565b60006145cb6000836145b0565b91506145d6826145bb565b600082019050919050565b60006145ec826145be565b9150819050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614652602b836137a7565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006146be601a836137a7565b91506146c982614688565b602082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061472a601e836137a7565b9150614735826146f4565b602082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f4d696e74206973206e6f74206c69766500000000000000000000000000000000600082015250565b60006147966010836137a7565b91506147a182614760565b602082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4d6178206261746368206d696e74696e67207175616e7469747920657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b60006148286023836137a7565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b600061486982613857565b915061487483613857565b925082821015614887576148866142c8565b5b828203905092915050565b600061489d82613857565b91506148a883613857565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148dd576148dc6142c8565b5b828201905092915050565b7f5075626c69632073616c652066696e6973686564000000000000000000000000600082015250565b600061491e6014836137a7565b9150614929826148e8565b602082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f57616c6c6574206c696d69742065786365656465640000000000000000000000600082015250565b600061498a6015836137a7565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b60006149f66015836137a7565b9150614a01826149c0565b602082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614a886033836137a7565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b1a602f836137a7565b9150614b2582614abe565b604082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b600081905092915050565b6000614b668261379c565b614b708185614b50565b9350614b808185602086016137b8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bc2600583614b50565b9150614bcd82614b8c565b600582019050919050565b6000614be48285614b5b565b9150614bf08284614b5b565b9150614bfb82614bb5565b91508190509392505050565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b6000614c3d6013836137a7565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cfe6026836137a7565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614d906032836137a7565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614e226026836137a7565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46025836137a7565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000614f1182614eea565b9150614f1c83614eea565b925082821015614f2f57614f2e6142c8565b5b828203905092915050565b6000614f4582614eea565b9150614f5083614eea565b9250826fffffffffffffffffffffffffffffffff03821115614f7557614f746142c8565b5b828201905092915050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b6000614fb66018836137a7565b9150614fc182614f80565b602082019050919050565b60006020820190508181036000830152614fe581614fa9565b9050919050565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b60006150486026836137a7565b915061505382614fec565b604082019050919050565b600060208201905081810360008301526150778161503b565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006150da602a836137a7565b91506150e58261507e565b604082019050919050565b60006020820190508181036000830152615109816150cd565b9050919050565b600061511b82613857565b9150600082141561512f5761512e6142c8565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615196602f836137a7565b91506151a18261513a565b604082019050919050565b600060208201905081810360008301526151c581615189565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151f3826151cc565b6151fd81856151d7565b935061520d8185602086016137b8565b615216816137eb565b840191505092915050565b600060808201905061523660008301876138ec565b61524360208301866138ec565b6152506040830185613982565b818103606083015261526281846151e8565b905095945050505050565b60008151905061527c8161370d565b92915050565b600060208284031215615298576152976136d7565b5b60006152a68482850161526d565b91505092915050565b60006152ba82613857565b91506152c583613857565b9250826152d5576152d4614550565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061533c6021836137a7565b9150615347826152e0565b604082019050919050565b6000602082019050818103600083015261536b8161532f565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006153a8601d836137a7565b91506153b382615372565b602082019050919050565b600060208201905081810360008301526153d78161539b565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061543a6022836137a7565b9150615445826153de565b604082019050919050565b600060208201905081810360008301526154698161542d565b905091905056fea264697066735822122042a819fccaebdd11a206eb184ce76221008f6de2c6b32522791722ab348254ac64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000058c000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516931565672504d4277555372593645713337763770396150666a4c7551563633764a5837556b50446b56362f000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d5a65575576415166465738564a3641796e335955316e5143784b597051725136476e5935396e3866685a43612f68696464656e5945544950554e4b2e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 1420
Arg [2] : amountForGiveaway_ (uint256): 25
Arg [3] : _initBaseUri (string): ipfs://QmQi1VVrPMBwUSrY6Eq37v7p9aPfjLuQV63vJX7UkPDkV6/
Arg [4] : _initNotRevealedUri (string): ipfs://QmZeWUvAQfFW8VJ6Ayn3YU1nQCxKYpQrQ6GnY59n8fhZCa/hiddenYETIPUNK.json

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 000000000000000000000000000000000000000000000000000000000000058c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d516931565672504d427755537259364571333776377039
Arg [7] : 6150666a4c7551563633764a5837556b50446b56362f00000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000049
Arg [9] : 697066733a2f2f516d5a65575576415166465738564a3641796e335955316e51
Arg [10] : 43784b597051725136476e5935396e3866685a43612f68696464656e59455449
Arg [11] : 50554e4b2e6a736f6e0000000000000000000000000000000000000000000000


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.