ETH Price: $3,144.19 (-4.68%)
Gas: 4 Gwei

Token

ParadiseTicket (ParadiseTicket)
 

Overview

Max Total Supply

1,000 ParadiseTicket

Holders

680

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jermain.eth
Balance
1 ParadiseTicket
0xa227b5ef06410639d4985d6be693352b71b8a165
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:
ParadiseTicket

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ParadiseTicket is ERC721A, Pausable, Ownable 
{
    string public BASE_URI;

    uint256 public MAX_SUPPLY;
    uint256 public PARADISE_MINT_START_TIMESTAMP;
    uint256 public OG_MINT_START_TIMESTAMP;
    uint256 public PUBLIC_MINT_START_TIMESTAMP;

    // 0 = not whitelisted, 1 = og whitelist, 2 = paradise whitelist
    mapping (address => uint8) private _whitelistMapping;
    mapping (address => bool) private _alreadyMintedMapping;

    constructor(string memory baseURI, uint256 maxSupply, uint256 paradiseMintStartTimestamp, uint256 ogMintStartTimestamp, uint256 publicMintStartTimestamp) ERC721A("ParadiseTicket", "ParadiseTicket") 
    {
        BASE_URI = baseURI;
        MAX_SUPPLY = maxSupply;
        PARADISE_MINT_START_TIMESTAMP = paradiseMintStartTimestamp;
        OG_MINT_START_TIMESTAMP = ogMintStartTimestamp;
        PUBLIC_MINT_START_TIMESTAMP = publicMintStartTimestamp;
    }

    function pause() public onlyOwner 
    {
        _pause();
    }

    function unpause() public onlyOwner 
    {
        _unpause();
    }

    function withdraw() public onlyOwner 
    {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function forceMint(uint256 amount) public onlyOwner
    {
        _safeMint(msg.sender, amount);
    }

    function mint() public
    {
        require(
            block.timestamp >= PUBLIC_MINT_START_TIMESTAMP ||
            block.timestamp >= OG_MINT_START_TIMESTAMP || 
            block.timestamp >= PARADISE_MINT_START_TIMESTAMP,
            "Minting not started");
        require(totalSupply() < MAX_SUPPLY, "SOLD OUT!");
        require(canMint(msg.sender), "Address cannot mint more");
        require(isEligible(msg.sender), "Address is not eligible");

        _alreadyMintedMapping[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function setParadiseMintStartTimestamp(uint256 value) external onlyOwner
    {
        PARADISE_MINT_START_TIMESTAMP = value;
    }

    function setOgMintStartTimestamp(uint256 value) external onlyOwner
    {
        OG_MINT_START_TIMESTAMP = value;
    }

    function setPublicMintStartTimestamp(uint256 value) external onlyOwner
    {
        PUBLIC_MINT_START_TIMESTAMP = value;
    }

    function addToWhitelist(address[] calldata list, uint8 whitelistId) external onlyOwner
    {
        for (uint i = 0; i < list.length; i++) 
        {
            address addr = list[i];
            _whitelistMapping[addr] = whitelistId;
        }
    }

    function canMint(address to) public view returns (bool)
    {
        uint256 timeNow = block.timestamp;
        return timeNow >= PUBLIC_MINT_START_TIMESTAMP || !_alreadyMintedMapping[to];
    }

    function isEligible(address to) public view returns (bool) 
    {
        uint256 timeNow = block.timestamp;
        if (timeNow >= PUBLIC_MINT_START_TIMESTAMP)
        {
            return true;
        }

        uint8 whitelistId = _whitelistMapping[to];

        if (timeNow >= OG_MINT_START_TIMESTAMP)
        {
            return whitelistId > 0;
        }

        if (timeNow >= PARADISE_MINT_START_TIMESTAMP)
        {
            return whitelistId > 1;
        }

        return false;
    }

    function _beforeTokenTransfers(address from, address to, uint256 tokenId, uint quantity) internal whenNotPaused override
    {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    function setBaseUri(string memory value) public onlyOwner
    {
        BASE_URI = value;
    }

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

    function tokenURI(uint256) public view override returns (string memory)
    {
        return _baseURI();
    }
}

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

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"paradiseMintStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"ogMintStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"publicMintStartTimestamp","type":"uint256"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARADISE_MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint8","name":"whitelistId","type":"uint8"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"isEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setOgMintStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setParadiseMintStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPublicMintStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620041d4380380620041d4833981810160405281019062000037919062000359565b6040518060400160405280600e81526020017f50617261646973655469636b65740000000000000000000000000000000000008152506040518060400160405280600e81526020017f50617261646973655469636b65740000000000000000000000000000000000008152508160019080519060200190620000bb92919062000220565b508060029080519060200190620000d492919062000220565b5050506000600760006101000a81548160ff02191690831515021790555062000112620001066200015260201b60201c565b6200015a60201b60201c565b84600890805190602001906200012a92919062000220565b508360098190555082600a8190555081600b8190555080600c81905550505050505062000588565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022e9062000493565b90600052602060002090601f0160209004810192826200025257600085556200029e565b82601f106200026d57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029d57825182559160200191906001019062000280565b5b509050620002ad9190620002b1565b5090565b5b80821115620002cc576000816000905550600101620002b2565b5090565b6000620002e7620002e1846200041d565b620003f4565b9050828152602081018484840111156200030057600080fd5b6200030d8482856200045d565b509392505050565b600082601f8301126200032757600080fd5b815162000339848260208601620002d0565b91505092915050565b60008151905062000353816200056e565b92915050565b600080600080600060a086880312156200037257600080fd5b600086015167ffffffffffffffff8111156200038d57600080fd5b6200039b8882890162000315565b9550506020620003ae8882890162000342565b9450506040620003c18882890162000342565b9350506060620003d48882890162000342565b9250506080620003e78882890162000342565b9150509295509295909350565b60006200040062000413565b90506200040e8282620004c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200043b576200043a6200052e565b5b62000446826200055d565b9050602081019050919050565b6000819050919050565b60005b838110156200047d57808201518184015260208101905062000460565b838111156200048d576000848401525b50505050565b60006002820490506001821680620004ac57607f821691505b60208210811415620004c357620004c2620004ff565b5b50919050565b620004d4826200055d565b810181811067ffffffffffffffff82111715620004f657620004f56200052e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005798162000453565b81146200058557600080fd5b50565b613c3c80620005986000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806366e305fd11610130578063a22cb465116100b8578063dbddb26a1161007c578063dbddb26a14610618578063e985e9c514610636578063f2fde38b14610666578063f7a9ddc114610682578063f9f263001461069e57610227565b8063a22cb46514610564578063b88d4fde14610580578063c2ba47441461059c578063c87b56dd146105cc578063d1c6ca9e146105fc57610227565b80637b4f99b2116100ff5780637b4f99b2146104e45780638456cb59146105025780638da5cb5b1461050c57806395d89b411461052a578063a0bcfc7f1461054857610227565b806366e305fd1461045e5780636c1fff591461048e57806370a08231146104aa578063715018a6146104da57610227565b80633ccfd60b116101b35780634b4405c7116101825780634b4405c7146103a65780634f6ccce7146103c457806351251320146103f45780635c975abb146104105780636352211e1461042e57610227565b80633ccfd60b146103585780633db2d5de146103625780633f4ba83a1461038057806342842e0e1461038a57610227565b80631249c58b116101fa5780631249c58b146102c657806318160ddd146102d057806323b872dd146102ee5780632f745c591461030a57806332cb6b0c1461033a57610227565b806301ffc9a71461022c57806306fdde031461025c578063081812fc1461027a578063095ea7b3146102aa575b600080fd5b61024660048036038101906102419190613327565b6106ba565b6040516102539190613601565b60405180910390f35b610264610804565b604051610271919061361c565b60405180910390f35b610294600480360381019061028f91906133ba565b610896565b6040516102a1919061359a565b60405180910390f35b6102c460048036038101906102bf9190613293565b610912565b005b6102ce610a1d565b005b6102d8610bbc565b6040516102e5919061373e565b60405180910390f35b6103086004803603810190610303919061318d565b610c11565b005b610324600480360381019061031f9190613293565b610c21565b604051610331919061373e565b60405180910390f35b610342610e28565b60405161034f919061373e565b60405180910390f35b610360610e2e565b005b61036a610ef9565b604051610377919061373e565b60405180910390f35b610388610eff565b005b6103a4600480360381019061039f919061318d565b610f85565b005b6103ae610fa5565b6040516103bb919061373e565b60405180910390f35b6103de60048036038101906103d991906133ba565b610fab565b6040516103eb919061373e565b60405180910390f35b61040e600480360381019061040991906132cf565b61111c565b005b61041861126a565b6040516104259190613601565b60405180910390f35b610448600480360381019061044391906133ba565b611281565b604051610455919061359a565b60405180910390f35b61047860048036038101906104739190613128565b611297565b6040516104859190613601565b60405180910390f35b6104a860048036038101906104a391906133ba565b61133f565b005b6104c460048036038101906104bf9190613128565b6113c8565b6040516104d1919061373e565b60405180910390f35b6104e2611498565b005b6104ec611520565b6040516104f9919061373e565b60405180910390f35b61050a611526565b005b6105146115ac565b604051610521919061359a565b60405180910390f35b6105326115d6565b60405161053f919061361c565b60405180910390f35b610562600480360381019061055d9190613379565b611668565b005b61057e60048036038101906105799190613257565b6116fe565b005b61059a600480360381019061059591906131dc565b611876565b005b6105b660048036038101906105b19190613128565b6118c9565b6040516105c39190613601565b60405180910390f35b6105e660048036038101906105e191906133ba565b611932565b6040516105f3919061361c565b60405180910390f35b610616600480360381019061061191906133ba565b611943565b005b6106206119c9565b60405161062d919061361c565b60405180910390f35b610650600480360381019061064b9190613151565b611a57565b60405161065d9190613601565b60405180910390f35b610680600480360381019061067b9190613128565b611aeb565b005b61069c600480360381019061069791906133ba565b611be3565b005b6106b860048036038101906106b391906133ba565b611c69565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ed57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fd57506107fc82611cef565b5b9050919050565b606060018054610813906138db565b80601f016020809104026020016040519081016040528092919081815260200182805461083f906138db565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a182611d59565b6108d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091d82611281565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611dc1565b73ffffffffffffffffffffffffffffffffffffffff16141580156109d657506109d4816109cf611dc1565b611a57565b155b15610a0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a18838383611dc9565b505050565b600c5442101580610a305750600b544210155b80610a3d5750600a544210155b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a739061367e565b60405180910390fd5b600954610a87610bbc565b10610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906136fe565b60405180910390fd5b610ad0336118c9565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b06906136be565b60405180910390fd5b610b1833611297565b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e9061369e565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610bba336001611e7b565b565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c1c838383611e99565b505050565b6000610c2c836113c8565b8210610c64576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e1c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7b5750610e0f565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0d5786841415610e04578195505050505050610e22565b83806001019450505b505b8080600101915050610c9e565b50600080fd5b92915050565b60095481565b610e36611dc1565b73ffffffffffffffffffffffffffffffffffffffff16610e546115ac565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061371e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ef5573d6000803e3d6000fd5b5050565b600b5481565b610f07611dc1565b73ffffffffffffffffffffffffffffffffffffffff16610f256115ac565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f729061371e565b60405180910390fd5b610f836123b6565b565b610fa083838360405180602001604052806000815250611876565b505050565b600c5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156110e4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110d657858314156110cd5781945050505050611117565b82806001019350505b508080600101915050610fe3565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611124611dc1565b73ffffffffffffffffffffffffffffffffffffffff166111426115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061371e565b60405180910390fd5b60005b838390508110156112645760008484838181106111e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111f69190613128565b905082600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555050808061125c9061393e565b91505061119b565b50505050565b6000600760009054906101000a900460ff16905090565b600061128c82612458565b600001519050919050565b600080429050600c5481106112b057600191505061133a565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600b54821061131a5760008160ff16119250505061133a565b600a5482106113335760018160ff16119250505061133a565b6000925050505b919050565b611347611dc1565b73ffffffffffffffffffffffffffffffffffffffff166113656115ac565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061371e565b60405180910390fd5b6113c53382611e7b565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611430576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114a0611dc1565b73ffffffffffffffffffffffffffffffffffffffff166114be6115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061371e565b60405180910390fd5b61151e6000612700565b565b600a5481565b61152e611dc1565b73ffffffffffffffffffffffffffffffffffffffff1661154c6115ac565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061371e565b60405180910390fd5b6115aa6127c6565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115e5906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054611611906138db565b801561165e5780601f106116335761010080835404028352916020019161165e565b820191906000526020600020905b81548152906001019060200180831161164157829003601f168201915b5050505050905090565b611670611dc1565b73ffffffffffffffffffffffffffffffffffffffff1661168e6115ac565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061371e565b60405180910390fd5b80600890805190602001906116fa929190612eaa565b5050565b611706611dc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611778611dc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611825611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186a9190613601565b60405180910390a35050565b611881848484611e99565b61188d84848484612869565b6118c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600080429050600c548110158061192a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b915050919050565b606061193c6129f7565b9050919050565b61194b611dc1565b73ffffffffffffffffffffffffffffffffffffffff166119696115ac565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061371e565b60405180910390fd5b80600a8190555050565b600880546119d6906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054611a02906138db565b8015611a4f5780601f10611a2457610100808354040283529160200191611a4f565b820191906000526020600020905b815481529060010190602001808311611a3257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af3611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611b116115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e9061371e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061365e565b60405180910390fd5b611be081612700565b50565b611beb611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611c096115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c569061371e565b60405180910390fd5b80600b8190555050565b611c71611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611c8f6115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc9061371e565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611dba575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611e95828260405180602001604052806000815250612a89565b5050565b6000611ea482612458565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ecb611dc1565b73ffffffffffffffffffffffffffffffffffffffff161480611efe5750611efd8260000151611ef8611dc1565b611a57565b5b80611f435750611f0c611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611f2b84610896565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fe5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561204c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120598585856001612a9b565b6120696000848460000151611dc9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123465760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156123455782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123af8585856001612af5565b5050505050565b6123be61126a565b6123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f49061363e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612441611dc1565b60405161244e919061359a565b60405180910390a1565b612460612f30565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156126c9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126c757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ab5780925050506126fb565b5b6001156126c657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c15780925050506126fb565b6125ac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ce61126a565b1561280e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612805906136de565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612852611dc1565b60405161285f919061359a565b60405180910390a1565b600061288a8473ffffffffffffffffffffffffffffffffffffffff16612afb565b156129ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b3611dc1565b8786866040518563ffffffff1660e01b81526004016128d594939291906135b5565b602060405180830381600087803b1580156128ef57600080fd5b505af192505050801561292057506040513d601f19601f8201168201806040525081019061291d9190613350565b60015b61299a573d8060008114612950576040519150601f19603f3d011682016040523d82523d6000602084013e612955565b606091505b50600081511415612992576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ef565b600190505b949350505050565b606060088054612a06906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054612a32906138db565b8015612a7f5780601f10612a5457610100808354040283529160200191612a7f565b820191906000526020600020905b815481529060010190602001808311612a6257829003601f168201915b5050505050905090565b612a968383836001612b0e565b505050565b612aa361126a565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906136de565b60405180910390fd5b612aef84848484612ea4565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ba9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612be4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf16000868387612a9b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e5657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e0a5750612e086000888488612869565b155b15612e41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d8f565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612e9d6000868387612af5565b5050505050565b50505050565b828054612eb6906138db565b90600052602060002090601f016020900481019282612ed85760008555612f1f565b82601f10612ef157805160ff1916838001178555612f1f565b82800160010185558215612f1f579182015b82811115612f1e578251825591602001919060010190612f03565b5b509050612f2c9190612f73565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8c576000816000905550600101612f74565b5090565b6000612fa3612f9e8461377e565b613759565b905082815260208101848484011115612fbb57600080fd5b612fc6848285613899565b509392505050565b6000612fe1612fdc846137af565b613759565b905082815260208101848484011115612ff957600080fd5b613004848285613899565b509392505050565b60008135905061301b81613b93565b92915050565b60008083601f84011261303357600080fd5b8235905067ffffffffffffffff81111561304c57600080fd5b60208301915083602082028301111561306457600080fd5b9250929050565b60008135905061307a81613baa565b92915050565b60008135905061308f81613bc1565b92915050565b6000815190506130a481613bc1565b92915050565b600082601f8301126130bb57600080fd5b81356130cb848260208601612f90565b91505092915050565b600082601f8301126130e557600080fd5b81356130f5848260208601612fce565b91505092915050565b60008135905061310d81613bd8565b92915050565b60008135905061312281613bef565b92915050565b60006020828403121561313a57600080fd5b60006131488482850161300c565b91505092915050565b6000806040838503121561316457600080fd5b60006131728582860161300c565b92505060206131838582860161300c565b9150509250929050565b6000806000606084860312156131a257600080fd5b60006131b08682870161300c565b93505060206131c18682870161300c565b92505060406131d2868287016130fe565b9150509250925092565b600080600080608085870312156131f257600080fd5b60006132008782880161300c565b94505060206132118782880161300c565b9350506040613222878288016130fe565b925050606085013567ffffffffffffffff81111561323f57600080fd5b61324b878288016130aa565b91505092959194509250565b6000806040838503121561326a57600080fd5b60006132788582860161300c565b92505060206132898582860161306b565b9150509250929050565b600080604083850312156132a657600080fd5b60006132b48582860161300c565b92505060206132c5858286016130fe565b9150509250929050565b6000806000604084860312156132e457600080fd5b600084013567ffffffffffffffff8111156132fe57600080fd5b61330a86828701613021565b9350935050602061331d86828701613113565b9150509250925092565b60006020828403121561333957600080fd5b600061334784828501613080565b91505092915050565b60006020828403121561336257600080fd5b600061337084828501613095565b91505092915050565b60006020828403121561338b57600080fd5b600082013567ffffffffffffffff8111156133a557600080fd5b6133b1848285016130d4565b91505092915050565b6000602082840312156133cc57600080fd5b60006133da848285016130fe565b91505092915050565b6133ec81613818565b82525050565b6133fb8161382a565b82525050565b600061340c826137e0565b61341681856137f6565b93506134268185602086016138a8565b61342f81613a14565b840191505092915050565b6000613445826137eb565b61344f8185613807565b935061345f8185602086016138a8565b61346881613a14565b840191505092915050565b6000613480601483613807565b915061348b82613a25565b602082019050919050565b60006134a3602683613807565b91506134ae82613a4e565b604082019050919050565b60006134c6601383613807565b91506134d182613a9d565b602082019050919050565b60006134e9601783613807565b91506134f482613ac6565b602082019050919050565b600061350c601883613807565b915061351782613aef565b602082019050919050565b600061352f601083613807565b915061353a82613b18565b602082019050919050565b6000613552600983613807565b915061355d82613b41565b602082019050919050565b6000613575602083613807565b915061358082613b6a565b602082019050919050565b61359481613882565b82525050565b60006020820190506135af60008301846133e3565b92915050565b60006080820190506135ca60008301876133e3565b6135d760208301866133e3565b6135e4604083018561358b565b81810360608301526135f68184613401565b905095945050505050565b600060208201905061361660008301846133f2565b92915050565b60006020820190508181036000830152613636818461343a565b905092915050565b6000602082019050818103600083015261365781613473565b9050919050565b6000602082019050818103600083015261367781613496565b9050919050565b60006020820190508181036000830152613697816134b9565b9050919050565b600060208201905081810360008301526136b7816134dc565b9050919050565b600060208201905081810360008301526136d7816134ff565b9050919050565b600060208201905081810360008301526136f781613522565b9050919050565b6000602082019050818103600083015261371781613545565b9050919050565b6000602082019050818103600083015261373781613568565b9050919050565b6000602082019050613753600083018461358b565b92915050565b6000613763613774565b905061376f828261390d565b919050565b6000604051905090565b600067ffffffffffffffff821115613799576137986139e5565b5b6137a282613a14565b9050602081019050919050565b600067ffffffffffffffff8211156137ca576137c96139e5565b5b6137d382613a14565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061382382613862565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138c65780820151818401526020810190506138ab565b838111156138d5576000848401525b50505050565b600060028204905060018216806138f357607f821691505b60208210811415613907576139066139b6565b5b50919050565b61391682613a14565b810181811067ffffffffffffffff82111715613935576139346139e5565b5b80604052505050565b600061394982613882565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561397c5761397b613987565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206e6f74207374617274656400000000000000000000000000600082015250565b7f41646472657373206973206e6f7420656c696769626c65000000000000000000600082015250565b7f416464726573732063616e6e6f74206d696e74206d6f72650000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f534f4c44204f5554210000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613b9c81613818565b8114613ba757600080fd5b50565b613bb38161382a565b8114613bbe57600080fd5b50565b613bca81613836565b8114613bd557600080fd5b50565b613be181613882565b8114613bec57600080fd5b50565b613bf88161388c565b8114613c0357600080fd5b5056fea2646970667358221220357262fc734c4e5596d937e19200782f2960570a5b51810f49dff387e860582164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000623de70000000000000000000000000000000000000000000000000000000000623f38800000000000000000000000000000000000000000000000000000000062408a000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575453487272624852446d714e7278634c317651416d554647637867556651567536434a4b4d6f75383333720000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c806366e305fd11610130578063a22cb465116100b8578063dbddb26a1161007c578063dbddb26a14610618578063e985e9c514610636578063f2fde38b14610666578063f7a9ddc114610682578063f9f263001461069e57610227565b8063a22cb46514610564578063b88d4fde14610580578063c2ba47441461059c578063c87b56dd146105cc578063d1c6ca9e146105fc57610227565b80637b4f99b2116100ff5780637b4f99b2146104e45780638456cb59146105025780638da5cb5b1461050c57806395d89b411461052a578063a0bcfc7f1461054857610227565b806366e305fd1461045e5780636c1fff591461048e57806370a08231146104aa578063715018a6146104da57610227565b80633ccfd60b116101b35780634b4405c7116101825780634b4405c7146103a65780634f6ccce7146103c457806351251320146103f45780635c975abb146104105780636352211e1461042e57610227565b80633ccfd60b146103585780633db2d5de146103625780633f4ba83a1461038057806342842e0e1461038a57610227565b80631249c58b116101fa5780631249c58b146102c657806318160ddd146102d057806323b872dd146102ee5780632f745c591461030a57806332cb6b0c1461033a57610227565b806301ffc9a71461022c57806306fdde031461025c578063081812fc1461027a578063095ea7b3146102aa575b600080fd5b61024660048036038101906102419190613327565b6106ba565b6040516102539190613601565b60405180910390f35b610264610804565b604051610271919061361c565b60405180910390f35b610294600480360381019061028f91906133ba565b610896565b6040516102a1919061359a565b60405180910390f35b6102c460048036038101906102bf9190613293565b610912565b005b6102ce610a1d565b005b6102d8610bbc565b6040516102e5919061373e565b60405180910390f35b6103086004803603810190610303919061318d565b610c11565b005b610324600480360381019061031f9190613293565b610c21565b604051610331919061373e565b60405180910390f35b610342610e28565b60405161034f919061373e565b60405180910390f35b610360610e2e565b005b61036a610ef9565b604051610377919061373e565b60405180910390f35b610388610eff565b005b6103a4600480360381019061039f919061318d565b610f85565b005b6103ae610fa5565b6040516103bb919061373e565b60405180910390f35b6103de60048036038101906103d991906133ba565b610fab565b6040516103eb919061373e565b60405180910390f35b61040e600480360381019061040991906132cf565b61111c565b005b61041861126a565b6040516104259190613601565b60405180910390f35b610448600480360381019061044391906133ba565b611281565b604051610455919061359a565b60405180910390f35b61047860048036038101906104739190613128565b611297565b6040516104859190613601565b60405180910390f35b6104a860048036038101906104a391906133ba565b61133f565b005b6104c460048036038101906104bf9190613128565b6113c8565b6040516104d1919061373e565b60405180910390f35b6104e2611498565b005b6104ec611520565b6040516104f9919061373e565b60405180910390f35b61050a611526565b005b6105146115ac565b604051610521919061359a565b60405180910390f35b6105326115d6565b60405161053f919061361c565b60405180910390f35b610562600480360381019061055d9190613379565b611668565b005b61057e60048036038101906105799190613257565b6116fe565b005b61059a600480360381019061059591906131dc565b611876565b005b6105b660048036038101906105b19190613128565b6118c9565b6040516105c39190613601565b60405180910390f35b6105e660048036038101906105e191906133ba565b611932565b6040516105f3919061361c565b60405180910390f35b610616600480360381019061061191906133ba565b611943565b005b6106206119c9565b60405161062d919061361c565b60405180910390f35b610650600480360381019061064b9190613151565b611a57565b60405161065d9190613601565b60405180910390f35b610680600480360381019061067b9190613128565b611aeb565b005b61069c600480360381019061069791906133ba565b611be3565b005b6106b860048036038101906106b391906133ba565b611c69565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ed57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fd57506107fc82611cef565b5b9050919050565b606060018054610813906138db565b80601f016020809104026020016040519081016040528092919081815260200182805461083f906138db565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a182611d59565b6108d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091d82611281565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611dc1565b73ffffffffffffffffffffffffffffffffffffffff16141580156109d657506109d4816109cf611dc1565b611a57565b155b15610a0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a18838383611dc9565b505050565b600c5442101580610a305750600b544210155b80610a3d5750600a544210155b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a739061367e565b60405180910390fd5b600954610a87610bbc565b10610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906136fe565b60405180910390fd5b610ad0336118c9565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b06906136be565b60405180910390fd5b610b1833611297565b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e9061369e565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610bba336001611e7b565b565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c1c838383611e99565b505050565b6000610c2c836113c8565b8210610c64576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e1c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7b5750610e0f565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0d5786841415610e04578195505050505050610e22565b83806001019450505b505b8080600101915050610c9e565b50600080fd5b92915050565b60095481565b610e36611dc1565b73ffffffffffffffffffffffffffffffffffffffff16610e546115ac565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061371e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ef5573d6000803e3d6000fd5b5050565b600b5481565b610f07611dc1565b73ffffffffffffffffffffffffffffffffffffffff16610f256115ac565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f729061371e565b60405180910390fd5b610f836123b6565b565b610fa083838360405180602001604052806000815250611876565b505050565b600c5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156110e4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110d657858314156110cd5781945050505050611117565b82806001019350505b508080600101915050610fe3565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611124611dc1565b73ffffffffffffffffffffffffffffffffffffffff166111426115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061371e565b60405180910390fd5b60005b838390508110156112645760008484838181106111e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111f69190613128565b905082600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555050808061125c9061393e565b91505061119b565b50505050565b6000600760009054906101000a900460ff16905090565b600061128c82612458565b600001519050919050565b600080429050600c5481106112b057600191505061133a565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600b54821061131a5760008160ff16119250505061133a565b600a5482106113335760018160ff16119250505061133a565b6000925050505b919050565b611347611dc1565b73ffffffffffffffffffffffffffffffffffffffff166113656115ac565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061371e565b60405180910390fd5b6113c53382611e7b565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611430576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114a0611dc1565b73ffffffffffffffffffffffffffffffffffffffff166114be6115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061371e565b60405180910390fd5b61151e6000612700565b565b600a5481565b61152e611dc1565b73ffffffffffffffffffffffffffffffffffffffff1661154c6115ac565b73ffffffffffffffffffffffffffffffffffffffff16146115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061371e565b60405180910390fd5b6115aa6127c6565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115e5906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054611611906138db565b801561165e5780601f106116335761010080835404028352916020019161165e565b820191906000526020600020905b81548152906001019060200180831161164157829003601f168201915b5050505050905090565b611670611dc1565b73ffffffffffffffffffffffffffffffffffffffff1661168e6115ac565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061371e565b60405180910390fd5b80600890805190602001906116fa929190612eaa565b5050565b611706611dc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611778611dc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611825611dc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186a9190613601565b60405180910390a35050565b611881848484611e99565b61188d84848484612869565b6118c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600080429050600c548110158061192a5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b915050919050565b606061193c6129f7565b9050919050565b61194b611dc1565b73ffffffffffffffffffffffffffffffffffffffff166119696115ac565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b69061371e565b60405180910390fd5b80600a8190555050565b600880546119d6906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054611a02906138db565b8015611a4f5780601f10611a2457610100808354040283529160200191611a4f565b820191906000526020600020905b815481529060010190602001808311611a3257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af3611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611b116115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e9061371e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce9061365e565b60405180910390fd5b611be081612700565b50565b611beb611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611c096115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c569061371e565b60405180910390fd5b80600b8190555050565b611c71611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611c8f6115ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc9061371e565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611dba575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611e95828260405180602001604052806000815250612a89565b5050565b6000611ea482612458565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ecb611dc1565b73ffffffffffffffffffffffffffffffffffffffff161480611efe5750611efd8260000151611ef8611dc1565b611a57565b5b80611f435750611f0c611dc1565b73ffffffffffffffffffffffffffffffffffffffff16611f2b84610896565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fe5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561204c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120598585856001612a9b565b6120696000848460000151611dc9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123465760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156123455782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123af8585856001612af5565b5050505050565b6123be61126a565b6123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f49061363e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612441611dc1565b60405161244e919061359a565b60405180910390a1565b612460612f30565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156126c9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126c757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ab5780925050506126fb565b5b6001156126c657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c15780925050506126fb565b6125ac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ce61126a565b1561280e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612805906136de565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612852611dc1565b60405161285f919061359a565b60405180910390a1565b600061288a8473ffffffffffffffffffffffffffffffffffffffff16612afb565b156129ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b3611dc1565b8786866040518563ffffffff1660e01b81526004016128d594939291906135b5565b602060405180830381600087803b1580156128ef57600080fd5b505af192505050801561292057506040513d601f19601f8201168201806040525081019061291d9190613350565b60015b61299a573d8060008114612950576040519150601f19603f3d011682016040523d82523d6000602084013e612955565b606091505b50600081511415612992576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ef565b600190505b949350505050565b606060088054612a06906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054612a32906138db565b8015612a7f5780601f10612a5457610100808354040283529160200191612a7f565b820191906000526020600020905b815481529060010190602001808311612a6257829003601f168201915b5050505050905090565b612a968383836001612b0e565b505050565b612aa361126a565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906136de565b60405180910390fd5b612aef84848484612ea4565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ba9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612be4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf16000868387612a9b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e5657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e0a5750612e086000888488612869565b155b15612e41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d8f565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612e9d6000868387612af5565b5050505050565b50505050565b828054612eb6906138db565b90600052602060002090601f016020900481019282612ed85760008555612f1f565b82601f10612ef157805160ff1916838001178555612f1f565b82800160010185558215612f1f579182015b82811115612f1e578251825591602001919060010190612f03565b5b509050612f2c9190612f73565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8c576000816000905550600101612f74565b5090565b6000612fa3612f9e8461377e565b613759565b905082815260208101848484011115612fbb57600080fd5b612fc6848285613899565b509392505050565b6000612fe1612fdc846137af565b613759565b905082815260208101848484011115612ff957600080fd5b613004848285613899565b509392505050565b60008135905061301b81613b93565b92915050565b60008083601f84011261303357600080fd5b8235905067ffffffffffffffff81111561304c57600080fd5b60208301915083602082028301111561306457600080fd5b9250929050565b60008135905061307a81613baa565b92915050565b60008135905061308f81613bc1565b92915050565b6000815190506130a481613bc1565b92915050565b600082601f8301126130bb57600080fd5b81356130cb848260208601612f90565b91505092915050565b600082601f8301126130e557600080fd5b81356130f5848260208601612fce565b91505092915050565b60008135905061310d81613bd8565b92915050565b60008135905061312281613bef565b92915050565b60006020828403121561313a57600080fd5b60006131488482850161300c565b91505092915050565b6000806040838503121561316457600080fd5b60006131728582860161300c565b92505060206131838582860161300c565b9150509250929050565b6000806000606084860312156131a257600080fd5b60006131b08682870161300c565b93505060206131c18682870161300c565b92505060406131d2868287016130fe565b9150509250925092565b600080600080608085870312156131f257600080fd5b60006132008782880161300c565b94505060206132118782880161300c565b9350506040613222878288016130fe565b925050606085013567ffffffffffffffff81111561323f57600080fd5b61324b878288016130aa565b91505092959194509250565b6000806040838503121561326a57600080fd5b60006132788582860161300c565b92505060206132898582860161306b565b9150509250929050565b600080604083850312156132a657600080fd5b60006132b48582860161300c565b92505060206132c5858286016130fe565b9150509250929050565b6000806000604084860312156132e457600080fd5b600084013567ffffffffffffffff8111156132fe57600080fd5b61330a86828701613021565b9350935050602061331d86828701613113565b9150509250925092565b60006020828403121561333957600080fd5b600061334784828501613080565b91505092915050565b60006020828403121561336257600080fd5b600061337084828501613095565b91505092915050565b60006020828403121561338b57600080fd5b600082013567ffffffffffffffff8111156133a557600080fd5b6133b1848285016130d4565b91505092915050565b6000602082840312156133cc57600080fd5b60006133da848285016130fe565b91505092915050565b6133ec81613818565b82525050565b6133fb8161382a565b82525050565b600061340c826137e0565b61341681856137f6565b93506134268185602086016138a8565b61342f81613a14565b840191505092915050565b6000613445826137eb565b61344f8185613807565b935061345f8185602086016138a8565b61346881613a14565b840191505092915050565b6000613480601483613807565b915061348b82613a25565b602082019050919050565b60006134a3602683613807565b91506134ae82613a4e565b604082019050919050565b60006134c6601383613807565b91506134d182613a9d565b602082019050919050565b60006134e9601783613807565b91506134f482613ac6565b602082019050919050565b600061350c601883613807565b915061351782613aef565b602082019050919050565b600061352f601083613807565b915061353a82613b18565b602082019050919050565b6000613552600983613807565b915061355d82613b41565b602082019050919050565b6000613575602083613807565b915061358082613b6a565b602082019050919050565b61359481613882565b82525050565b60006020820190506135af60008301846133e3565b92915050565b60006080820190506135ca60008301876133e3565b6135d760208301866133e3565b6135e4604083018561358b565b81810360608301526135f68184613401565b905095945050505050565b600060208201905061361660008301846133f2565b92915050565b60006020820190508181036000830152613636818461343a565b905092915050565b6000602082019050818103600083015261365781613473565b9050919050565b6000602082019050818103600083015261367781613496565b9050919050565b60006020820190508181036000830152613697816134b9565b9050919050565b600060208201905081810360008301526136b7816134dc565b9050919050565b600060208201905081810360008301526136d7816134ff565b9050919050565b600060208201905081810360008301526136f781613522565b9050919050565b6000602082019050818103600083015261371781613545565b9050919050565b6000602082019050818103600083015261373781613568565b9050919050565b6000602082019050613753600083018461358b565b92915050565b6000613763613774565b905061376f828261390d565b919050565b6000604051905090565b600067ffffffffffffffff821115613799576137986139e5565b5b6137a282613a14565b9050602081019050919050565b600067ffffffffffffffff8211156137ca576137c96139e5565b5b6137d382613a14565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061382382613862565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156138c65780820151818401526020810190506138ab565b838111156138d5576000848401525b50505050565b600060028204905060018216806138f357607f821691505b60208210811415613907576139066139b6565b5b50919050565b61391682613a14565b810181811067ffffffffffffffff82111715613935576139346139e5565b5b80604052505050565b600061394982613882565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561397c5761397b613987565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206e6f74207374617274656400000000000000000000000000600082015250565b7f41646472657373206973206e6f7420656c696769626c65000000000000000000600082015250565b7f416464726573732063616e6e6f74206d696e74206d6f72650000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f534f4c44204f5554210000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613b9c81613818565b8114613ba757600080fd5b50565b613bb38161382a565b8114613bbe57600080fd5b50565b613bca81613836565b8114613bd557600080fd5b50565b613be181613882565b8114613bec57600080fd5b50565b613bf88161388c565b8114613c0357600080fd5b5056fea2646970667358221220357262fc734c4e5596d937e19200782f2960570a5b51810f49dff387e860582164736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000623de70000000000000000000000000000000000000000000000000000000000623f38800000000000000000000000000000000000000000000000000000000062408a000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575453487272624852446d714e7278634c317651416d554647637867556651567536434a4b4d6f75383333720000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmWTSHrrbHRDmqNrxcL1vQAmUFGcxgUfQVu6CJKMou833r
Arg [1] : maxSupply (uint256): 1000
Arg [2] : paradiseMintStartTimestamp (uint256): 1648224000
Arg [3] : ogMintStartTimestamp (uint256): 1648310400
Arg [4] : publicMintStartTimestamp (uint256): 1648396800

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 00000000000000000000000000000000000000000000000000000000623de700
Arg [3] : 00000000000000000000000000000000000000000000000000000000623f3880
Arg [4] : 0000000000000000000000000000000000000000000000000000000062408a00
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d575453487272624852446d714e7278634c317651416d55
Arg [7] : 4647637867556651567536434a4b4d6f75383333720000000000000000000000


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.