ETH Price: $2,688.64 (-2.32%)

Token

John Doe Collective (JDC)
 

Overview

Max Total Supply

116 JDC

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hamedasoodeh.eth
Balance
1 JDC
0x2e6a5af973397b6351e6a00bc012f63c7888ac4c
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:
JohnDoeCollective

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

import "./ERC721A.sol";
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract JohnDoeCollective is ERC721A, ReentrancyGuard {
    using Strings for uint256;
	
	uint256 public MAX_SUPPLY = 250;
	uint256 public PRICE = 2 ether;
	uint256 public constant lnp = .01 ether;
	uint256 public MAX_VOLUME_MINTABLE  = 100;
	uint256 public MAX_WALLET = 10;

    string private _baseURIextended;

	mapping(address => uint8) private _claimList;
	
	uint8 private _state = 4;
	
	bytes32 public merkleRoot = 0x0000000000000000000000000000000000000000000000000000000000000000;

	address private owner0 = 0xf5F617903A297b8303632fbEc63c79591d34BFd3;
	address private owner1 = 0x91587758Ab2Ae704887Be04b2706C0aFA5583dC3;
	
	modifier isRealUser() {
		require(msg.sender == tx.origin, "Sorry, you do not have the permission todo that.");
		_;
	}
	modifier isOwner() {
        require(msg.sender == owner0 || msg.sender == owner1, "You are not an owner");
        _;
    }
	
    constructor() ERC721A('John Doe Collective', 'JDC', 3) {}
	
	function changeSupply(uint256 sup, uint256 wal, uint256 mint) external isOwner() {
		MAX_SUPPLY = sup;
		MAX_WALLET = wal;
		MAX_VOLUME_MINTABLE = mint;
	}

    function setBaseURI(string memory baseURI_) external isOwner() {
        _baseURIextended = baseURI_;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }
	
	function setPrice(uint256 price) external isOwner() {
		PRICE = price;
	}
	
	function getTokenByOwner(address _owner) public view returns (uint256[] memory) {
		uint256 tokenCount = balanceOf(_owner);
		uint256[] memory tokenIds = new uint256[](tokenCount);
		for (uint256 i; i < tokenCount; i++) {
			tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
		}
		return tokenIds;
	}
	
	function setProof(bytes32 newRoot) public isOwner() {
		merkleRoot = newRoot;
	}

	function setState(uint8 newState) public isOwner() {
		_state = newState;
	}
	
	function withdraw() public isOwner() nonReentrant {
		uint256 currentBalance = address(this).balance;
		require(payable(owner0).send(currentBalance), "Wrong.");
	}
	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
		if(tokenId < MAX_SUPPLY) {
			return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
		} else {
			return "ERC721Metadata: URI query for nonexistent token - Invalid token ID";
		}
	}
	
	function mintPresale(uint8 TOKENS_TO_MINT, bytes32[] calldata _merkleProof) public payable isRealUser nonReentrant {
		require(_state == 1, "Sorry, pre-sales is not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(_claimList[msg.sender] <= 1, "Address has already claimed");
		
		bytes32 proof = keccak256(abi.encodePacked(msg.sender));
		require(MerkleProof.verify(_merkleProof, merkleRoot, proof), 'Invalid proof.');
		
		_claimList[msg.sender] += TOKENS_TO_MINT;
		_mint(TOKENS_TO_MINT, msg.sender);
	}
	
	function mintPaid(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant {
		require(_state == 3, "Sorry, public-sales are not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(PRICE*TOKENS_TO_MINT <= msg.value, "Sorry, you did not sent the required amount of ETH");
		require(_claimList[msg.sender] <= MAX_WALLET, "Address has already claimed");
		
		_claimList[msg.sender] += TOKENS_TO_MINT;
		_mint(TOKENS_TO_MINT, msg.sender);
	}
	
	function mintLastProofOfWork(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant {
		require(_state == 4, "Sorry, public-sales are not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(lnp*TOKENS_TO_MINT <= msg.value, "Sorry, you did not sent the required amount of ETH");
		require(_claimList[msg.sender] <= MAX_WALLET, "Address has already claimed");
		
		_claimList[msg.sender] += TOKENS_TO_MINT;
		_mint(TOKENS_TO_MINT, msg.sender);
	}
	
	function mintPublic(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant {
		require(_state == 2, "Sorry, public-sales are not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(_claimList[msg.sender] <= MAX_WALLET, "Address has already claimed");
		
		_claimList[msg.sender] += TOKENS_TO_MINT;
		_mint(TOKENS_TO_MINT, msg.sender);
	}
    
	function reserveToken(uint256 num) public isOwner() {
		require((totalSupply() + num) <= MAX_SUPPLY, "Exceeding max supply");
		_mint(num, msg.sender);
	}
	
	function airdropToken(uint256 num, address recipient) public isOwner() {
		require((totalSupply() + num) <= MAX_SUPPLY, "Exceeding max supply");
		_mint(num, recipient);
	}
	
	function airdropTokenToMultipleRecipient(address[] memory recipients) external isOwner() {
		require((totalSupply() + recipients.length) <= MAX_SUPPLY, "Exceeding max supply");
		for (uint256 i = 0; i < recipients.length; i++) {
			airdropToken(1, recipients[i]);
		}
	}
	
	function _mint(uint256 num, address recipient) internal {
		_safeMint(recipient, num);
	}
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to address data
    mapping(address => AddressData) 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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(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) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VOLUME_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdropToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropTokenToMultipleRecipient","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":"uint256","name":"sup","type":"uint256"},{"internalType":"uint256","name":"wal","type":"uint256"},{"internalType":"uint256","name":"mint","type":"uint256"}],"name":"changeSupply","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"}],"name":"getTokenByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lnp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintLastProofOfWork","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newState","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000805560fa600855671bc16d674ec800006009556064600a55600a600b556004600e60006101000a81548160ff021916908360ff1602179055506000801b600f5573f5f617903a297b8303632fbec63c79591d34bfd3601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507391587758ab2ae704887be04b2706c0afa5583dc3601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000fd57600080fd5b506040518060400160405280601381526020017f4a6f686e20446f6520436f6c6c656374697665000000000000000000000000008152506040518060400160405280600381526020017f4a44430000000000000000000000000000000000000000000000000000000000815250600360008111620001b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a99062000334565b60405180910390fd5b8260019080519060200190620001ca929190620001fd565b508160029080519060200190620001e3929190620001fd565b5080608081815250505050506001600781905550620003bb565b8280546200020b9062000385565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200031c602783620002ad565b91506200032982620002be565b604082019050919050565b600060208201905081810360008301526200034f816200030d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039e57607f821691505b60208210811415620003b557620003b462000356565b5b50919050565b608051615f23620003e5600039600081816132ec0152818161331501526139ed0152615f236000f3fe60806040526004361061020f5760003560e01c80635db4d21f11610118578063a6af4d6d116100a0578063df7787a41161006f578063df7787a414610780578063e0e31639146107ab578063e985e9c5146107c7578063ebe90e4314610804578063ec1437b91461082d5761020f565b8063a6af4d6d146106d5578063b88d4fde146106f1578063badcd0271461071a578063c87b56dd146107435761020f565b80638c0f33de116100e75780638c0f33de146106025780638d859f3e1461062d57806391b7f5ed1461065857806395d89b4114610681578063a22cb465146106ac5761020f565b80635db4d21f146105505780636352211e1461056c57806367dce1ed146105a957806370a08231146105c55761020f565b80632eb4a7ab1161019b57806342842e0e1161016a57806342842e0e1461046f5780634f6ccce71461049857806355f804b3146104d557806356de96db146104fe57806359d8a426146105275761020f565b80632eb4a7ab146103c55780632f745c59146103f057806332cb6b0c1461042d5780633ccfd60b146104585761020f565b806310c0e158116101e257806310c0e158146102e257806314c274a41461030b57806318160ddd1461033457806323b872dd1461035f5780632bf79c94146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613f54565b610858565b6040516102489190613f9c565b60405180910390f35b34801561025d57600080fd5b506102666109a2565b6040516102739190614050565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906140a8565b610a34565b6040516102b09190614116565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061415d565b610ab9565b005b3480156102ee57600080fd5b50610309600480360381019061030491906140a8565b610bd2565b005b34801561031757600080fd5b50610332600480360381019061032d91906142e5565b610d1e565b005b34801561034057600080fd5b50610349610ea6565b604051610356919061433d565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190614358565b610eaf565b005b34801561039457600080fd5b506103af60048036038101906103aa91906143ab565b610ebf565b6040516103bc9190614496565b60405180910390f35b3480156103d157600080fd5b506103da610f6d565b6040516103e791906144d1565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061415d565b610f73565b604051610424919061433d565b60405180910390f35b34801561043957600080fd5b50610442611171565b60405161044f919061433d565b60405180910390f35b34801561046457600080fd5b5061046d611177565b005b34801561047b57600080fd5b5061049660048036038101906104919190614358565b611353565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906140a8565b611373565b6040516104cc919061433d565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906145a1565b6113c6565b005b34801561050a57600080fd5b5061052560048036038101906105209190614623565b6114c8565b005b34801561053357600080fd5b5061054e60048036038101906105499190614650565b6115ce565b005b61056a60048036038101906105659190614623565b61171b565b005b34801561057857600080fd5b50610593600480360381019061058e91906140a8565b611a53565b6040516105a09190614116565b60405180910390f35b6105c360048036038101906105be9190614623565b611a69565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906143ab565b611d49565b6040516105f9919061433d565b60405180910390f35b34801561060e57600080fd5b50610617611e32565b604051610624919061433d565b60405180910390f35b34801561063957600080fd5b50610642611e38565b60405161064f919061433d565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906140a8565b611e3e565b005b34801561068d57600080fd5b50610696611f30565b6040516106a39190614050565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906146bc565b611fc2565b005b6106ef60048036038101906106ea9190614623565b612143565b005b3480156106fd57600080fd5b506107186004803603810190610713919061479d565b612476565b005b34801561072657600080fd5b50610741600480360381019061073c9190614820565b6124d2565b005b34801561074f57600080fd5b5061076a600480360381019061076591906140a8565b6125d4565b6040516107779190614050565b60405180910390f35b34801561078c57600080fd5b50610795612681565b6040516107a2919061433d565b60405180910390f35b6107c560048036038101906107c091906148ce565b612687565b005b3480156107d357600080fd5b506107ee60048036038101906107e9919061492e565b612a21565b6040516107fb9190613f9c565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061499a565b612ab5565b005b34801561083957600080fd5b50610842612ba7565b60405161084f919061433d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82612bb2565b5b9050919050565b6060600180546109b1906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906149f6565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612c1c565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590614a9a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac482611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90614b2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b54612c29565b73ffffffffffffffffffffffffffffffffffffffff161480610b835750610b8281610b7d612c29565b612a21565b5b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990614bbe565b60405180910390fd5b610bcd838383612c31565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c7b5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190614c2a565b60405180910390fd5b60085481610cc6610ea6565b610cd09190614c79565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614d1b565b60405180910390fd5b610d1b8133612ce3565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc75750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614c2a565b60405180910390fd5b6008548151610e13610ea6565b610e1d9190614c79565b1115610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614d1b565b60405180910390fd5b60005b8151811015610ea257610e8f6001838381518110610e8257610e81614d3b565b5b60200260200101516115ce565b8080610e9a90614d6a565b915050610e61565b5050565b60008054905090565b610eba838383612cf1565b505050565b60606000610ecc83611d49565b905060008167ffffffffffffffff811115610eea57610ee96141a2565b5b604051908082528060200260200182016040528015610f185781602001602082028036833780820191505090505b50905060005b82811015610f6257610f308582610f73565b828281518110610f4357610f42614d3b565b5b6020026020010181815250508080610f5a90614d6a565b915050610f1e565b508092505050919050565b600f5481565b6000610f7e83611d49565b8210610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690614e25565b60405180910390fd5b6000610fc9610ea6565b905060008060005b8381101561112f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b578684141561110c57819550505050505061116b565b838061111790614d6a565b9450505b50808061112790614d6a565b915050610fd1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290614eb7565b60405180910390fd5b92915050565b60085481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112205750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614c2a565b60405180910390fd5b600260075414156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614f23565b60405180910390fd5b60026007819055506000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614f8f565b60405180910390fd5b506001600781905550565b61136e83838360405180602001604052806000815250612476565b505050565b600061137d610ea6565b82106113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590615021565b60405180910390fd5b819050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061146f5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614c2a565b60405180910390fd5b80600c90805190602001906114c4929190613e0b565b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115715750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614c2a565b60405180910390fd5b80600e60006101000a81548160ff021916908360ff16021790555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116775750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614c2a565b60405180910390fd5b600854826116c2610ea6565b6116cc9190614c79565b111561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614d1b565b60405180910390fd5b6117178282612ce3565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611780906150b3565b60405180910390fd5b600260075414156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614f23565b60405180910390fd5b60026007819055506004600e60009054906101000a900460ff1660ff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390615145565b60405180910390fd5b600a548160ff1661183b610ea6565b6118459190614c79565b1115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90614d1b565b60405180910390fd5b60018160ff161115801561189d575060008160ff16115b6118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906151d7565b60405180910390fd5b348160ff16662386f26fc100006118f391906151f7565b1115611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b906152c3565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf9061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611a23919061534f565b92506101000a81548160ff021916908360ff160217905550611a488160ff1633612ce3565b600160078190555050565b6000611a5e82613298565b600001519050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906150b3565b60405180910390fd5b60026007541415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614f23565b60405180910390fd5b60026007819055506002600e60009054906101000a900460ff1660ff1614611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190615145565b60405180910390fd5b600a548160ff16611b89610ea6565b611b939190614c79565b1115611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614d1b565b60405180910390fd5b60018160ff1611158015611beb575060008160ff16115b611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906151d7565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb59061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d19919061534f565b92506101000a81548160ff021916908360ff160217905550611d3e8160ff1633612ce3565b600160078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db1906153f8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600a5481565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ee75750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90614c2a565b60405180910390fd5b8060098190555050565b606060028054611f3f906149f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6b906149f6565b8015611fb85780601f10611f8d57610100808354040283529160200191611fb8565b820191906000526020600020905b815481529060010190602001808311611f9b57829003601f168201915b5050505050905090565b611fca612c29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f90615464565b60405180910390fd5b8060066000612045612c29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f2612c29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121379190613f9c565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906150b3565b60405180910390fd5b600260075414156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614f23565b60405180910390fd5b60026007819055506003600e60009054906101000a900460ff1660ff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90615145565b60405180910390fd5b600a548160ff16612263610ea6565b61226d9190614c79565b11156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614d1b565b60405180910390fd5b60018160ff16111580156122c5575060008160ff16115b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906151d7565b60405180910390fd5b348160ff1660095461231691906151f7565b1115612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906152c3565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612446919061534f565b92506101000a81548160ff021916908360ff16021790555061246b8160ff1633612ce3565b600160078190555050565b612481848484612cf1565b61248d8484848461349b565b6124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906154f6565b60405180910390fd5b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061257b5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614c2a565b60405180910390fd5b8260088190555081600b8190555080600a81905550505050565b60606125df82612c1c565b61261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590615588565b60405180910390fd5b60085482101561266057612630613632565b612639836136c4565b60405160200161264a929190615630565b604051602081830303815290604052905061267c565b604051806080016040528060428152602001615eac6042913990505b919050565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906150b3565b60405180910390fd5b6002600754141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614f23565b60405180910390fd5b60026007819055506001600e60009054906101000a900460ff1660ff1614612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f906156d1565b60405180910390fd5b600a548360ff166127a7610ea6565b6127b19190614c79565b11156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990614d1b565b60405180910390fd5b60018360ff1611158015612809575060008360ff16115b612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f906151d7565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d29061532f565b60405180910390fd5b6000336040516020016128ee9190615739565b604051602081830303815290604052805190602001209050612954838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613825565b612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906157a0565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166129ee919061534f565b92506101000a81548160ff021916908360ff160217905550612a138460ff1633612ce3565b506001600781905550505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612b5e5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614c2a565b60405180910390fd5b80600f8190555050565b662386f26fc1000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612ced818361383c565b5050565b6000612cfc82613298565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612d23612c29565b73ffffffffffffffffffffffffffffffffffffffff161480612d7f5750612d48612c29565b73ffffffffffffffffffffffffffffffffffffffff16612d6784610a34565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d9b5750612d9a8260000151612d95612c29565b612a21565b5b905080612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490615832565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e46906158c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb690615956565b60405180910390fd5b612ecc858585600161385a565b612edc6000848460000151612c31565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130e29190614c79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156132285761315881612c1c565b15613227576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132908686866001613860565b505050505050565b6132a0613e91565b6132a982612c1c565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df906159e8565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061334c5760017f00000000000000000000000000000000000000000000000000000000000000008461333f9190615a08565b6133499190614c79565b90505b60008390505b81811061345a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344657809350505050613496565b50808061345290615a3c565b915050613352565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348d90615ad8565b60405180910390fd5b919050565b60006134bc8473ffffffffffffffffffffffffffffffffffffffff16613866565b15613625578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134e5612c29565b8786866040518563ffffffff1660e01b81526004016135079493929190615b4d565b602060405180830381600087803b15801561352157600080fd5b505af192505050801561355257506040513d601f19601f8201168201806040525081019061354f9190615bae565b60015b6135d5573d8060008114613582576040519150601f19603f3d011682016040523d82523d6000602084013e613587565b606091505b506000815114156135cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c4906154f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061362a565b600190505b949350505050565b6060600c8054613641906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461366d906149f6565b80156136ba5780601f1061368f576101008083540402835291602001916136ba565b820191906000526020600020905b81548152906001019060200180831161369d57829003601f168201915b5050505050905090565b6060600082141561370c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613820565b600082905060005b6000821461373e57808061372790614d6a565b915050600a826137379190615c0a565b9150613714565b60008167ffffffffffffffff81111561375a576137596141a2565b5b6040519080825280601f01601f19166020018201604052801561378c5781602001600182028036833780820191505090505b5090505b60008514613819576001826137a59190615a08565b9150600a856137b49190615c3b565b60306137c09190614c79565b60f81b8183815181106137d6576137d5614d3b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138129190615c0a565b9450613790565b8093505050505b919050565b6000826138328584613879565b1490509392505050565b61385682826040518060200160405280600081525061392c565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b84518110156139215760008582815181106138a05761389f614d3b565b5b602002602001015190508083116138e15782816040516020016138c4929190615c8d565b60405160208183030381529060405280519060200120925061390d565b80836040516020016138f4929190615c8d565b6040516020818303038152906040528051906020012092505b50808061391990614d6a565b915050613882565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399990615d2b565b60405180910390fd5b6139ab81612c1c565b156139eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e290615d97565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4590615e29565b60405180910390fd5b613a5b600085838661385a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613b589190615e65565b6fffffffffffffffffffffffffffffffff168152602001858360200151613b7f9190615e65565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613dee57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d8e600088848861349b565b613dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc4906154f6565b60405180910390fd5b8180613dd890614d6a565b9250508080613de690614d6a565b915050613d1d565b5080600081905550613e036000878588613860565b505050505050565b828054613e17906149f6565b90600052602060002090601f016020900481019282613e395760008555613e80565b82601f10613e5257805160ff1916838001178555613e80565b82800160010185558215613e80579182015b82811115613e7f578251825591602001919060010190613e64565b5b509050613e8d9190613ecb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ee4576000816000905550600101613ecc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f3181613efc565b8114613f3c57600080fd5b50565b600081359050613f4e81613f28565b92915050565b600060208284031215613f6a57613f69613ef2565b5b6000613f7884828501613f3f565b91505092915050565b60008115159050919050565b613f9681613f81565b82525050565b6000602082019050613fb16000830184613f8d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ff1578082015181840152602081019050613fd6565b83811115614000576000848401525b50505050565b6000601f19601f8301169050919050565b600061402282613fb7565b61402c8185613fc2565b935061403c818560208601613fd3565b61404581614006565b840191505092915050565b6000602082019050818103600083015261406a8184614017565b905092915050565b6000819050919050565b61408581614072565b811461409057600080fd5b50565b6000813590506140a28161407c565b92915050565b6000602082840312156140be576140bd613ef2565b5b60006140cc84828501614093565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614100826140d5565b9050919050565b614110816140f5565b82525050565b600060208201905061412b6000830184614107565b92915050565b61413a816140f5565b811461414557600080fd5b50565b60008135905061415781614131565b92915050565b6000806040838503121561417457614173613ef2565b5b600061418285828601614148565b925050602061419385828601614093565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141da82614006565b810181811067ffffffffffffffff821117156141f9576141f86141a2565b5b80604052505050565b600061420c613ee8565b905061421882826141d1565b919050565b600067ffffffffffffffff821115614238576142376141a2565b5b602082029050602081019050919050565b600080fd5b600061426161425c8461421d565b614202565b9050808382526020820190506020840283018581111561428457614283614249565b5b835b818110156142ad57806142998882614148565b845260208401935050602081019050614286565b5050509392505050565b600082601f8301126142cc576142cb61419d565b5b81356142dc84826020860161424e565b91505092915050565b6000602082840312156142fb576142fa613ef2565b5b600082013567ffffffffffffffff81111561431957614318613ef7565b5b614325848285016142b7565b91505092915050565b61433781614072565b82525050565b6000602082019050614352600083018461432e565b92915050565b60008060006060848603121561437157614370613ef2565b5b600061437f86828701614148565b935050602061439086828701614148565b92505060406143a186828701614093565b9150509250925092565b6000602082840312156143c1576143c0613ef2565b5b60006143cf84828501614148565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61440d81614072565b82525050565b600061441f8383614404565b60208301905092915050565b6000602082019050919050565b6000614443826143d8565b61444d81856143e3565b9350614458836143f4565b8060005b838110156144895781516144708882614413565b975061447b8361442b565b92505060018101905061445c565b5085935050505092915050565b600060208201905081810360008301526144b08184614438565b905092915050565b6000819050919050565b6144cb816144b8565b82525050565b60006020820190506144e660008301846144c2565b92915050565b600080fd5b600067ffffffffffffffff82111561450c5761450b6141a2565b5b61451582614006565b9050602081019050919050565b82818337600083830152505050565b600061454461453f846144f1565b614202565b9050828152602081018484840111156145605761455f6144ec565b5b61456b848285614522565b509392505050565b600082601f8301126145885761458761419d565b5b8135614598848260208601614531565b91505092915050565b6000602082840312156145b7576145b6613ef2565b5b600082013567ffffffffffffffff8111156145d5576145d4613ef7565b5b6145e184828501614573565b91505092915050565b600060ff82169050919050565b614600816145ea565b811461460b57600080fd5b50565b60008135905061461d816145f7565b92915050565b60006020828403121561463957614638613ef2565b5b60006146478482850161460e565b91505092915050565b6000806040838503121561466757614666613ef2565b5b600061467585828601614093565b925050602061468685828601614148565b9150509250929050565b61469981613f81565b81146146a457600080fd5b50565b6000813590506146b681614690565b92915050565b600080604083850312156146d3576146d2613ef2565b5b60006146e185828601614148565b92505060206146f2858286016146a7565b9150509250929050565b600067ffffffffffffffff821115614717576147166141a2565b5b61472082614006565b9050602081019050919050565b600061474061473b846146fc565b614202565b90508281526020810184848401111561475c5761475b6144ec565b5b614767848285614522565b509392505050565b600082601f8301126147845761478361419d565b5b813561479484826020860161472d565b91505092915050565b600080600080608085870312156147b7576147b6613ef2565b5b60006147c587828801614148565b94505060206147d687828801614148565b93505060406147e787828801614093565b925050606085013567ffffffffffffffff81111561480857614807613ef7565b5b6148148782880161476f565b91505092959194509250565b60008060006060848603121561483957614838613ef2565b5b600061484786828701614093565b935050602061485886828701614093565b925050604061486986828701614093565b9150509250925092565b600080fd5b60008083601f84011261488e5761488d61419d565b5b8235905067ffffffffffffffff8111156148ab576148aa614873565b5b6020830191508360208202830111156148c7576148c6614249565b5b9250929050565b6000806000604084860312156148e7576148e6613ef2565b5b60006148f58682870161460e565b935050602084013567ffffffffffffffff81111561491657614915613ef7565b5b61492286828701614878565b92509250509250925092565b6000806040838503121561494557614944613ef2565b5b600061495385828601614148565b925050602061496485828601614148565b9150509250929050565b614977816144b8565b811461498257600080fd5b50565b6000813590506149948161496e565b92915050565b6000602082840312156149b0576149af613ef2565b5b60006149be84828501614985565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a0e57607f821691505b60208210811415614a2257614a216149c7565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614a84602d83613fc2565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b16602283613fc2565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614ba8603983613fc2565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b6000614c14601483613fc2565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c8482614072565b9150614c8f83614072565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cc457614cc3614c4a565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614d05601483613fc2565b9150614d1082614ccf565b602082019050919050565b60006020820190508181036000830152614d3481614cf8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614d7582614072565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da857614da7614c4a565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0f602283613fc2565b9150614e1a82614db3565b604082019050919050565b60006020820190508181036000830152614e3e81614e02565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614ea1602e83613fc2565b9150614eac82614e45565b604082019050919050565b60006020820190508181036000830152614ed081614e94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614f0d601f83613fc2565b9150614f1882614ed7565b602082019050919050565b60006020820190508181036000830152614f3c81614f00565b9050919050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614f79600683613fc2565b9150614f8482614f43565b602082019050919050565b60006020820190508181036000830152614fa881614f6c565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061500b602383613fc2565b915061501682614faf565b604082019050919050565b6000602082019050818103600083015261503a81614ffe565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b600061509d603083613fc2565b91506150a882615041565b604082019050919050565b600060208201905081810360008301526150cc81615090565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b600061512f602783613fc2565b915061513a826150d3565b604082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b60006151c1603983613fc2565b91506151cc82615165565b604082019050919050565b600060208201905081810360008301526151f0816151b4565b9050919050565b600061520282614072565b915061520d83614072565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561524657615245614c4a565b5b828202905092915050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b60006152ad603283613fc2565b91506152b882615251565b604082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000615319601b83613fc2565b9150615324826152e3565b602082019050919050565b600060208201905081810360008301526153488161530c565b9050919050565b600061535a826145ea565b9150615365836145ea565b92508260ff0382111561537b5761537a614c4a565b5b828201905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006153e2602b83613fc2565b91506153ed82615386565b604082019050919050565b60006020820190508181036000830152615411816153d5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061544e601a83613fc2565b915061545982615418565b602082019050919050565b6000602082019050818103600083015261547d81615441565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006154e0603383613fc2565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615572602f83613fc2565b915061557d82615516565b604082019050919050565b600060208201905081810360008301526155a181615565565b9050919050565b600081905092915050565b60006155be82613fb7565b6155c881856155a8565b93506155d8818560208601613fd3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061561a6005836155a8565b9150615625826155e4565b600582019050919050565b600061563c82856155b3565b915061564882846155b3565b91506156538261560d565b91508190509392505050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006156bb602383613fc2565b91506156c68261565f565b604082019050919050565b600060208201905081810360008301526156ea816156ae565b9050919050565b60008160601b9050919050565b6000615709826156f1565b9050919050565b600061571b826156fe565b9050919050565b61573361572e826140f5565b615710565b82525050565b60006157458284615722565b60148201915081905092915050565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b600061578a600e83613fc2565b915061579582615754565b602082019050919050565b600060208201905081810360008301526157b98161577d565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061581c603283613fc2565b9150615827826157c0565b604082019050919050565b6000602082019050818103600083015261584b8161580f565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006158ae602683613fc2565b91506158b982615852565b604082019050919050565b600060208201905081810360008301526158dd816158a1565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615940602583613fc2565b915061594b826158e4565b604082019050919050565b6000602082019050818103600083015261596f81615933565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006159d2602a83613fc2565b91506159dd82615976565b604082019050919050565b60006020820190508181036000830152615a01816159c5565b9050919050565b6000615a1382614072565b9150615a1e83614072565b925082821015615a3157615a30614c4a565b5b828203905092915050565b6000615a4782614072565b91506000821415615a5b57615a5a614c4a565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615ac2602f83613fc2565b9150615acd82615a66565b604082019050919050565b60006020820190508181036000830152615af181615ab5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b1f82615af8565b615b298185615b03565b9350615b39818560208601613fd3565b615b4281614006565b840191505092915050565b6000608082019050615b626000830187614107565b615b6f6020830186614107565b615b7c604083018561432e565b8181036060830152615b8e8184615b14565b905095945050505050565b600081519050615ba881613f28565b92915050565b600060208284031215615bc457615bc3613ef2565b5b6000615bd284828501615b99565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c1582614072565b9150615c2083614072565b925082615c3057615c2f615bdb565b5b828204905092915050565b6000615c4682614072565b9150615c5183614072565b925082615c6157615c60615bdb565b5b828206905092915050565b6000819050919050565b615c87615c82826144b8565b615c6c565b82525050565b6000615c998285615c76565b602082019150615ca98284615c76565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d15602183613fc2565b9150615d2082615cb9565b604082019050919050565b60006020820190508181036000830152615d4481615d08565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615d81601d83613fc2565b9150615d8c82615d4b565b602082019050919050565b60006020820190508181036000830152615db081615d74565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e13602283613fc2565b9150615e1e82615db7565b604082019050919050565b60006020820190508181036000830152615e4281615e06565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615e7082615e49565b9150615e7b83615e49565b9250826fffffffffffffffffffffffffffffffff03821115615ea057615e9f614c4a565b5b82820190509291505056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220053c8d29755a0d84e4fa2e20cb9354ce861c29c58926b65e239ea70561779a3264736f6c63430008090033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635db4d21f11610118578063a6af4d6d116100a0578063df7787a41161006f578063df7787a414610780578063e0e31639146107ab578063e985e9c5146107c7578063ebe90e4314610804578063ec1437b91461082d5761020f565b8063a6af4d6d146106d5578063b88d4fde146106f1578063badcd0271461071a578063c87b56dd146107435761020f565b80638c0f33de116100e75780638c0f33de146106025780638d859f3e1461062d57806391b7f5ed1461065857806395d89b4114610681578063a22cb465146106ac5761020f565b80635db4d21f146105505780636352211e1461056c57806367dce1ed146105a957806370a08231146105c55761020f565b80632eb4a7ab1161019b57806342842e0e1161016a57806342842e0e1461046f5780634f6ccce71461049857806355f804b3146104d557806356de96db146104fe57806359d8a426146105275761020f565b80632eb4a7ab146103c55780632f745c59146103f057806332cb6b0c1461042d5780633ccfd60b146104585761020f565b806310c0e158116101e257806310c0e158146102e257806314c274a41461030b57806318160ddd1461033457806323b872dd1461035f5780632bf79c94146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613f54565b610858565b6040516102489190613f9c565b60405180910390f35b34801561025d57600080fd5b506102666109a2565b6040516102739190614050565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906140a8565b610a34565b6040516102b09190614116565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061415d565b610ab9565b005b3480156102ee57600080fd5b50610309600480360381019061030491906140a8565b610bd2565b005b34801561031757600080fd5b50610332600480360381019061032d91906142e5565b610d1e565b005b34801561034057600080fd5b50610349610ea6565b604051610356919061433d565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190614358565b610eaf565b005b34801561039457600080fd5b506103af60048036038101906103aa91906143ab565b610ebf565b6040516103bc9190614496565b60405180910390f35b3480156103d157600080fd5b506103da610f6d565b6040516103e791906144d1565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061415d565b610f73565b604051610424919061433d565b60405180910390f35b34801561043957600080fd5b50610442611171565b60405161044f919061433d565b60405180910390f35b34801561046457600080fd5b5061046d611177565b005b34801561047b57600080fd5b5061049660048036038101906104919190614358565b611353565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906140a8565b611373565b6040516104cc919061433d565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906145a1565b6113c6565b005b34801561050a57600080fd5b5061052560048036038101906105209190614623565b6114c8565b005b34801561053357600080fd5b5061054e60048036038101906105499190614650565b6115ce565b005b61056a60048036038101906105659190614623565b61171b565b005b34801561057857600080fd5b50610593600480360381019061058e91906140a8565b611a53565b6040516105a09190614116565b60405180910390f35b6105c360048036038101906105be9190614623565b611a69565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906143ab565b611d49565b6040516105f9919061433d565b60405180910390f35b34801561060e57600080fd5b50610617611e32565b604051610624919061433d565b60405180910390f35b34801561063957600080fd5b50610642611e38565b60405161064f919061433d565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906140a8565b611e3e565b005b34801561068d57600080fd5b50610696611f30565b6040516106a39190614050565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906146bc565b611fc2565b005b6106ef60048036038101906106ea9190614623565b612143565b005b3480156106fd57600080fd5b506107186004803603810190610713919061479d565b612476565b005b34801561072657600080fd5b50610741600480360381019061073c9190614820565b6124d2565b005b34801561074f57600080fd5b5061076a600480360381019061076591906140a8565b6125d4565b6040516107779190614050565b60405180910390f35b34801561078c57600080fd5b50610795612681565b6040516107a2919061433d565b60405180910390f35b6107c560048036038101906107c091906148ce565b612687565b005b3480156107d357600080fd5b506107ee60048036038101906107e9919061492e565b612a21565b6040516107fb9190613f9c565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061499a565b612ab5565b005b34801561083957600080fd5b50610842612ba7565b60405161084f919061433d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82612bb2565b5b9050919050565b6060600180546109b1906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906149f6565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f82612c1c565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590614a9a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac482611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90614b2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b54612c29565b73ffffffffffffffffffffffffffffffffffffffff161480610b835750610b8281610b7d612c29565b612a21565b5b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990614bbe565b60405180910390fd5b610bcd838383612c31565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c7b5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190614c2a565b60405180910390fd5b60085481610cc6610ea6565b610cd09190614c79565b1115610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614d1b565b60405180910390fd5b610d1b8133612ce3565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc75750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90614c2a565b60405180910390fd5b6008548151610e13610ea6565b610e1d9190614c79565b1115610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614d1b565b60405180910390fd5b60005b8151811015610ea257610e8f6001838381518110610e8257610e81614d3b565b5b60200260200101516115ce565b8080610e9a90614d6a565b915050610e61565b5050565b60008054905090565b610eba838383612cf1565b505050565b60606000610ecc83611d49565b905060008167ffffffffffffffff811115610eea57610ee96141a2565b5b604051908082528060200260200182016040528015610f185781602001602082028036833780820191505090505b50905060005b82811015610f6257610f308582610f73565b828281518110610f4357610f42614d3b565b5b6020026020010181815250508080610f5a90614d6a565b915050610f1e565b508092505050919050565b600f5481565b6000610f7e83611d49565b8210610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690614e25565b60405180910390fd5b6000610fc9610ea6565b905060008060005b8381101561112f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b578684141561110c57819550505050505061116b565b838061111790614d6a565b9450505b50808061112790614d6a565b915050610fd1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290614eb7565b60405180910390fd5b92915050565b60085481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112205750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690614c2a565b60405180910390fd5b600260075414156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614f23565b60405180910390fd5b60026007819055506000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614f8f565b60405180910390fd5b506001600781905550565b61136e83838360405180602001604052806000815250612476565b505050565b600061137d610ea6565b82106113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590615021565b60405180910390fd5b819050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061146f5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614c2a565b60405180910390fd5b80600c90805190602001906114c4929190613e0b565b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115715750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614c2a565b60405180910390fd5b80600e60006101000a81548160ff021916908360ff16021790555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116775750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614c2a565b60405180910390fd5b600854826116c2610ea6565b6116cc9190614c79565b111561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614d1b565b60405180910390fd5b6117178282612ce3565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611780906150b3565b60405180910390fd5b600260075414156117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690614f23565b60405180910390fd5b60026007819055506004600e60009054906101000a900460ff1660ff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390615145565b60405180910390fd5b600a548160ff1661183b610ea6565b6118459190614c79565b1115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90614d1b565b60405180910390fd5b60018160ff161115801561189d575060008160ff16115b6118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906151d7565b60405180910390fd5b348160ff16662386f26fc100006118f391906151f7565b1115611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b906152c3565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf9061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611a23919061534f565b92506101000a81548160ff021916908360ff160217905550611a488160ff1633612ce3565b600160078190555050565b6000611a5e82613298565b600001519050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906150b3565b60405180910390fd5b60026007541415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614f23565b60405180910390fd5b60026007819055506002600e60009054906101000a900460ff1660ff1614611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190615145565b60405180910390fd5b600a548160ff16611b89610ea6565b611b939190614c79565b1115611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614d1b565b60405180910390fd5b60018160ff1611158015611beb575060008160ff16115b611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906151d7565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb59061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d19919061534f565b92506101000a81548160ff021916908360ff160217905550611d3e8160ff1633612ce3565b600160078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db1906153f8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600a5481565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ee75750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90614c2a565b60405180910390fd5b8060098190555050565b606060028054611f3f906149f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6b906149f6565b8015611fb85780601f10611f8d57610100808354040283529160200191611fb8565b820191906000526020600020905b815481529060010190602001808311611f9b57829003601f168201915b5050505050905090565b611fca612c29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f90615464565b60405180910390fd5b8060066000612045612c29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f2612c29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121379190613f9c565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906150b3565b60405180910390fd5b600260075414156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614f23565b60405180910390fd5b60026007819055506003600e60009054906101000a900460ff1660ff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90615145565b60405180910390fd5b600a548160ff16612263610ea6565b61226d9190614c79565b11156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614d1b565b60405180910390fd5b60018160ff16111580156122c5575060008160ff16115b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906151d7565b60405180910390fd5b348160ff1660095461231691906151f7565b1115612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e906152c3565b60405180910390fd5b600b54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e29061532f565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16612446919061534f565b92506101000a81548160ff021916908360ff16021790555061246b8160ff1633612ce3565b600160078190555050565b612481848484612cf1565b61248d8484848461349b565b6124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906154f6565b60405180910390fd5b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061257b5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614c2a565b60405180910390fd5b8260088190555081600b8190555080600a81905550505050565b60606125df82612c1c565b61261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590615588565b60405180910390fd5b60085482101561266057612630613632565b612639836136c4565b60405160200161264a929190615630565b604051602081830303815290604052905061267c565b604051806080016040528060428152602001615eac6042913990505b919050565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ec906150b3565b60405180910390fd5b6002600754141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614f23565b60405180910390fd5b60026007819055506001600e60009054906101000a900460ff1660ff1614612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f906156d1565b60405180910390fd5b600a548360ff166127a7610ea6565b6127b19190614c79565b11156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990614d1b565b60405180910390fd5b60018360ff1611158015612809575060008360ff16115b612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f906151d7565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d29061532f565b60405180910390fd5b6000336040516020016128ee9190615739565b604051602081830303815290604052805190602001209050612954838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613825565b612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906157a0565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166129ee919061534f565b92506101000a81548160ff021916908360ff160217905550612a138460ff1633612ce3565b506001600781905550505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612b5e5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614c2a565b60405180910390fd5b80600f8190555050565b662386f26fc1000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612ced818361383c565b5050565b6000612cfc82613298565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612d23612c29565b73ffffffffffffffffffffffffffffffffffffffff161480612d7f5750612d48612c29565b73ffffffffffffffffffffffffffffffffffffffff16612d6784610a34565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d9b5750612d9a8260000151612d95612c29565b612a21565b5b905080612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490615832565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e46906158c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb690615956565b60405180910390fd5b612ecc858585600161385a565b612edc6000848460000151612c31565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846130e29190614c79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156132285761315881612c1c565b15613227576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132908686866001613860565b505050505050565b6132a0613e91565b6132a982612c1c565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df906159e8565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000003831061334c5760017f00000000000000000000000000000000000000000000000000000000000000038461333f9190615a08565b6133499190614c79565b90505b60008390505b81811061345a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344657809350505050613496565b50808061345290615a3c565b915050613352565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348d90615ad8565b60405180910390fd5b919050565b60006134bc8473ffffffffffffffffffffffffffffffffffffffff16613866565b15613625578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134e5612c29565b8786866040518563ffffffff1660e01b81526004016135079493929190615b4d565b602060405180830381600087803b15801561352157600080fd5b505af192505050801561355257506040513d601f19601f8201168201806040525081019061354f9190615bae565b60015b6135d5573d8060008114613582576040519150601f19603f3d011682016040523d82523d6000602084013e613587565b606091505b506000815114156135cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c4906154f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061362a565b600190505b949350505050565b6060600c8054613641906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461366d906149f6565b80156136ba5780601f1061368f576101008083540402835291602001916136ba565b820191906000526020600020905b81548152906001019060200180831161369d57829003601f168201915b5050505050905090565b6060600082141561370c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613820565b600082905060005b6000821461373e57808061372790614d6a565b915050600a826137379190615c0a565b9150613714565b60008167ffffffffffffffff81111561375a576137596141a2565b5b6040519080825280601f01601f19166020018201604052801561378c5781602001600182028036833780820191505090505b5090505b60008514613819576001826137a59190615a08565b9150600a856137b49190615c3b565b60306137c09190614c79565b60f81b8183815181106137d6576137d5614d3b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138129190615c0a565b9450613790565b8093505050505b919050565b6000826138328584613879565b1490509392505050565b61385682826040518060200160405280600081525061392c565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b84518110156139215760008582815181106138a05761389f614d3b565b5b602002602001015190508083116138e15782816040516020016138c4929190615c8d565b60405160208183030381529060405280519060200120925061390d565b80836040516020016138f4929190615c8d565b6040516020818303038152906040528051906020012092505b50808061391990614d6a565b915050613882565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156139a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399990615d2b565b60405180910390fd5b6139ab81612c1c565b156139eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e290615d97565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000003831115613a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4590615e29565b60405180910390fd5b613a5b600085838661385a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613b589190615e65565b6fffffffffffffffffffffffffffffffff168152602001858360200151613b7f9190615e65565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613dee57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d8e600088848861349b565b613dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc4906154f6565b60405180910390fd5b8180613dd890614d6a565b9250508080613de690614d6a565b915050613d1d565b5080600081905550613e036000878588613860565b505050505050565b828054613e17906149f6565b90600052602060002090601f016020900481019282613e395760008555613e80565b82601f10613e5257805160ff1916838001178555613e80565b82800160010185558215613e80579182015b82811115613e7f578251825591602001919060010190613e64565b5b509050613e8d9190613ecb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ee4576000816000905550600101613ecc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f3181613efc565b8114613f3c57600080fd5b50565b600081359050613f4e81613f28565b92915050565b600060208284031215613f6a57613f69613ef2565b5b6000613f7884828501613f3f565b91505092915050565b60008115159050919050565b613f9681613f81565b82525050565b6000602082019050613fb16000830184613f8d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ff1578082015181840152602081019050613fd6565b83811115614000576000848401525b50505050565b6000601f19601f8301169050919050565b600061402282613fb7565b61402c8185613fc2565b935061403c818560208601613fd3565b61404581614006565b840191505092915050565b6000602082019050818103600083015261406a8184614017565b905092915050565b6000819050919050565b61408581614072565b811461409057600080fd5b50565b6000813590506140a28161407c565b92915050565b6000602082840312156140be576140bd613ef2565b5b60006140cc84828501614093565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614100826140d5565b9050919050565b614110816140f5565b82525050565b600060208201905061412b6000830184614107565b92915050565b61413a816140f5565b811461414557600080fd5b50565b60008135905061415781614131565b92915050565b6000806040838503121561417457614173613ef2565b5b600061418285828601614148565b925050602061419385828601614093565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141da82614006565b810181811067ffffffffffffffff821117156141f9576141f86141a2565b5b80604052505050565b600061420c613ee8565b905061421882826141d1565b919050565b600067ffffffffffffffff821115614238576142376141a2565b5b602082029050602081019050919050565b600080fd5b600061426161425c8461421d565b614202565b9050808382526020820190506020840283018581111561428457614283614249565b5b835b818110156142ad57806142998882614148565b845260208401935050602081019050614286565b5050509392505050565b600082601f8301126142cc576142cb61419d565b5b81356142dc84826020860161424e565b91505092915050565b6000602082840312156142fb576142fa613ef2565b5b600082013567ffffffffffffffff81111561431957614318613ef7565b5b614325848285016142b7565b91505092915050565b61433781614072565b82525050565b6000602082019050614352600083018461432e565b92915050565b60008060006060848603121561437157614370613ef2565b5b600061437f86828701614148565b935050602061439086828701614148565b92505060406143a186828701614093565b9150509250925092565b6000602082840312156143c1576143c0613ef2565b5b60006143cf84828501614148565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61440d81614072565b82525050565b600061441f8383614404565b60208301905092915050565b6000602082019050919050565b6000614443826143d8565b61444d81856143e3565b9350614458836143f4565b8060005b838110156144895781516144708882614413565b975061447b8361442b565b92505060018101905061445c565b5085935050505092915050565b600060208201905081810360008301526144b08184614438565b905092915050565b6000819050919050565b6144cb816144b8565b82525050565b60006020820190506144e660008301846144c2565b92915050565b600080fd5b600067ffffffffffffffff82111561450c5761450b6141a2565b5b61451582614006565b9050602081019050919050565b82818337600083830152505050565b600061454461453f846144f1565b614202565b9050828152602081018484840111156145605761455f6144ec565b5b61456b848285614522565b509392505050565b600082601f8301126145885761458761419d565b5b8135614598848260208601614531565b91505092915050565b6000602082840312156145b7576145b6613ef2565b5b600082013567ffffffffffffffff8111156145d5576145d4613ef7565b5b6145e184828501614573565b91505092915050565b600060ff82169050919050565b614600816145ea565b811461460b57600080fd5b50565b60008135905061461d816145f7565b92915050565b60006020828403121561463957614638613ef2565b5b60006146478482850161460e565b91505092915050565b6000806040838503121561466757614666613ef2565b5b600061467585828601614093565b925050602061468685828601614148565b9150509250929050565b61469981613f81565b81146146a457600080fd5b50565b6000813590506146b681614690565b92915050565b600080604083850312156146d3576146d2613ef2565b5b60006146e185828601614148565b92505060206146f2858286016146a7565b9150509250929050565b600067ffffffffffffffff821115614717576147166141a2565b5b61472082614006565b9050602081019050919050565b600061474061473b846146fc565b614202565b90508281526020810184848401111561475c5761475b6144ec565b5b614767848285614522565b509392505050565b600082601f8301126147845761478361419d565b5b813561479484826020860161472d565b91505092915050565b600080600080608085870312156147b7576147b6613ef2565b5b60006147c587828801614148565b94505060206147d687828801614148565b93505060406147e787828801614093565b925050606085013567ffffffffffffffff81111561480857614807613ef7565b5b6148148782880161476f565b91505092959194509250565b60008060006060848603121561483957614838613ef2565b5b600061484786828701614093565b935050602061485886828701614093565b925050604061486986828701614093565b9150509250925092565b600080fd5b60008083601f84011261488e5761488d61419d565b5b8235905067ffffffffffffffff8111156148ab576148aa614873565b5b6020830191508360208202830111156148c7576148c6614249565b5b9250929050565b6000806000604084860312156148e7576148e6613ef2565b5b60006148f58682870161460e565b935050602084013567ffffffffffffffff81111561491657614915613ef7565b5b61492286828701614878565b92509250509250925092565b6000806040838503121561494557614944613ef2565b5b600061495385828601614148565b925050602061496485828601614148565b9150509250929050565b614977816144b8565b811461498257600080fd5b50565b6000813590506149948161496e565b92915050565b6000602082840312156149b0576149af613ef2565b5b60006149be84828501614985565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a0e57607f821691505b60208210811415614a2257614a216149c7565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614a84602d83613fc2565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b16602283613fc2565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614ba8603983613fc2565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b6000614c14601483613fc2565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c8482614072565b9150614c8f83614072565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cc457614cc3614c4a565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614d05601483613fc2565b9150614d1082614ccf565b602082019050919050565b60006020820190508181036000830152614d3481614cf8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614d7582614072565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614da857614da7614c4a565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0f602283613fc2565b9150614e1a82614db3565b604082019050919050565b60006020820190508181036000830152614e3e81614e02565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614ea1602e83613fc2565b9150614eac82614e45565b604082019050919050565b60006020820190508181036000830152614ed081614e94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614f0d601f83613fc2565b9150614f1882614ed7565b602082019050919050565b60006020820190508181036000830152614f3c81614f00565b9050919050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614f79600683613fc2565b9150614f8482614f43565b602082019050919050565b60006020820190508181036000830152614fa881614f6c565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061500b602383613fc2565b915061501682614faf565b604082019050919050565b6000602082019050818103600083015261503a81614ffe565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b600061509d603083613fc2565b91506150a882615041565b604082019050919050565b600060208201905081810360008301526150cc81615090565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b600061512f602783613fc2565b915061513a826150d3565b604082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b60006151c1603983613fc2565b91506151cc82615165565b604082019050919050565b600060208201905081810360008301526151f0816151b4565b9050919050565b600061520282614072565b915061520d83614072565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561524657615245614c4a565b5b828202905092915050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b60006152ad603283613fc2565b91506152b882615251565b604082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000615319601b83613fc2565b9150615324826152e3565b602082019050919050565b600060208201905081810360008301526153488161530c565b9050919050565b600061535a826145ea565b9150615365836145ea565b92508260ff0382111561537b5761537a614c4a565b5b828201905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006153e2602b83613fc2565b91506153ed82615386565b604082019050919050565b60006020820190508181036000830152615411816153d5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061544e601a83613fc2565b915061545982615418565b602082019050919050565b6000602082019050818103600083015261547d81615441565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006154e0603383613fc2565b91506154eb82615484565b604082019050919050565b6000602082019050818103600083015261550f816154d3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615572602f83613fc2565b915061557d82615516565b604082019050919050565b600060208201905081810360008301526155a181615565565b9050919050565b600081905092915050565b60006155be82613fb7565b6155c881856155a8565b93506155d8818560208601613fd3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061561a6005836155a8565b9150615625826155e4565b600582019050919050565b600061563c82856155b3565b915061564882846155b3565b91506156538261560d565b91508190509392505050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006156bb602383613fc2565b91506156c68261565f565b604082019050919050565b600060208201905081810360008301526156ea816156ae565b9050919050565b60008160601b9050919050565b6000615709826156f1565b9050919050565b600061571b826156fe565b9050919050565b61573361572e826140f5565b615710565b82525050565b60006157458284615722565b60148201915081905092915050565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b600061578a600e83613fc2565b915061579582615754565b602082019050919050565b600060208201905081810360008301526157b98161577d565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061581c603283613fc2565b9150615827826157c0565b604082019050919050565b6000602082019050818103600083015261584b8161580f565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006158ae602683613fc2565b91506158b982615852565b604082019050919050565b600060208201905081810360008301526158dd816158a1565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615940602583613fc2565b915061594b826158e4565b604082019050919050565b6000602082019050818103600083015261596f81615933565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006159d2602a83613fc2565b91506159dd82615976565b604082019050919050565b60006020820190508181036000830152615a01816159c5565b9050919050565b6000615a1382614072565b9150615a1e83614072565b925082821015615a3157615a30614c4a565b5b828203905092915050565b6000615a4782614072565b91506000821415615a5b57615a5a614c4a565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615ac2602f83613fc2565b9150615acd82615a66565b604082019050919050565b60006020820190508181036000830152615af181615ab5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b1f82615af8565b615b298185615b03565b9350615b39818560208601613fd3565b615b4281614006565b840191505092915050565b6000608082019050615b626000830187614107565b615b6f6020830186614107565b615b7c604083018561432e565b8181036060830152615b8e8184615b14565b905095945050505050565b600081519050615ba881613f28565b92915050565b600060208284031215615bc457615bc3613ef2565b5b6000615bd284828501615b99565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c1582614072565b9150615c2083614072565b925082615c3057615c2f615bdb565b5b828204905092915050565b6000615c4682614072565b9150615c5183614072565b925082615c6157615c60615bdb565b5b828206905092915050565b6000819050919050565b615c87615c82826144b8565b615c6c565b82525050565b6000615c998285615c76565b602082019150615ca98284615c76565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d15602183613fc2565b9150615d2082615cb9565b604082019050919050565b60006020820190508181036000830152615d4481615d08565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615d81601d83613fc2565b9150615d8c82615d4b565b602082019050919050565b60006020820190508181036000830152615db081615d74565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e13602283613fc2565b9150615e1e82615db7565b604082019050919050565b60006020820190508181036000830152615e4281615e06565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615e7082615e49565b9150615e7b83615e49565b9250826fffffffffffffffffffffffffffffffff03821115615ea057615e9f614c4a565b5b82820190509291505056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220053c8d29755a0d84e4fa2e20cb9354ce861c29c58926b65e239ea70561779a3264736f6c63430008090033

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.