ETH Price: $3,334.77 (-1.19%)

Token

PASSCARD (NFTPASS)
 

Overview

Max Total Supply

86 NFTPASS

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFTPASS
0xa3dbfee5177268c64f005055fe20c95e416d39f0
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:
NFTPASS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : NFTPASS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./INFTPASS.sol";
import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";
import "./Strings.sol";

contract NFTPASS is INFTPASS, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 100;

    uint256 public freeMintCount = 100;

    uint256 public tokenPerAccountLimit = 1;

    uint256 public constant INTERNAL_SUPPLY = 50;

    string public baseURI;

    string public notRevealedURI;

    uint256 public mintPrice = 0 ether;

    uint256 public whiteListPrice = 0 ether;

    SaleStatus public saleStatus = SaleStatus.PRESALE;

    mapping(address => uint256) private _mintedCount;

    bytes32 public merkleRoot = 0xb1b37be79dc1a9fecbdd9168c67d7323a04c7936f79787e5c1d66e0870d93330;

    address private _paymentAddress;

    bool private _internalMinted = false;
    //0x63Cd89E59D2F4D3fccC2B00483e58b2E752470B5
    //ipfs://QmNeshrsc7fsAZCHewD8KEyPg2k2R5j4oRmF1SCWzyUGft
    //ipfs://QmNeshrsc7fsAZCHewD8KEyPg2k2R5j4oRmF1SCWzyUGft
    constructor(address paymentAddress, string memory _notRevealedURI)
        ERC721A("PASSCARD", "NFTPASS")
    {
        _paymentAddress = paymentAddress;
        notRevealedURI = _notRevealedURI;
    }

    modifier mintCheck(SaleStatus status, uint256 count) {
        require(saleStatus == status, "NFTPASS: Not operational");
        require(
            _totalMinted() + count <= maxSupply,
            "NFTPASS: Number of requested tokens will exceed max supply"
        );
        require(
            _mintedCount[msg.sender] + count <= tokenPerAccountLimit,
            "NFTPASS: Number of requested tokens will exceed the limit per account"
        );
        _;
    }

    function setMaxSupply(uint256 supply) external onlyOwner {
        maxSupply = supply;
    }

    function setFreeSupply(uint256 supply) external onlyOwner {
      freeMintCount = supply;
    }

    function setTokenPerAccountLimit(uint256 limit) external onlyOwner {
        tokenPerAccountLimit = limit;
    }

    function setPaymentAddress(address paymentAddress)
        external
        override
        onlyOwner
    {
        _paymentAddress = paymentAddress;
    }

    function setSaleStatus(SaleStatus status) external override onlyOwner {
        saleStatus = status;
    }

    function setMintPrice(uint256 price) external override onlyOwner {
        mintPrice = price;
    }

    function setWhiteListPrice(uint256 price) external override onlyOwner {
        whiteListPrice = price;
    }

    function setMerkleRoot(bytes32 root) external override onlyOwner {
        merkleRoot = root;
    }

    function setNotRevealedURI(string memory _notRevealedURI)
        external
        override
        onlyOwner
    {
        notRevealedURI = _notRevealedURI;
    }

    function setBaseURL(string memory url) external override onlyOwner {
        baseURI = url;
    }

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

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

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PRESALE, count)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, leaf),
            "You are not whitelisted"
        );
        require(
            msg.value >= count * whiteListPrice,
            "Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function mint(uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PUBLIC, count)
    {
        uint256 requiredValue;
        requiredValue = _totalMinted() + count <= freeMintCount? 0: (count * mintPrice);
        require(
            msg.value >= requiredValue,
            "BXNFT: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function internalMint(address receiver) external override onlyOwner {
        require(!_internalMinted, "The interior has been mint");
        _internalMinted = true;
        _safeMint(receiver, INTERNAL_SUPPLY);
    }

    function withdraw() external override onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficient balance");
        (bool success, ) = payable(_paymentAddress).call{value: balance}("");
        require(success, "Withdrawal failed");
    }

    function mintedCount(address mintAddress)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _mintedCount[mintAddress];
    }
}

File 2 of 8 : INFTPASS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface INFTPASS {
    enum SaleStatus {
        PAUSED,
        PRESALE,
        PUBLIC
    }

    function setPaymentAddress(address paymentAddress) external;

    function setSaleStatus(SaleStatus status) external;

    function setMintPrice(uint256) external;

    function setWhiteListPrice(uint256) external;

    function setMerkleRoot(bytes32 root) external;

    function setNotRevealedURI(string memory _notRevealedURI) external;

    function setBaseURL(string memory url) external;

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable;

    function mint(uint256 count) external payable;

    function internalMint(address receiver) external;

    function withdraw() external;

    function mintedCount(address mintAddress) external returns (uint256);
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 4 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 8 : 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 8 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INTERNAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"}],"name":"mintedCount","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":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"enum INFTPASS.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum INFTPASS.SaleStatus","name":"status","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTokenPerAccountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPerAccountLimit","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":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260646009556064600a556001600b556000600e556000600f556001601060006101000a81548160ff02191690836002811115620000465762000045620002b6565b5b02179055507fb1b37be79dc1a9fecbdd9168c67d7323a04c7936f79787e5c1d66e0870d9333060001b6012556000601360146101000a81548160ff0219169083151502179055503480156200009a57600080fd5b5060405162004d6a38038062004d6a8339818101604052810190620000c09190620004dd565b6040518060400160405280600881526020017f50415353434152440000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4654504153530000000000000000000000000000000000000000000000000081525081600290816200013d91906200078e565b5080600390816200014f91906200078e565b5062000160620001e360201b60201c565b6000819055505050620001886200017c620001e860201b60201c565b620001f060201b60201c565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d9081620001da91906200078e565b50505062000875565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200032682620002f9565b9050919050565b620003388162000319565b81146200034457600080fd5b50565b60008151905062000358816200032d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b38262000368565b810181811067ffffffffffffffff82111715620003d557620003d462000379565b5b80604052505050565b6000620003ea620002e5565b9050620003f88282620003a8565b919050565b600067ffffffffffffffff8211156200041b576200041a62000379565b5b620004268262000368565b9050602081019050919050565b60005b838110156200045357808201518184015260208101905062000436565b60008484015250505050565b6000620004766200047084620003fd565b620003de565b90508281526020810184848401111562000495576200049462000363565b5b620004a284828562000433565b509392505050565b600082601f830112620004c257620004c16200035e565b5b8151620004d48482602086016200045f565b91505092915050565b60008060408385031215620004f757620004f6620002ef565b5b6000620005078582860162000347565b925050602083015167ffffffffffffffff8111156200052b576200052a620002f4565b5b6200053985828601620004aa565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059657607f821691505b602082108103620005ac57620005ab6200054e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005d7565b620006228683620005d7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200066f6200066962000663846200063a565b62000644565b6200063a565b9050919050565b6000819050919050565b6200068b836200064e565b620006a36200069a8262000676565b848454620005e4565b825550505050565b600090565b620006ba620006ab565b620006c781848462000680565b505050565b5b81811015620006ef57620006e3600082620006b0565b600181019050620006cd565b5050565b601f8211156200073e576200070881620005b2565b6200071384620005c7565b8101602085101562000723578190505b6200073b6200073285620005c7565b830182620006cc565b50505b505050565b600082821c905092915050565b6000620007636000198460080262000743565b1980831691505092915050565b60006200077e838362000750565b9150826002028217905092915050565b620007998262000543565b67ffffffffffffffff811115620007b557620007b462000379565b5b620007c182546200057d565b620007ce828285620006f3565b600060209050601f831160018114620008065760008415620007f1578287015190505b620007fd858262000770565b8655506200086d565b601f1984166200081686620005b2565b60005b82811015620008405784890151825560018201915060208501945060208101905062000819565b868310156200086057848901516200085c601f89168262000750565b8355505b6001600288020188555050505b505050505050565b6144e580620008856000396000f3fe6080604052600436106102515760003560e01c80637cb6475911610139578063beafc89b116100b6578063f2c4ce1e1161007a578063f2c4ce1e1461086e578063f2fde38b14610897578063f4a0a528146108c0578063f676308a146108e9578063f9020e3314610912578063fddcb5ea1461093d57610251565b8063beafc89b14610775578063c87b56dd1461079e578063d5abeb01146107db578063e55f58bb14610806578063e985e9c51461083157610251565b80639cd14e0f116100fd5780639cd14e0f146106c2578063a0712d68146106eb578063a22cb46514610707578063a6d612f914610730578063b88d4fde1461074c57610251565b80637cb64759146105ef5780638da5cb5b146106185780638dc823011461064357806395d89b411461066e5780639c58faa11461069957610251565b80634891ad88116101d2578063685756851161019657806368575685146104f15780636c0360eb1461051c5780636f8b44b01461054757806370a0823114610570578063715018a6146105ad57806372250380146105c457610251565b80634891ad881461040e57806349f2553a146104375780635e1e1004146104605780636352211e146104895780636817c76c146104c657610251565b806323b872dd1161021957806323b872dd1461034f5780632e34979e146103785780632eb4a7ab146103a35780633ccfd60b146103ce57806342842e0e146103e557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612f81565b61097a565b60405161028a9190612fc9565b60405180910390f35b34801561029f57600080fd5b506102a8610a0c565b6040516102b59190613074565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906130cc565b610a9e565b6040516102f2919061313a565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613181565b610b1a565b005b34801561033057600080fd5b50610339610cc0565b60405161034691906131d0565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906131eb565b610cd7565b005b34801561038457600080fd5b5061038d610ce7565b60405161039a91906131d0565b60405180910390f35b3480156103af57600080fd5b506103b8610cec565b6040516103c59190613257565b60405180910390f35b3480156103da57600080fd5b506103e3610cf2565b005b3480156103f157600080fd5b5061040c600480360381019061040791906131eb565b610e88565b005b34801561041a57600080fd5b5061043560048036038101906104309190613297565b610ea8565b005b34801561044357600080fd5b5061045e600480360381019061045991906133f9565b610f51565b005b34801561046c57600080fd5b5061048760048036038101906104829190613442565b610fe0565b005b34801561049557600080fd5b506104b060048036038101906104ab91906130cc565b6110a0565b6040516104bd919061313a565b60405180910390f35b3480156104d257600080fd5b506104db6110b2565b6040516104e891906131d0565b60405180910390f35b3480156104fd57600080fd5b506105066110b8565b60405161051391906131d0565b60405180910390f35b34801561052857600080fd5b506105316110be565b60405161053e9190613074565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906130cc565b61114c565b005b34801561057c57600080fd5b5061059760048036038101906105929190613442565b6111d2565b6040516105a491906131d0565b60405180910390f35b3480156105b957600080fd5b506105c261128a565b005b3480156105d057600080fd5b506105d9611312565b6040516105e69190613074565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061349b565b6113a0565b005b34801561062457600080fd5b5061062d611426565b60405161063a919061313a565b60405180910390f35b34801561064f57600080fd5b50610658611450565b60405161066591906131d0565b60405180910390f35b34801561067a57600080fd5b50610683611456565b6040516106909190613074565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190613442565b6114e8565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906130cc565b6115dd565b005b610705600480360381019061070091906130cc565b611663565b005b34801561071357600080fd5b5061072e600480360381019061072991906134f4565b6118a0565b005b61074a60048036038101906107459190613594565b611a17565b005b34801561075857600080fd5b50610773600480360381019061076e9190613695565b611ce5565b005b34801561078157600080fd5b5061079c600480360381019061079791906130cc565b611d58565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906130cc565b611dde565b6040516107d29190613074565b60405180910390f35b3480156107e757600080fd5b506107f0611f83565b6040516107fd91906131d0565b60405180910390f35b34801561081257600080fd5b5061081b611f89565b60405161082891906131d0565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613718565b611f8f565b6040516108659190612fc9565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906133f9565b612023565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613442565b6120b2565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906130cc565b6121a9565b005b3480156108f557600080fd5b50610910600480360381019061090b91906130cc565b61222f565b005b34801561091e57600080fd5b506109276122b5565b60405161093491906137cf565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613442565b6122c8565b60405161097191906131d0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a1b90613819565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4790613819565b8015610a945780601f10610a6957610100808354040283529160200191610a94565b820191906000526020600020905b815481529060010190602001808311610a7757829003601f168201915b5050505050905090565b6000610aa982612311565b610adf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582612370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab61243c565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e57610bd781610bd261243c565b611f8f565b610c0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cca612444565b6001546000540303905090565b610ce2838383612449565b505050565b603281565b60125481565b610cfa6127f0565b73ffffffffffffffffffffffffffffffffffffffff16610d18611426565b73ffffffffffffffffffffffffffffffffffffffff1614610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613896565b60405180910390fd5b600047905060008111610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613902565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dfe90613953565b60006040518083038185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906139b4565b60405180910390fd5b5050565b610ea383838360405180602001604052806000815250611ce5565b505050565b610eb06127f0565b73ffffffffffffffffffffffffffffffffffffffff16610ece611426565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613896565b60405180910390fd5b80601060006101000a81548160ff02191690836002811115610f4957610f48613758565b5b021790555050565b610f596127f0565b73ffffffffffffffffffffffffffffffffffffffff16610f77611426565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613896565b60405180910390fd5b80600c9081610fdc9190613b80565b5050565b610fe86127f0565b73ffffffffffffffffffffffffffffffffffffffff16611006611426565b73ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613896565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006110ab82612370565b9050919050565b600e5481565b600f5481565b600c80546110cb90613819565b80601f01602080910402602001604051908101604052809291908181526020018280546110f790613819565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b505050505081565b6111546127f0565b73ffffffffffffffffffffffffffffffffffffffff16611172611426565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613896565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611239576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112926127f0565b73ffffffffffffffffffffffffffffffffffffffff166112b0611426565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613896565b60405180910390fd5b61131060006127f8565b565b600d805461131f90613819565b80601f016020809104026020016040519081016040528092919081815260200182805461134b90613819565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b505050505081565b6113a86127f0565b73ffffffffffffffffffffffffffffffffffffffff166113c6611426565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613896565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461146590613819565b80601f016020809104026020016040519081016040528092919081815260200182805461149190613819565b80156114de5780601f106114b3576101008083540402835291602001916114de565b820191906000526020600020905b8154815290600101906020018083116114c157829003601f168201915b5050505050905090565b6114f06127f0565b73ffffffffffffffffffffffffffffffffffffffff1661150e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613896565b60405180910390fd5b601360149054906101000a900460ff16156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613c9e565b60405180910390fd5b6001601360146101000a81548160ff0219169083151502179055506115da8160326128be565b50565b6115e56127f0565b73ffffffffffffffffffffffffffffffffffffffff16611603611426565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613896565b60405180910390fd5b80600b8190555050565b60028181600281111561167957611678613758565b5b601060009054906101000a900460ff16600281111561169b5761169a613758565b5b146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613d0a565b60405180910390fd5b600954816116e76128dc565b6116f19190613d59565b1115611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613dff565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117809190613d59565b11156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613eb7565b60405180910390fd5b6000600a54846117cf6128dc565b6117d99190613d59565b11156117f257600e54846117ed9190613ed7565b6117f5565b60005b90508034101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613f8b565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118899190613d59565b9250508190555061189a33856128be565b50505050565b6118a861243c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061191961243c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c661243c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0b9190612fc9565b60405180910390a35050565b600181816002811115611a2d57611a2c613758565b5b601060009054906101000a900460ff166002811115611a4f57611a4e613758565b5b14611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613d0a565b60405180910390fd5b60095481611a9b6128dc565b611aa59190613d59565b1115611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613dff565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b349190613d59565b1115611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613eb7565b60405180910390fd5b600033604051602001611b889190613ff3565b604051602081830303815290604052805190602001209050611bee868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836128ef565b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c249061405a565b60405180910390fd5b600f5484611c3b9190613ed7565b341015611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906140ec565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ccc9190613d59565b92505081905550611cdd33856128be565b505050505050565b611cf0848484612449565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5257611d1b84848484612906565b611d51576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d606127f0565b73ffffffffffffffffffffffffffffffffffffffff16611d7e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613896565b60405180910390fd5b80600f8190555050565b6060611de982612311565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f9061417e565b60405180910390fd5b6000600c8054611e3790613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6390613819565b8015611eb05780601f10611e8557610100808354040283529160200191611eb0565b820191906000526020600020905b815481529060010190602001808311611e9357829003601f168201915b505050505090506000815111611f5057600d8054611ecd90613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef990613819565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050611f7b565b80611f5a84612a56565b604051602001611f6b9291906141da565b6040516020818303038152906040525b915050919050565b60095481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202b6127f0565b73ffffffffffffffffffffffffffffffffffffffff16612049611426565b73ffffffffffffffffffffffffffffffffffffffff161461209f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209690613896565b60405180910390fd5b80600d90816120ae9190613b80565b5050565b6120ba6127f0565b73ffffffffffffffffffffffffffffffffffffffff166120d8611426565b73ffffffffffffffffffffffffffffffffffffffff161461212e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212590613896565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614270565b60405180910390fd5b6121a6816127f8565b50565b6121b16127f0565b73ffffffffffffffffffffffffffffffffffffffff166121cf611426565b73ffffffffffffffffffffffffffffffffffffffff1614612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613896565b60405180910390fd5b80600e8190555050565b6122376127f0565b73ffffffffffffffffffffffffffffffffffffffff16612255611426565b73ffffffffffffffffffffffffffffffffffffffff16146122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613896565b60405180910390fd5b80600a8190555050565b601060009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161231c612444565b1115801561232b575060005482105b8015612369575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061237f612444565b11612405576000548110156124045760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612402575b600081036123f85760046000836001900393508381526020019081526020016000205490506123ce565b8092505050612437565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061245482612370565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124dc61243c565b73ffffffffffffffffffffffffffffffffffffffff16148061250b575061250a8561250561243c565b611f8f565b5b80612550575061251961243c565b73ffffffffffffffffffffffffffffffffffffffff1661253884610a9e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612589576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125ef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fc8585856001612bb6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126f986612bbc565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612781576000600184019050600060046000838152602001908152602001600020540361277f57600054811461277e578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e98585856001612bc6565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128d8828260405180602001604052806000815250612bcc565b5050565b60006128e6612444565b60005403905090565b6000826128fc8584612e7f565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292c61243c565b8786866040518563ffffffff1660e01b815260040161294e94939291906142e5565b6020604051808303816000875af192505050801561298a57506040513d601f19601f820116820180604052508101906129879190614346565b60015b612a03573d80600081146129ba576040519150601f19603f3d011682016040523d82523d6000602084013e6129bf565b606091505b5060008151036129fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612a9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb1565b600082905060005b60008214612acf578080612ab890614373565b915050600a82612ac891906143ea565b9150612aa5565b60008167ffffffffffffffff811115612aeb57612aea6132ce565b5b6040519080825280601f01601f191660200182016040528015612b1d5781602001600182028036833780820191505090505b5090505b60008514612baa57600182612b36919061441b565b9150600a85612b45919061444f565b6030612b519190613d59565b60f81b818381518110612b6757612b66614480565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba391906143ea565b9450612b21565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c38576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612c72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c7f6000858386612bb6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ce460018514612ef4565b901b60a042901b612cf486612bbc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612df8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da86000878480600101955087612906565b612dde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d39578260005414612df357600080fd5b612e63565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612df9575b816000819055505050612e796000858386612bc6565b50505050565b60008082905060005b8451811015612ee9576000858281518110612ea657612ea5614480565b5b60200260200101519050808311612ec857612ec18382612efe565b9250612ed5565b612ed28184612efe565b92505b508080612ee190614373565b915050612e88565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5e81612f29565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b600060208284031215612f9757612f96612f1f565b5b6000612fa584828501612f6c565b91505092915050565b60008115159050919050565b612fc381612fae565b82525050565b6000602082019050612fde6000830184612fba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561301e578082015181840152602081019050613003565b60008484015250505050565b6000601f19601f8301169050919050565b600061304682612fe4565b6130508185612fef565b9350613060818560208601613000565b6130698161302a565b840191505092915050565b6000602082019050818103600083015261308e818461303b565b905092915050565b6000819050919050565b6130a981613096565b81146130b457600080fd5b50565b6000813590506130c6816130a0565b92915050565b6000602082840312156130e2576130e1612f1f565b5b60006130f0848285016130b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613124826130f9565b9050919050565b61313481613119565b82525050565b600060208201905061314f600083018461312b565b92915050565b61315e81613119565b811461316957600080fd5b50565b60008135905061317b81613155565b92915050565b6000806040838503121561319857613197612f1f565b5b60006131a68582860161316c565b92505060206131b7858286016130b7565b9150509250929050565b6131ca81613096565b82525050565b60006020820190506131e560008301846131c1565b92915050565b60008060006060848603121561320457613203612f1f565b5b60006132128682870161316c565b93505060206132238682870161316c565b9250506040613234868287016130b7565b9150509250925092565b6000819050919050565b6132518161323e565b82525050565b600060208201905061326c6000830184613248565b92915050565b6003811061327f57600080fd5b50565b60008135905061329181613272565b92915050565b6000602082840312156132ad576132ac612f1f565b5b60006132bb84828501613282565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133068261302a565b810181811067ffffffffffffffff82111715613325576133246132ce565b5b80604052505050565b6000613338612f15565b905061334482826132fd565b919050565b600067ffffffffffffffff821115613364576133636132ce565b5b61336d8261302a565b9050602081019050919050565b82818337600083830152505050565b600061339c61339784613349565b61332e565b9050828152602081018484840111156133b8576133b76132c9565b5b6133c384828561337a565b509392505050565b600082601f8301126133e0576133df6132c4565b5b81356133f0848260208601613389565b91505092915050565b60006020828403121561340f5761340e612f1f565b5b600082013567ffffffffffffffff81111561342d5761342c612f24565b5b613439848285016133cb565b91505092915050565b60006020828403121561345857613457612f1f565b5b60006134668482850161316c565b91505092915050565b6134788161323e565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b6000602082840312156134b1576134b0612f1f565b5b60006134bf84828501613486565b91505092915050565b6134d181612fae565b81146134dc57600080fd5b50565b6000813590506134ee816134c8565b92915050565b6000806040838503121561350b5761350a612f1f565b5b60006135198582860161316c565b925050602061352a858286016134df565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613554576135536132c4565b5b8235905067ffffffffffffffff81111561357157613570613534565b5b60208301915083602082028301111561358d5761358c613539565b5b9250929050565b6000806000604084860312156135ad576135ac612f1f565b5b600084013567ffffffffffffffff8111156135cb576135ca612f24565b5b6135d78682870161353e565b935093505060206135ea868287016130b7565b9150509250925092565b600067ffffffffffffffff82111561360f5761360e6132ce565b5b6136188261302a565b9050602081019050919050565b6000613638613633846135f4565b61332e565b905082815260208101848484011115613654576136536132c9565b5b61365f84828561337a565b509392505050565b600082601f83011261367c5761367b6132c4565b5b813561368c848260208601613625565b91505092915050565b600080600080608085870312156136af576136ae612f1f565b5b60006136bd8782880161316c565b94505060206136ce8782880161316c565b93505060406136df878288016130b7565b925050606085013567ffffffffffffffff811115613700576136ff612f24565b5b61370c87828801613667565b91505092959194509250565b6000806040838503121561372f5761372e612f1f565b5b600061373d8582860161316c565b925050602061374e8582860161316c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061379857613797613758565b5b50565b60008190506137a982613787565b919050565b60006137b98261379b565b9050919050565b6137c9816137ae565b82525050565b60006020820190506137e460008301846137c0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061383157607f821691505b602082108103613844576138436137ea565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613880602083612fef565b915061388b8261384a565b602082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006138ec601483612fef565b91506138f7826138b6565b602082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b600081905092915050565b50565b600061393d600083613922565b91506139488261392d565b600082019050919050565b600061395e82613930565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061399e601183612fef565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139f9565b613a4086836139f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613a7d613a78613a7384613096565b613a58565b613096565b9050919050565b6000819050919050565b613a9783613a62565b613aab613aa382613a84565b848454613a06565b825550505050565b600090565b613ac0613ab3565b613acb818484613a8e565b505050565b5b81811015613aef57613ae4600082613ab8565b600181019050613ad1565b5050565b601f821115613b3457613b05816139d4565b613b0e846139e9565b81016020851015613b1d578190505b613b31613b29856139e9565b830182613ad0565b50505b505050565b600082821c905092915050565b6000613b5760001984600802613b39565b1980831691505092915050565b6000613b708383613b46565b9150826002028217905092915050565b613b8982612fe4565b67ffffffffffffffff811115613ba257613ba16132ce565b5b613bac8254613819565b613bb7828285613af3565b600060209050601f831160018114613bea5760008415613bd8578287015190505b613be28582613b64565b865550613c4a565b601f198416613bf8866139d4565b60005b82811015613c2057848901518255600182019150602085019450602081019050613bfb565b86831015613c3d5784890151613c39601f891682613b46565b8355505b6001600288020188555050505b505050505050565b7f54686520696e746572696f7220686173206265656e206d696e74000000000000600082015250565b6000613c88601a83612fef565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f4e4654504153533a204e6f74206f7065726174696f6e616c0000000000000000600082015250565b6000613cf4601883612fef565b9150613cff82613cbe565b602082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d6482613096565b9150613d6f83613096565b9250828201905080821115613d8757613d86613d2a565b5b92915050565b7f4e4654504153533a204e756d626572206f662072657175657374656420746f6b60008201527f656e732077696c6c20657863656564206d617820737570706c79000000000000602082015250565b6000613de9603a83612fef565b9150613df482613d8d565b604082019050919050565b60006020820190508181036000830152613e1881613ddc565b9050919050565b7f4e4654504153533a204e756d626572206f662072657175657374656420746f6b60008201527f656e732077696c6c2065786365656420746865206c696d69742070657220616360208201527f636f756e74000000000000000000000000000000000000000000000000000000604082015250565b6000613ea1604583612fef565b9150613eac82613e1f565b606082019050919050565b60006020820190508181036000830152613ed081613e94565b9050919050565b6000613ee282613096565b9150613eed83613096565b9250828202613efb81613096565b91508282048414831517613f1257613f11613d2a565b5b5092915050565b7f42584e46543a2045746865722076616c75652073656e74206973206e6f74207360008201527f756666696369656e740000000000000000000000000000000000000000000000602082015250565b6000613f75602983612fef565b9150613f8082613f19565b604082019050919050565b60006020820190508181036000830152613fa481613f68565b9050919050565b60008160601b9050919050565b6000613fc382613fab565b9050919050565b6000613fd582613fb8565b9050919050565b613fed613fe882613119565b613fca565b82525050565b6000613fff8284613fdc565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000614044601783612fef565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d6602283612fef565b91506140e18261407a565b604082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614168602f83612fef565b91506141738261410c565b604082019050919050565b600060208201905081810360008301526141978161415b565b9050919050565b600081905092915050565b60006141b482612fe4565b6141be818561419e565b93506141ce818560208601613000565b80840191505092915050565b60006141e682856141a9565b91506141f282846141a9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061425a602683612fef565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142b782614290565b6142c1818561429b565b93506142d1818560208601613000565b6142da8161302a565b840191505092915050565b60006080820190506142fa600083018761312b565b614307602083018661312b565b61431460408301856131c1565b818103606083015261432681846142ac565b905095945050505050565b60008151905061434081612f55565b92915050565b60006020828403121561435c5761435b612f1f565b5b600061436a84828501614331565b91505092915050565b600061437e82613096565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143b0576143af613d2a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143f582613096565b915061440083613096565b9250826144105761440f6143bb565b5b828204905092915050565b600061442682613096565b915061443183613096565b925082820390508181111561444957614448613d2a565b5b92915050565b600061445a82613096565b915061446583613096565b925082614475576144746143bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f3881e3a09650ca659a5fe7f0769128f16751f8bf83110fe629f11ba768ed74664736f6c6343000811003300000000000000000000000063cd89e59d2f4d3fccc2b00483e58b2e752470b500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e657368727363376673415a4348657744384b45795067326b3252356a346f526d46315343577a79554766740000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637cb6475911610139578063beafc89b116100b6578063f2c4ce1e1161007a578063f2c4ce1e1461086e578063f2fde38b14610897578063f4a0a528146108c0578063f676308a146108e9578063f9020e3314610912578063fddcb5ea1461093d57610251565b8063beafc89b14610775578063c87b56dd1461079e578063d5abeb01146107db578063e55f58bb14610806578063e985e9c51461083157610251565b80639cd14e0f116100fd5780639cd14e0f146106c2578063a0712d68146106eb578063a22cb46514610707578063a6d612f914610730578063b88d4fde1461074c57610251565b80637cb64759146105ef5780638da5cb5b146106185780638dc823011461064357806395d89b411461066e5780639c58faa11461069957610251565b80634891ad88116101d2578063685756851161019657806368575685146104f15780636c0360eb1461051c5780636f8b44b01461054757806370a0823114610570578063715018a6146105ad57806372250380146105c457610251565b80634891ad881461040e57806349f2553a146104375780635e1e1004146104605780636352211e146104895780636817c76c146104c657610251565b806323b872dd1161021957806323b872dd1461034f5780632e34979e146103785780632eb4a7ab146103a35780633ccfd60b146103ce57806342842e0e146103e557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612f81565b61097a565b60405161028a9190612fc9565b60405180910390f35b34801561029f57600080fd5b506102a8610a0c565b6040516102b59190613074565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906130cc565b610a9e565b6040516102f2919061313a565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613181565b610b1a565b005b34801561033057600080fd5b50610339610cc0565b60405161034691906131d0565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906131eb565b610cd7565b005b34801561038457600080fd5b5061038d610ce7565b60405161039a91906131d0565b60405180910390f35b3480156103af57600080fd5b506103b8610cec565b6040516103c59190613257565b60405180910390f35b3480156103da57600080fd5b506103e3610cf2565b005b3480156103f157600080fd5b5061040c600480360381019061040791906131eb565b610e88565b005b34801561041a57600080fd5b5061043560048036038101906104309190613297565b610ea8565b005b34801561044357600080fd5b5061045e600480360381019061045991906133f9565b610f51565b005b34801561046c57600080fd5b5061048760048036038101906104829190613442565b610fe0565b005b34801561049557600080fd5b506104b060048036038101906104ab91906130cc565b6110a0565b6040516104bd919061313a565b60405180910390f35b3480156104d257600080fd5b506104db6110b2565b6040516104e891906131d0565b60405180910390f35b3480156104fd57600080fd5b506105066110b8565b60405161051391906131d0565b60405180910390f35b34801561052857600080fd5b506105316110be565b60405161053e9190613074565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906130cc565b61114c565b005b34801561057c57600080fd5b5061059760048036038101906105929190613442565b6111d2565b6040516105a491906131d0565b60405180910390f35b3480156105b957600080fd5b506105c261128a565b005b3480156105d057600080fd5b506105d9611312565b6040516105e69190613074565b60405180910390f35b3480156105fb57600080fd5b506106166004803603810190610611919061349b565b6113a0565b005b34801561062457600080fd5b5061062d611426565b60405161063a919061313a565b60405180910390f35b34801561064f57600080fd5b50610658611450565b60405161066591906131d0565b60405180910390f35b34801561067a57600080fd5b50610683611456565b6040516106909190613074565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190613442565b6114e8565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906130cc565b6115dd565b005b610705600480360381019061070091906130cc565b611663565b005b34801561071357600080fd5b5061072e600480360381019061072991906134f4565b6118a0565b005b61074a60048036038101906107459190613594565b611a17565b005b34801561075857600080fd5b50610773600480360381019061076e9190613695565b611ce5565b005b34801561078157600080fd5b5061079c600480360381019061079791906130cc565b611d58565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906130cc565b611dde565b6040516107d29190613074565b60405180910390f35b3480156107e757600080fd5b506107f0611f83565b6040516107fd91906131d0565b60405180910390f35b34801561081257600080fd5b5061081b611f89565b60405161082891906131d0565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613718565b611f8f565b6040516108659190612fc9565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906133f9565b612023565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613442565b6120b2565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906130cc565b6121a9565b005b3480156108f557600080fd5b50610910600480360381019061090b91906130cc565b61222f565b005b34801561091e57600080fd5b506109276122b5565b60405161093491906137cf565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613442565b6122c8565b60405161097191906131d0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a1b90613819565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4790613819565b8015610a945780601f10610a6957610100808354040283529160200191610a94565b820191906000526020600020905b815481529060010190602001808311610a7757829003601f168201915b5050505050905090565b6000610aa982612311565b610adf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582612370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab61243c565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e57610bd781610bd261243c565b611f8f565b610c0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cca612444565b6001546000540303905090565b610ce2838383612449565b505050565b603281565b60125481565b610cfa6127f0565b73ffffffffffffffffffffffffffffffffffffffff16610d18611426565b73ffffffffffffffffffffffffffffffffffffffff1614610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613896565b60405180910390fd5b600047905060008111610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613902565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dfe90613953565b60006040518083038185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906139b4565b60405180910390fd5b5050565b610ea383838360405180602001604052806000815250611ce5565b505050565b610eb06127f0565b73ffffffffffffffffffffffffffffffffffffffff16610ece611426565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613896565b60405180910390fd5b80601060006101000a81548160ff02191690836002811115610f4957610f48613758565b5b021790555050565b610f596127f0565b73ffffffffffffffffffffffffffffffffffffffff16610f77611426565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613896565b60405180910390fd5b80600c9081610fdc9190613b80565b5050565b610fe86127f0565b73ffffffffffffffffffffffffffffffffffffffff16611006611426565b73ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613896565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006110ab82612370565b9050919050565b600e5481565b600f5481565b600c80546110cb90613819565b80601f01602080910402602001604051908101604052809291908181526020018280546110f790613819565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b505050505081565b6111546127f0565b73ffffffffffffffffffffffffffffffffffffffff16611172611426565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613896565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611239576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112926127f0565b73ffffffffffffffffffffffffffffffffffffffff166112b0611426565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613896565b60405180910390fd5b61131060006127f8565b565b600d805461131f90613819565b80601f016020809104026020016040519081016040528092919081815260200182805461134b90613819565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b505050505081565b6113a86127f0565b73ffffffffffffffffffffffffffffffffffffffff166113c6611426565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613896565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461146590613819565b80601f016020809104026020016040519081016040528092919081815260200182805461149190613819565b80156114de5780601f106114b3576101008083540402835291602001916114de565b820191906000526020600020905b8154815290600101906020018083116114c157829003601f168201915b5050505050905090565b6114f06127f0565b73ffffffffffffffffffffffffffffffffffffffff1661150e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613896565b60405180910390fd5b601360149054906101000a900460ff16156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613c9e565b60405180910390fd5b6001601360146101000a81548160ff0219169083151502179055506115da8160326128be565b50565b6115e56127f0565b73ffffffffffffffffffffffffffffffffffffffff16611603611426565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613896565b60405180910390fd5b80600b8190555050565b60028181600281111561167957611678613758565b5b601060009054906101000a900460ff16600281111561169b5761169a613758565b5b146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613d0a565b60405180910390fd5b600954816116e76128dc565b6116f19190613d59565b1115611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613dff565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117809190613d59565b11156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613eb7565b60405180910390fd5b6000600a54846117cf6128dc565b6117d99190613d59565b11156117f257600e54846117ed9190613ed7565b6117f5565b60005b90508034101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613f8b565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118899190613d59565b9250508190555061189a33856128be565b50505050565b6118a861243c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061191961243c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c661243c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0b9190612fc9565b60405180910390a35050565b600181816002811115611a2d57611a2c613758565b5b601060009054906101000a900460ff166002811115611a4f57611a4e613758565b5b14611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613d0a565b60405180910390fd5b60095481611a9b6128dc565b611aa59190613d59565b1115611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613dff565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b349190613d59565b1115611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613eb7565b60405180910390fd5b600033604051602001611b889190613ff3565b604051602081830303815290604052805190602001209050611bee868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836128ef565b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c249061405a565b60405180910390fd5b600f5484611c3b9190613ed7565b341015611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906140ec565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ccc9190613d59565b92505081905550611cdd33856128be565b505050505050565b611cf0848484612449565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5257611d1b84848484612906565b611d51576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d606127f0565b73ffffffffffffffffffffffffffffffffffffffff16611d7e611426565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613896565b60405180910390fd5b80600f8190555050565b6060611de982612311565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f9061417e565b60405180910390fd5b6000600c8054611e3790613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6390613819565b8015611eb05780601f10611e8557610100808354040283529160200191611eb0565b820191906000526020600020905b815481529060010190602001808311611e9357829003601f168201915b505050505090506000815111611f5057600d8054611ecd90613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef990613819565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050611f7b565b80611f5a84612a56565b604051602001611f6b9291906141da565b6040516020818303038152906040525b915050919050565b60095481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202b6127f0565b73ffffffffffffffffffffffffffffffffffffffff16612049611426565b73ffffffffffffffffffffffffffffffffffffffff161461209f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209690613896565b60405180910390fd5b80600d90816120ae9190613b80565b5050565b6120ba6127f0565b73ffffffffffffffffffffffffffffffffffffffff166120d8611426565b73ffffffffffffffffffffffffffffffffffffffff161461212e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212590613896565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614270565b60405180910390fd5b6121a6816127f8565b50565b6121b16127f0565b73ffffffffffffffffffffffffffffffffffffffff166121cf611426565b73ffffffffffffffffffffffffffffffffffffffff1614612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613896565b60405180910390fd5b80600e8190555050565b6122376127f0565b73ffffffffffffffffffffffffffffffffffffffff16612255611426565b73ffffffffffffffffffffffffffffffffffffffff16146122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613896565b60405180910390fd5b80600a8190555050565b601060009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161231c612444565b1115801561232b575060005482105b8015612369575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061237f612444565b11612405576000548110156124045760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612402575b600081036123f85760046000836001900393508381526020019081526020016000205490506123ce565b8092505050612437565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061245482612370565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124dc61243c565b73ffffffffffffffffffffffffffffffffffffffff16148061250b575061250a8561250561243c565b611f8f565b5b80612550575061251961243c565b73ffffffffffffffffffffffffffffffffffffffff1661253884610a9e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612589576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125ef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fc8585856001612bb6565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126f986612bbc565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612781576000600184019050600060046000838152602001908152602001600020540361277f57600054811461277e578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e98585856001612bc6565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128d8828260405180602001604052806000815250612bcc565b5050565b60006128e6612444565b60005403905090565b6000826128fc8584612e7f565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292c61243c565b8786866040518563ffffffff1660e01b815260040161294e94939291906142e5565b6020604051808303816000875af192505050801561298a57506040513d601f19601f820116820180604052508101906129879190614346565b60015b612a03573d80600081146129ba576040519150601f19603f3d011682016040523d82523d6000602084013e6129bf565b606091505b5060008151036129fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612a9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb1565b600082905060005b60008214612acf578080612ab890614373565b915050600a82612ac891906143ea565b9150612aa5565b60008167ffffffffffffffff811115612aeb57612aea6132ce565b5b6040519080825280601f01601f191660200182016040528015612b1d5781602001600182028036833780820191505090505b5090505b60008514612baa57600182612b36919061441b565b9150600a85612b45919061444f565b6030612b519190613d59565b60f81b818381518110612b6757612b66614480565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba391906143ea565b9450612b21565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c38576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612c72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c7f6000858386612bb6565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ce460018514612ef4565b901b60a042901b612cf486612bbc565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612df8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da86000878480600101955087612906565b612dde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d39578260005414612df357600080fd5b612e63565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612df9575b816000819055505050612e796000858386612bc6565b50505050565b60008082905060005b8451811015612ee9576000858281518110612ea657612ea5614480565b5b60200260200101519050808311612ec857612ec18382612efe565b9250612ed5565b612ed28184612efe565b92505b508080612ee190614373565b915050612e88565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5e81612f29565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b600060208284031215612f9757612f96612f1f565b5b6000612fa584828501612f6c565b91505092915050565b60008115159050919050565b612fc381612fae565b82525050565b6000602082019050612fde6000830184612fba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561301e578082015181840152602081019050613003565b60008484015250505050565b6000601f19601f8301169050919050565b600061304682612fe4565b6130508185612fef565b9350613060818560208601613000565b6130698161302a565b840191505092915050565b6000602082019050818103600083015261308e818461303b565b905092915050565b6000819050919050565b6130a981613096565b81146130b457600080fd5b50565b6000813590506130c6816130a0565b92915050565b6000602082840312156130e2576130e1612f1f565b5b60006130f0848285016130b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613124826130f9565b9050919050565b61313481613119565b82525050565b600060208201905061314f600083018461312b565b92915050565b61315e81613119565b811461316957600080fd5b50565b60008135905061317b81613155565b92915050565b6000806040838503121561319857613197612f1f565b5b60006131a68582860161316c565b92505060206131b7858286016130b7565b9150509250929050565b6131ca81613096565b82525050565b60006020820190506131e560008301846131c1565b92915050565b60008060006060848603121561320457613203612f1f565b5b60006132128682870161316c565b93505060206132238682870161316c565b9250506040613234868287016130b7565b9150509250925092565b6000819050919050565b6132518161323e565b82525050565b600060208201905061326c6000830184613248565b92915050565b6003811061327f57600080fd5b50565b60008135905061329181613272565b92915050565b6000602082840312156132ad576132ac612f1f565b5b60006132bb84828501613282565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133068261302a565b810181811067ffffffffffffffff82111715613325576133246132ce565b5b80604052505050565b6000613338612f15565b905061334482826132fd565b919050565b600067ffffffffffffffff821115613364576133636132ce565b5b61336d8261302a565b9050602081019050919050565b82818337600083830152505050565b600061339c61339784613349565b61332e565b9050828152602081018484840111156133b8576133b76132c9565b5b6133c384828561337a565b509392505050565b600082601f8301126133e0576133df6132c4565b5b81356133f0848260208601613389565b91505092915050565b60006020828403121561340f5761340e612f1f565b5b600082013567ffffffffffffffff81111561342d5761342c612f24565b5b613439848285016133cb565b91505092915050565b60006020828403121561345857613457612f1f565b5b60006134668482850161316c565b91505092915050565b6134788161323e565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b6000602082840312156134b1576134b0612f1f565b5b60006134bf84828501613486565b91505092915050565b6134d181612fae565b81146134dc57600080fd5b50565b6000813590506134ee816134c8565b92915050565b6000806040838503121561350b5761350a612f1f565b5b60006135198582860161316c565b925050602061352a858286016134df565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613554576135536132c4565b5b8235905067ffffffffffffffff81111561357157613570613534565b5b60208301915083602082028301111561358d5761358c613539565b5b9250929050565b6000806000604084860312156135ad576135ac612f1f565b5b600084013567ffffffffffffffff8111156135cb576135ca612f24565b5b6135d78682870161353e565b935093505060206135ea868287016130b7565b9150509250925092565b600067ffffffffffffffff82111561360f5761360e6132ce565b5b6136188261302a565b9050602081019050919050565b6000613638613633846135f4565b61332e565b905082815260208101848484011115613654576136536132c9565b5b61365f84828561337a565b509392505050565b600082601f83011261367c5761367b6132c4565b5b813561368c848260208601613625565b91505092915050565b600080600080608085870312156136af576136ae612f1f565b5b60006136bd8782880161316c565b94505060206136ce8782880161316c565b93505060406136df878288016130b7565b925050606085013567ffffffffffffffff811115613700576136ff612f24565b5b61370c87828801613667565b91505092959194509250565b6000806040838503121561372f5761372e612f1f565b5b600061373d8582860161316c565b925050602061374e8582860161316c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061379857613797613758565b5b50565b60008190506137a982613787565b919050565b60006137b98261379b565b9050919050565b6137c9816137ae565b82525050565b60006020820190506137e460008301846137c0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061383157607f821691505b602082108103613844576138436137ea565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613880602083612fef565b915061388b8261384a565b602082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006138ec601483612fef565b91506138f7826138b6565b602082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b600081905092915050565b50565b600061393d600083613922565b91506139488261392d565b600082019050919050565b600061395e82613930565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061399e601183612fef565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139f9565b613a4086836139f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613a7d613a78613a7384613096565b613a58565b613096565b9050919050565b6000819050919050565b613a9783613a62565b613aab613aa382613a84565b848454613a06565b825550505050565b600090565b613ac0613ab3565b613acb818484613a8e565b505050565b5b81811015613aef57613ae4600082613ab8565b600181019050613ad1565b5050565b601f821115613b3457613b05816139d4565b613b0e846139e9565b81016020851015613b1d578190505b613b31613b29856139e9565b830182613ad0565b50505b505050565b600082821c905092915050565b6000613b5760001984600802613b39565b1980831691505092915050565b6000613b708383613b46565b9150826002028217905092915050565b613b8982612fe4565b67ffffffffffffffff811115613ba257613ba16132ce565b5b613bac8254613819565b613bb7828285613af3565b600060209050601f831160018114613bea5760008415613bd8578287015190505b613be28582613b64565b865550613c4a565b601f198416613bf8866139d4565b60005b82811015613c2057848901518255600182019150602085019450602081019050613bfb565b86831015613c3d5784890151613c39601f891682613b46565b8355505b6001600288020188555050505b505050505050565b7f54686520696e746572696f7220686173206265656e206d696e74000000000000600082015250565b6000613c88601a83612fef565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f4e4654504153533a204e6f74206f7065726174696f6e616c0000000000000000600082015250565b6000613cf4601883612fef565b9150613cff82613cbe565b602082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d6482613096565b9150613d6f83613096565b9250828201905080821115613d8757613d86613d2a565b5b92915050565b7f4e4654504153533a204e756d626572206f662072657175657374656420746f6b60008201527f656e732077696c6c20657863656564206d617820737570706c79000000000000602082015250565b6000613de9603a83612fef565b9150613df482613d8d565b604082019050919050565b60006020820190508181036000830152613e1881613ddc565b9050919050565b7f4e4654504153533a204e756d626572206f662072657175657374656420746f6b60008201527f656e732077696c6c2065786365656420746865206c696d69742070657220616360208201527f636f756e74000000000000000000000000000000000000000000000000000000604082015250565b6000613ea1604583612fef565b9150613eac82613e1f565b606082019050919050565b60006020820190508181036000830152613ed081613e94565b9050919050565b6000613ee282613096565b9150613eed83613096565b9250828202613efb81613096565b91508282048414831517613f1257613f11613d2a565b5b5092915050565b7f42584e46543a2045746865722076616c75652073656e74206973206e6f74207360008201527f756666696369656e740000000000000000000000000000000000000000000000602082015250565b6000613f75602983612fef565b9150613f8082613f19565b604082019050919050565b60006020820190508181036000830152613fa481613f68565b9050919050565b60008160601b9050919050565b6000613fc382613fab565b9050919050565b6000613fd582613fb8565b9050919050565b613fed613fe882613119565b613fca565b82525050565b6000613fff8284613fdc565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000614044601783612fef565b915061404f8261400e565b602082019050919050565b6000602082019050818103600083015261407381614037565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d6602283612fef565b91506140e18261407a565b604082019050919050565b60006020820190508181036000830152614105816140c9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614168602f83612fef565b91506141738261410c565b604082019050919050565b600060208201905081810360008301526141978161415b565b9050919050565b600081905092915050565b60006141b482612fe4565b6141be818561419e565b93506141ce818560208601613000565b80840191505092915050565b60006141e682856141a9565b91506141f282846141a9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061425a602683612fef565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142b782614290565b6142c1818561429b565b93506142d1818560208601613000565b6142da8161302a565b840191505092915050565b60006080820190506142fa600083018761312b565b614307602083018661312b565b61431460408301856131c1565b818103606083015261432681846142ac565b905095945050505050565b60008151905061434081612f55565b92915050565b60006020828403121561435c5761435b612f1f565b5b600061436a84828501614331565b91505092915050565b600061437e82613096565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143b0576143af613d2a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143f582613096565b915061440083613096565b9250826144105761440f6143bb565b5b828204905092915050565b600061442682613096565b915061443183613096565b925082820390508181111561444957614448613d2a565b5b92915050565b600061445a82613096565b915061446583613096565b925082614475576144746143bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f3881e3a09650ca659a5fe7f0769128f16751f8bf83110fe629f11ba768ed74664736f6c63430008110033

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

00000000000000000000000063cd89e59d2f4d3fccc2b00483e58b2e752470b500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e657368727363376673415a4348657744384b45795067326b3252356a346f526d46315343577a79554766740000000000000000000000

-----Decoded View---------------
Arg [0] : paymentAddress (address): 0x63Cd89E59D2F4D3fccC2B00483e58b2E752470B5
Arg [1] : _notRevealedURI (string): ipfs://QmNeshrsc7fsAZCHewD8KEyPg2k2R5j4oRmF1SCWzyUGft

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000063cd89e59d2f4d3fccc2b00483e58b2e752470b5
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d4e657368727363376673415a4348657744384b45795067
Arg [4] : 326b3252356a346f526d46315343577a79554766740000000000000000000000


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.