ETH Price: $2,910.33 (-4.17%)
Gas: 5 Gwei

Token

CHONKZ (CHONKZ)
 

Overview

Max Total Supply

1,289 CHONKZ

Holders

467

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CHONKZ
0x1793a9d2752a0e65ea66e1d5f536d59717d622a4
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:
Chonkz

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

contract Chonkz is ERC721A, ReentrancyGuard, Ownable {

    uint256 public constant MAX_SUPPLY = 5555;

    uint256 public constant TEAM_ALLOCATION = 71;

    uint256 public constant MAX_MINT_PER_TX = 5;

    uint256 public constant MAX_MINT_PER_TX_PRIVATE = 2;

    uint256 public constant PRIVATE_PRICE = 0.05 ether;

    uint256 public constant PUBLIC_PRICE = 0.07 ether;

    uint256 public amountPublicAndTeam = 4071;

    uint256 public publicSaleOpens = 1651708800;

    uint256 public publicSaleCloses = 1651795199;

    uint256 public privateSaleOpens = 1651795200;

    uint256 public privateSaleCloses = 1651881599;

    string public baseURI;

    mapping(address => uint256) public ChonkzList;

    event Mintable(uint256 publicSaleOpens);

    event PrivateSaleMintable(uint256 privateSaleOpens);

    event MintableCloses(uint256 publicSaleCloses);

    event PrivateSaleCloses(uint256 privateSaleCloses);

    event BaseURI(string baseURI);

    event AddToChonkzList(address[] accounts);

    event RemoveFromChonkzList(address account);

    constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {}

    modifier isMintable() {
        require(
            publicSaleOpens != 0 && 
            block.timestamp >= publicSaleOpens && 
            publicSaleCloses >= block.timestamp, 
            "CHONKZ: Public sale not active sir."
        );
        _;
    }

    modifier isPrivateSaleMintable() {
        require(
            privateSaleOpens != 0 && 
            block.timestamp >= privateSaleOpens && 
            privateSaleCloses >= block.timestamp, 
            "CHONKZ: Private sale not active sir."
        );
        _;
    }

    modifier callerIsUser() {
        require(
            tx.origin == msg.sender, 
            "CHONKZ: Caller is a contract."
        );
        _;
    }

    modifier isNotExceedAvailableSupply(uint256 amount) {
        require(
            totalSupply() + amount <= MAX_SUPPLY,
            "CHONKZ: Sorry, insufficient supply remaining."
        );
        _;
    }

    modifier doesNotExceedPublicAndTeamSupply(uint256 amount) {
        require(
            totalSupply() + amount <= amountPublicAndTeam,
            "CHONKZ: Sorry, insufficient public supply remaining."
        );
        _;
    }

    modifier isPrivateSaleValueAndAmountValid(uint256 amount) {
        require(
            msg.value == PRIVATE_PRICE * amount,
            "CHONKZ: Ether value does not meet requirement."
        );
        require(
            ChonkzList[msg.sender] >= amount, 
            "CHONKZ: Exceeds allocation for wallet."
        );
        _;
    }

    modifier isPublicSaleValueAndAmountValid(uint256 amount) {
        require(
            msg.value == PUBLIC_PRICE * amount,
            "CHONKZ: Ether value does not meet requirement."
        );
        require(
            amount <= MAX_MINT_PER_TX,
            "CHONKZ: Exceeds transaction mint limit."  
        );
        _;
    }

    modifier isChonkzList(){
        require(
            ChonkzList[msg.sender] > 0,
            "CHONKZ: You're not on the list for the presale."
        );
        _;
    }

    function devMint(uint256 amount)
        public
        onlyOwner
        doesNotExceedPublicAndTeamSupply(amount)
    {
        require(amount <= TEAM_ALLOCATION, "CHONKZ: Exceeds allocation for developer wallet.");
        _safeMint(msg.sender, amount);
    }

    function privateSaleMint(uint256 amount)
        public
        payable
        nonReentrant 
        callerIsUser
        isPrivateSaleMintable
        isChonkzList
        isNotExceedAvailableSupply(amount)
        isPrivateSaleValueAndAmountValid(amount)
    {
        _safeMint(msg.sender, amount);
        ChonkzList[msg.sender] -= amount;
    }

    function mint(uint256 amount)
        public
        payable
        nonReentrant
        callerIsUser
        isMintable
        doesNotExceedPublicAndTeamSupply(amount)
        isPublicSaleValueAndAmountValid(amount)
    {
        _safeMint(msg.sender, amount);
    }

    function setBaseURI(string memory _URI) external onlyOwner {
        baseURI = _URI;
        emit BaseURI(baseURI);
    }

    function setPublicAndTeamSupply(uint256 supply) external onlyOwner {
        require(
            supply <= MAX_SUPPLY,
            "CHONKZ: Exceeds max possible supply."
        );
        amountPublicAndTeam = supply;
    }

    function setPublicSaleOpens(uint256 timestamp) external onlyOwner {
        publicSaleOpens = timestamp;
        emit Mintable(publicSaleOpens);
    }

    function setPrivateSaleOpens(uint256 timestamp) external onlyOwner {
        privateSaleOpens = timestamp;
        emit PrivateSaleMintable(privateSaleOpens);
    }

    function setPublicSaleCloses(uint256 timestamp) external onlyOwner {
        publicSaleCloses = timestamp;
        emit MintableCloses(publicSaleCloses);
    }

    function setPrivateSaleCloses(uint256 timestamp) external onlyOwner {
        privateSaleCloses = timestamp;
        emit PrivateSaleCloses(privateSaleCloses);
    }

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

    function withdraw() external onlyOwner {
        payable(0x4090E94213f473Cb9572B85D89dBd9a11c8B03c9).transfer(address(this).balance);
    }

    function setAddressesToChonkzList(address[] memory _addresses, uint8[] memory _allocations)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            ChonkzList[_addresses[i]] = _allocations[i];
        }

        emit AddToChonkzList(_addresses);
    }

    function removeAddressFromChonkzList(address _address) external onlyOwner {
        ChonkzList[_address] = 0;
        emit RemoveFromChonkzList(_address);
    }
}

/* Curated by @Scarlet_Swarm */

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 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 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"AddToChonkzList","type":"event"},{"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicSaleOpens","type":"uint256"}],"name":"Mintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicSaleCloses","type":"uint256"}],"name":"MintableCloses","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSaleCloses","type":"uint256"}],"name":"PrivateSaleCloses","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSaleOpens","type":"uint256"}],"name":"PrivateSaleMintable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveFromChonkzList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ChonkzList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIVATE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountPublicAndTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleCloses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"privateSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSaleOpens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCloses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAddressFromChonkzList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint8[]","name":"_allocations","type":"uint8[]"}],"name":"setAddressesToChonkzList","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPrivateSaleCloses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPrivateSaleOpens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setPublicAndTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleCloses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleOpens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610fe76009556362731380600a5563627464ff600b556362746500600c55636275b67f600d553480156200003757600080fd5b50604051620054193803806200541983398181016040528101906200005d9190620002bf565b818181600190805190602001906200007792919062000191565b5080600290805190602001906200009092919062000191565b5050506001600781905550620000bb620000af620000c360201b60201c565b620000cb60201b60201c565b5050620004c8565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200019f90620003d9565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b60006200025862000252846200036d565b62000344565b905082815260208101848484011115620002775762000276620004a8565b5b62000284848285620003a3565b509392505050565b600082601f830112620002a457620002a3620004a3565b5b8151620002b684826020860162000241565b91505092915050565b60008060408385031215620002d957620002d8620004b2565b5b600083015167ffffffffffffffff811115620002fa57620002f9620004ad565b5b62000308858286016200028c565b925050602083015167ffffffffffffffff8111156200032c576200032b620004ad565b5b6200033a858286016200028c565b9150509250929050565b60006200035062000363565b90506200035e82826200040f565b919050565b6000604051905090565b600067ffffffffffffffff8211156200038b576200038a62000474565b5b6200039682620004b7565b9050602081019050919050565b60005b83811015620003c3578082015181840152602081019050620003a6565b83811115620003d3576000848401525b50505050565b60006002820490506001821680620003f257607f821691505b6020821081141562000409576200040862000445565b5b50919050565b6200041a82620004b7565b810181811067ffffffffffffffff821117156200043c576200043b62000474565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614f4180620004d86000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146108ec578063eac438b114610929578063f2fde38b14610966578063f61c84001461098f578063f8004b98146109ba578063fd99cbed146109e357610267565b8063b88d4fde14610807578063c87b56dd14610830578063ca6091921461086d578063d0dab1a514610898578063e830bc52146108c157610267565b8063769f746e11610108578063769f746e146107185780638da5cb5b146107415780638ecad7211461076c57806395d89b4114610797578063a0712d68146107c2578063a22cb465146107de57610267565b80636352211e1461063157806368d574e01461066e5780636c0360eb1461069957806370a08231146106c4578063715018a61461070157610267565b80632f745c59116101dd5780633ccfd60b116101a15780633ccfd60b1461053757806342842e0e1461054e5780634f6ccce71461057757806355f804b3146105b457806358f4c346146105dd578063611f3f101461060657610267565b80632f745c591461046157806332cb6b0c1461049e578063346f0d48146104c9578063375a069a146104e55780633a0c8e261461050e57610267565b806321fda7cc1161022f57806321fda7cc1461036557806323b872dd1461038e57806326e5c5a7146103b757806329b57583146103e257806329da6b301461040d5780632e2047d41461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613e08565b610a0e565b6040516102a09190614344565b60405180910390f35b3480156102b557600080fd5b506102be610b58565b6040516102cb919061435f565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613eab565b610bea565b60405161030891906142bb565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613d50565b610c66565b005b34801561034657600080fd5b5061034f610d71565b60405161035c9190614563565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613eab565b610dc6565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613c3a565b610e85565b005b3480156103c357600080fd5b506103cc610e95565b6040516103d99190614563565b60405180910390f35b3480156103ee57600080fd5b506103f7610e9b565b6040516104049190614563565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613eab565b610ea0565b005b34801561044257600080fd5b5061044b610f6b565b6040516104589190614563565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613d50565b610f76565b6040516104959190614563565b60405180910390f35b3480156104aa57600080fd5b506104b361117d565b6040516104c09190614563565b60405180910390f35b6104e360048036038101906104de9190613eab565b611183565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613eab565b6114bf565b005b34801561051a57600080fd5b5061053560048036038101906105309190613eab565b6115e5565b005b34801561054357600080fd5b5061054c6116a4565b005b34801561055a57600080fd5b5061057560048036038101906105709190613c3a565b61177d565b005b34801561058357600080fd5b5061059e60048036038101906105999190613eab565b61179d565b6040516105ab9190614563565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613e62565b61190e565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613bcd565b6119dc565b005b34801561061257600080fd5b5061061b611ad7565b6040516106289190614563565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613eab565b611ae2565b60405161066591906142bb565b60405180910390f35b34801561067a57600080fd5b50610683611af8565b6040516106909190614563565b60405180910390f35b3480156106a557600080fd5b506106ae611afe565b6040516106bb919061435f565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613bcd565b611b8c565b6040516106f89190614563565b60405180910390f35b34801561070d57600080fd5b50610716611c5c565b005b34801561072457600080fd5b5061073f600480360381019061073a9190613eab565b611ce4565b005b34801561074d57600080fd5b50610756611da3565b60405161076391906142bb565b60405180910390f35b34801561077857600080fd5b50610781611dcd565b60405161078e9190614563565b60405180910390f35b3480156107a357600080fd5b506107ac611dd2565b6040516107b9919061435f565b60405180910390f35b6107dc60048036038101906107d79190613eab565b611e64565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613d10565b61208a565b005b34801561081357600080fd5b5061082e60048036038101906108299190613c8d565b612202565b005b34801561083c57600080fd5b5061085760048036038101906108529190613eab565b612255565b604051610864919061435f565b60405180910390f35b34801561087957600080fd5b506108826122f4565b60405161088f9190614563565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613eab565b6122fa565b005b3480156108cd57600080fd5b506108d66123b9565b6040516108e39190614563565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613bfa565b6123bf565b6040516109209190614344565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613bcd565b612453565b60405161095d9190614563565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613bcd565b61246b565b005b34801561099b57600080fd5b506109a4612563565b6040516109b19190614563565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc9190613d90565b612569565b005b3480156109ef57600080fd5b506109f86126bb565b604051610a059190614563565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b515750610b50826126c0565b5b9050919050565b606060018054610b67906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b93906148c6565b8015610be05780601f10610bb557610100808354040283529160200191610be0565b820191906000526020600020905b815481529060010190602001808311610bc357829003601f168201915b5050505050905090565b6000610bf58261272a565b610c2b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7182611ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf8612792565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d2a5750610d2881610d23612792565b6123bf565b155b15610d61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6c83838361279a565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610dce612792565b73ffffffffffffffffffffffffffffffffffffffff16610dec611da3565b73ffffffffffffffffffffffffffffffffffffffff1614610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906144a3565b60405180910390fd5b80600b819055507f20fb91e107e31e22a77f51ff5ef5a39893ca4e7b76872b127103881524954b24600b54604051610e7a9190614563565b60405180910390a150565b610e9083838361284c565b505050565b600b5481565b600281565b610ea8612792565b73ffffffffffffffffffffffffffffffffffffffff16610ec6611da3565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906144a3565b60405180910390fd5b6115b3811115610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906143c3565b60405180910390fd5b8060098190555050565b66b1a2bc2ec5000081565b6000610f8183611b8c565b8210610fb9576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611171576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110d05750611164565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461111057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111625786841415611159578195505050505050611177565b83806001019450505b505b8080600101915050610ff3565b50600080fd5b92915050565b6115b381565b600260075414156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614503565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906143a3565b60405180910390fd5b6000600c54141580156112545750600c544210155b8015611262575042600d5410155b6112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890614443565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614403565b60405180910390fd5b806115b381611330610d71565b61133a91906146ee565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906144e3565b60405180910390fd5b818066b1a2bc2ec5000061138f9190614775565b34146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906144c3565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614423565b60405180910390fd5b61145c3384612d69565b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ab91906147cf565b925050819055505050600160078190555050565b6114c7612792565b73ffffffffffffffffffffffffffffffffffffffff166114e5611da3565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906144a3565b60405180910390fd5b8060095481611548610d71565b61155291906146ee565b1115611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614543565b60405180910390fd5b60478211156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614463565b60405180910390fd5b6115e13383612d69565b5050565b6115ed612792565b73ffffffffffffffffffffffffffffffffffffffff1661160b611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611658906144a3565b60405180910390fd5b80600c819055507f2680c07fb8e3029d353b8478f71c9ad2cb1571732bb77e460e8bcb0440a23978600c546040516116999190614563565b60405180910390a150565b6116ac612792565b73ffffffffffffffffffffffffffffffffffffffff166116ca611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611717906144a3565b60405180910390fd5b734090e94213f473cb9572b85d89dbd9a11c8b03c973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177a573d6000803e3d6000fd5b50565b61179883838360405180602001604052806000815250612202565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156118d6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118c857858314156118bf5781945050505050611909565b82806001019350505b5080806001019150506117d5565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611916612792565b73ffffffffffffffffffffffffffffffffffffffff16611934611da3565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906144a3565b60405180910390fd5b80600e90805190602001906119a092919061384d565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600e6040516119d19190614381565b60405180910390a150565b6119e4612792565b73ffffffffffffffffffffffffffffffffffffffff16611a02611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906144a3565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f7a17e01251fe15957f0e7e004f77bdc28c3fae335eedba3bf3fd9ed77475a81781604051611acc91906142bb565b60405180910390a150565b66f8b0a10e47000081565b6000611aed82612d87565b600001519050919050565b60095481565b600e8054611b0b906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b37906148c6565b8015611b845780601f10611b5957610100808354040283529160200191611b84565b820191906000526020600020905b815481529060010190602001808311611b6757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c64612792565b73ffffffffffffffffffffffffffffffffffffffff16611c82611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906144a3565b60405180910390fd5b611ce2600061302f565b565b611cec612792565b73ffffffffffffffffffffffffffffffffffffffff16611d0a611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906144a3565b60405180910390fd5b80600d819055507f263ab6a03f17a329d048d9d632b4fe53b517a5ec6817e71e730d91ad560504ee600d54604051611d989190614563565b60405180910390a150565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b606060028054611de1906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0d906148c6565b8015611e5a5780601f10611e2f57610100808354040283529160200191611e5a565b820191906000526020600020905b815481529060010190602001808311611e3d57829003601f168201915b5050505050905090565b60026007541415611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614503565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f17906143a3565b60405180910390fd5b6000600a5414158015611f355750600a544210155b8015611f43575042600b5410155b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614523565b60405180910390fd5b8060095481611f8f610d71565b611f9991906146ee565b1115611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190614543565b60405180910390fd5b818066f8b0a10e470000611fee9190614775565b341461202f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612026906144c3565b60405180910390fd5b6005811115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90614483565b60405180910390fd5b61207d3384612d69565b5050600160078190555050565b612092612792565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612104612792565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b1612792565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f69190614344565b60405180910390a35050565b61220d84848461284c565b612219848484846130f5565b61224f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606122608261272a565b612296576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122a0613283565b90506000815114156122c157604051806020016040528060008152506122ec565b806122cb84613315565b6040516020016122dc929190614297565b6040516020818303038152906040525b915050919050565b600d5481565b612302612792565b73ffffffffffffffffffffffffffffffffffffffff16612320611da3565b73ffffffffffffffffffffffffffffffffffffffff1614612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906144a3565b60405180910390fd5b80600a819055507fa70165ffd4e614a6a84ff941e73dbdbfa0ccff9aee88b3361574abd4779b460e600a546040516123ae9190614563565b60405180910390a150565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b612473612792565b73ffffffffffffffffffffffffffffffffffffffff16612491611da3565b73ffffffffffffffffffffffffffffffffffffffff16146124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de906144a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e906143e3565b60405180910390fd5b6125608161302f565b50565b600c5481565b612571612792565b73ffffffffffffffffffffffffffffffffffffffff1661258f611da3565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc906144a3565b60405180910390fd5b60005b825181101561267f5781818151811061260457612603614a30565b5b602002602001015160ff16600f600085848151811061262657612625614a30565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061267790614929565b9150506125e8565b507f376a53fd8bb66b4f62ea964db35dacccf566eafbbb0e1ce31c871b0b3a5e548c826040516126af9190614322565b60405180910390a15050565b604781565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561278b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061285782612d87565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287e612792565b73ffffffffffffffffffffffffffffffffffffffff1614806128b157506128b082600001516128ab612792565b6123bf565b5b806128f657506128bf612792565b73ffffffffffffffffffffffffffffffffffffffff166128de84610bea565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061292f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612998576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a0c8585856001613476565b612a1c600084846000015161279a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cf95760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612cf85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d62858585600161347c565b5050505050565b612d83828260405180602001604052806000815250613482565b5050565b612d8f6138d3565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ff8576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ff657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eda57809250505061302a565b5b600115612ff557818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ff057809250505061302a565b612edb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131168473ffffffffffffffffffffffffffffffffffffffff16613494565b15613276578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313f612792565b8786866040518563ffffffff1660e01b815260040161316194939291906142d6565b602060405180830381600087803b15801561317b57600080fd5b505af19250505080156131ac57506040513d601f19601f820116820180604052508101906131a99190613e35565b60015b613226573d80600081146131dc576040519150601f19603f3d011682016040523d82523d6000602084013e6131e1565b606091505b5060008151141561321e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061327b565b600190505b949350505050565b6060600e8054613292906148c6565b80601f01602080910402602001604051908101604052809291908181526020018280546132be906148c6565b801561330b5780601f106132e05761010080835404028352916020019161330b565b820191906000526020600020905b8154815290600101906020018083116132ee57829003601f168201915b5050505050905090565b6060600082141561335d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613471565b600082905060005b6000821461338f57808061337890614929565b915050600a826133889190614744565b9150613365565b60008167ffffffffffffffff8111156133ab576133aa614a5f565b5b6040519080825280601f01601f1916602001820160405280156133dd5781602001600182028036833780820191505090505b5090505b6000851461346a576001826133f691906147cf565b9150600a856134059190614972565b603061341191906146ee565b60f81b81838151811061342757613426614a30565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134639190614744565b94506133e1565b8093505050505b919050565b50505050565b50505050565b61348f83838360016134b7565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613552576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561358d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61359a6000868387613476565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137ff57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156137b357506137b160008884886130f5565b155b156137ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613738565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613846600086838761347c565b5050505050565b828054613859906148c6565b90600052602060002090601f01602090048101928261387b57600085556138c2565b82601f1061389457805160ff19168380011785556138c2565b828001600101855582156138c2579182015b828111156138c15782518255916020019190600101906138a6565b5b5090506138cf9190613916565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561392f576000816000905550600101613917565b5090565b6000613946613941846145a3565b61457e565b9050808382526020820190508285602086028201111561396957613968614a93565b5b60005b85811015613999578161397f8882613a97565b84526020840193506020830192505060018101905061396c565b5050509392505050565b60006139b66139b1846145cf565b61457e565b905080838252602082019050828560208602820111156139d9576139d8614a93565b5b60005b85811015613a0957816139ef8882613bb8565b8452602084019350602083019250506001810190506139dc565b5050509392505050565b6000613a26613a21846145fb565b61457e565b905082815260208101848484011115613a4257613a41614a98565b5b613a4d848285614884565b509392505050565b6000613a68613a638461462c565b61457e565b905082815260208101848484011115613a8457613a83614a98565b5b613a8f848285614884565b509392505050565b600081359050613aa681614e98565b92915050565b600082601f830112613ac157613ac0614a8e565b5b8135613ad1848260208601613933565b91505092915050565b600082601f830112613aef57613aee614a8e565b5b8135613aff8482602086016139a3565b91505092915050565b600081359050613b1781614eaf565b92915050565b600081359050613b2c81614ec6565b92915050565b600081519050613b4181614ec6565b92915050565b600082601f830112613b5c57613b5b614a8e565b5b8135613b6c848260208601613a13565b91505092915050565b600082601f830112613b8a57613b89614a8e565b5b8135613b9a848260208601613a55565b91505092915050565b600081359050613bb281614edd565b92915050565b600081359050613bc781614ef4565b92915050565b600060208284031215613be357613be2614aa2565b5b6000613bf184828501613a97565b91505092915050565b60008060408385031215613c1157613c10614aa2565b5b6000613c1f85828601613a97565b9250506020613c3085828601613a97565b9150509250929050565b600080600060608486031215613c5357613c52614aa2565b5b6000613c6186828701613a97565b9350506020613c7286828701613a97565b9250506040613c8386828701613ba3565b9150509250925092565b60008060008060808587031215613ca757613ca6614aa2565b5b6000613cb587828801613a97565b9450506020613cc687828801613a97565b9350506040613cd787828801613ba3565b925050606085013567ffffffffffffffff811115613cf857613cf7614a9d565b5b613d0487828801613b47565b91505092959194509250565b60008060408385031215613d2757613d26614aa2565b5b6000613d3585828601613a97565b9250506020613d4685828601613b08565b9150509250929050565b60008060408385031215613d6757613d66614aa2565b5b6000613d7585828601613a97565b9250506020613d8685828601613ba3565b9150509250929050565b60008060408385031215613da757613da6614aa2565b5b600083013567ffffffffffffffff811115613dc557613dc4614a9d565b5b613dd185828601613aac565b925050602083013567ffffffffffffffff811115613df257613df1614a9d565b5b613dfe85828601613ada565b9150509250929050565b600060208284031215613e1e57613e1d614aa2565b5b6000613e2c84828501613b1d565b91505092915050565b600060208284031215613e4b57613e4a614aa2565b5b6000613e5984828501613b32565b91505092915050565b600060208284031215613e7857613e77614aa2565b5b600082013567ffffffffffffffff811115613e9657613e95614a9d565b5b613ea284828501613b75565b91505092915050565b600060208284031215613ec157613ec0614aa2565b5b6000613ecf84828501613ba3565b91505092915050565b6000613ee48383613ef0565b60208301905092915050565b613ef981614803565b82525050565b613f0881614803565b82525050565b6000613f1982614682565b613f2381856146b0565b9350613f2e8361465d565b8060005b83811015613f5f578151613f468882613ed8565b9750613f51836146a3565b925050600181019050613f32565b5085935050505092915050565b613f7581614815565b82525050565b6000613f868261468d565b613f9081856146c1565b9350613fa0818560208601614893565b613fa981614aa7565b840191505092915050565b6000613fbf82614698565b613fc981856146d2565b9350613fd9818560208601614893565b613fe281614aa7565b840191505092915050565b6000613ff882614698565b61400281856146e3565b9350614012818560208601614893565b80840191505092915050565b6000815461402b816148c6565b61403581866146d2565b94506001821660008114614050576001811461406257614095565b60ff1983168652602086019350614095565b61406b8561466d565b60005b8381101561408d5781548189015260018201915060208101905061406e565b808801955050505b50505092915050565b60006140ab601d836146d2565b91506140b682614ab8565b602082019050919050565b60006140ce6024836146d2565b91506140d982614ae1565b604082019050919050565b60006140f16026836146d2565b91506140fc82614b30565b604082019050919050565b6000614114602f836146d2565b915061411f82614b7f565b604082019050919050565b60006141376026836146d2565b915061414282614bce565b604082019050919050565b600061415a6024836146d2565b915061416582614c1d565b604082019050919050565b600061417d6030836146d2565b915061418882614c6c565b604082019050919050565b60006141a06027836146d2565b91506141ab82614cbb565b604082019050919050565b60006141c36020836146d2565b91506141ce82614d0a565b602082019050919050565b60006141e6602e836146d2565b91506141f182614d33565b604082019050919050565b6000614209602d836146d2565b915061421482614d82565b604082019050919050565b600061422c601f836146d2565b915061423782614dd1565b602082019050919050565b600061424f6023836146d2565b915061425a82614dfa565b604082019050919050565b60006142726034836146d2565b915061427d82614e49565b604082019050919050565b6142918161486d565b82525050565b60006142a38285613fed565b91506142af8284613fed565b91508190509392505050565b60006020820190506142d06000830184613eff565b92915050565b60006080820190506142eb6000830187613eff565b6142f86020830186613eff565b6143056040830185614288565b81810360608301526143178184613f7b565b905095945050505050565b6000602082019050818103600083015261433c8184613f0e565b905092915050565b60006020820190506143596000830184613f6c565b92915050565b600060208201905081810360008301526143798184613fb4565b905092915050565b6000602082019050818103600083015261439b818461401e565b905092915050565b600060208201905081810360008301526143bc8161409e565b9050919050565b600060208201905081810360008301526143dc816140c1565b9050919050565b600060208201905081810360008301526143fc816140e4565b9050919050565b6000602082019050818103600083015261441c81614107565b9050919050565b6000602082019050818103600083015261443c8161412a565b9050919050565b6000602082019050818103600083015261445c8161414d565b9050919050565b6000602082019050818103600083015261447c81614170565b9050919050565b6000602082019050818103600083015261449c81614193565b9050919050565b600060208201905081810360008301526144bc816141b6565b9050919050565b600060208201905081810360008301526144dc816141d9565b9050919050565b600060208201905081810360008301526144fc816141fc565b9050919050565b6000602082019050818103600083015261451c8161421f565b9050919050565b6000602082019050818103600083015261453c81614242565b9050919050565b6000602082019050818103600083015261455c81614265565b9050919050565b60006020820190506145786000830184614288565b92915050565b6000614588614599565b905061459482826148f8565b919050565b6000604051905090565b600067ffffffffffffffff8211156145be576145bd614a5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145ea576145e9614a5f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461657614615614a5f565b5b61461f82614aa7565b9050602081019050919050565b600067ffffffffffffffff82111561464757614646614a5f565b5b61465082614aa7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f98261486d565b91506147048361486d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614739576147386149a3565b5b828201905092915050565b600061474f8261486d565b915061475a8361486d565b92508261476a576147696149d2565b5b828204905092915050565b60006147808261486d565b915061478b8361486d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c4576147c36149a3565b5b828202905092915050565b60006147da8261486d565b91506147e58361486d565b9250828210156147f8576147f76149a3565b5b828203905092915050565b600061480e8261484d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148b1578082015181840152602081019050614896565b838111156148c0576000848401525b50505050565b600060028204905060018216806148de57607f821691505b602082108114156148f2576148f1614a01565b5b50919050565b61490182614aa7565b810181811067ffffffffffffffff821117156149205761491f614a5f565b5b80604052505050565b60006149348261486d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614967576149666149a3565b5b600182019050919050565b600061497d8261486d565b91506149888361486d565b925082614998576149976149d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43484f4e4b5a3a2043616c6c6572206973206120636f6e74726163742e000000600082015250565b7f43484f4e4b5a3a2045786365656473206d617820706f737369626c652073757060008201527f706c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20596f75277265206e6f74206f6e20746865206c697374206660008201527f6f72207468652070726573616c652e0000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a204578636565647320616c6c6f636174696f6e20666f72207760008201527f616c6c65742e0000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20507269766174652073616c65206e6f74206163746976652060008201527f7369722e00000000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a204578636565647320616c6c6f636174696f6e20666f72206460008201527f6576656c6f7065722077616c6c65742e00000000000000000000000000000000602082015250565b7f43484f4e4b5a3a2045786365656473207472616e73616374696f6e206d696e7460008201527f206c696d69742e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43484f4e4b5a3a2045746865722076616c756520646f6573206e6f74206d656560008201527f7420726571756972656d656e742e000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20536f7272792c20696e73756666696369656e74207375707060008201527f6c792072656d61696e696e672e00000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f43484f4e4b5a3a205075626c69632073616c65206e6f7420616374697665207360008201527f69722e0000000000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20536f7272792c20696e73756666696369656e74207075626c60008201527f696320737570706c792072656d61696e696e672e000000000000000000000000602082015250565b614ea181614803565b8114614eac57600080fd5b50565b614eb881614815565b8114614ec357600080fd5b50565b614ecf81614821565b8114614eda57600080fd5b50565b614ee68161486d565b8114614ef157600080fd5b50565b614efd81614877565b8114614f0857600080fd5b5056fea264697066735822122090338a2cf170f3717cd01b24b069def2ae44b93bccf22e87d0f55f26ad4084e664736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000643484f4e4b5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643484f4e4b5a0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146108ec578063eac438b114610929578063f2fde38b14610966578063f61c84001461098f578063f8004b98146109ba578063fd99cbed146109e357610267565b8063b88d4fde14610807578063c87b56dd14610830578063ca6091921461086d578063d0dab1a514610898578063e830bc52146108c157610267565b8063769f746e11610108578063769f746e146107185780638da5cb5b146107415780638ecad7211461076c57806395d89b4114610797578063a0712d68146107c2578063a22cb465146107de57610267565b80636352211e1461063157806368d574e01461066e5780636c0360eb1461069957806370a08231146106c4578063715018a61461070157610267565b80632f745c59116101dd5780633ccfd60b116101a15780633ccfd60b1461053757806342842e0e1461054e5780634f6ccce71461057757806355f804b3146105b457806358f4c346146105dd578063611f3f101461060657610267565b80632f745c591461046157806332cb6b0c1461049e578063346f0d48146104c9578063375a069a146104e55780633a0c8e261461050e57610267565b806321fda7cc1161022f57806321fda7cc1461036557806323b872dd1461038e57806326e5c5a7146103b757806329b57583146103e257806329da6b301461040d5780632e2047d41461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613e08565b610a0e565b6040516102a09190614344565b60405180910390f35b3480156102b557600080fd5b506102be610b58565b6040516102cb919061435f565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613eab565b610bea565b60405161030891906142bb565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613d50565b610c66565b005b34801561034657600080fd5b5061034f610d71565b60405161035c9190614563565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613eab565b610dc6565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613c3a565b610e85565b005b3480156103c357600080fd5b506103cc610e95565b6040516103d99190614563565b60405180910390f35b3480156103ee57600080fd5b506103f7610e9b565b6040516104049190614563565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613eab565b610ea0565b005b34801561044257600080fd5b5061044b610f6b565b6040516104589190614563565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613d50565b610f76565b6040516104959190614563565b60405180910390f35b3480156104aa57600080fd5b506104b361117d565b6040516104c09190614563565b60405180910390f35b6104e360048036038101906104de9190613eab565b611183565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613eab565b6114bf565b005b34801561051a57600080fd5b5061053560048036038101906105309190613eab565b6115e5565b005b34801561054357600080fd5b5061054c6116a4565b005b34801561055a57600080fd5b5061057560048036038101906105709190613c3a565b61177d565b005b34801561058357600080fd5b5061059e60048036038101906105999190613eab565b61179d565b6040516105ab9190614563565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613e62565b61190e565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613bcd565b6119dc565b005b34801561061257600080fd5b5061061b611ad7565b6040516106289190614563565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190613eab565b611ae2565b60405161066591906142bb565b60405180910390f35b34801561067a57600080fd5b50610683611af8565b6040516106909190614563565b60405180910390f35b3480156106a557600080fd5b506106ae611afe565b6040516106bb919061435f565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613bcd565b611b8c565b6040516106f89190614563565b60405180910390f35b34801561070d57600080fd5b50610716611c5c565b005b34801561072457600080fd5b5061073f600480360381019061073a9190613eab565b611ce4565b005b34801561074d57600080fd5b50610756611da3565b60405161076391906142bb565b60405180910390f35b34801561077857600080fd5b50610781611dcd565b60405161078e9190614563565b60405180910390f35b3480156107a357600080fd5b506107ac611dd2565b6040516107b9919061435f565b60405180910390f35b6107dc60048036038101906107d79190613eab565b611e64565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613d10565b61208a565b005b34801561081357600080fd5b5061082e60048036038101906108299190613c8d565b612202565b005b34801561083c57600080fd5b5061085760048036038101906108529190613eab565b612255565b604051610864919061435f565b60405180910390f35b34801561087957600080fd5b506108826122f4565b60405161088f9190614563565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613eab565b6122fa565b005b3480156108cd57600080fd5b506108d66123b9565b6040516108e39190614563565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613bfa565b6123bf565b6040516109209190614344565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613bcd565b612453565b60405161095d9190614563565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613bcd565b61246b565b005b34801561099b57600080fd5b506109a4612563565b6040516109b19190614563565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc9190613d90565b612569565b005b3480156109ef57600080fd5b506109f86126bb565b604051610a059190614563565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b515750610b50826126c0565b5b9050919050565b606060018054610b67906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b93906148c6565b8015610be05780601f10610bb557610100808354040283529160200191610be0565b820191906000526020600020905b815481529060010190602001808311610bc357829003601f168201915b5050505050905090565b6000610bf58261272a565b610c2b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7182611ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf8612792565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d2a5750610d2881610d23612792565b6123bf565b155b15610d61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6c83838361279a565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610dce612792565b73ffffffffffffffffffffffffffffffffffffffff16610dec611da3565b73ffffffffffffffffffffffffffffffffffffffff1614610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906144a3565b60405180910390fd5b80600b819055507f20fb91e107e31e22a77f51ff5ef5a39893ca4e7b76872b127103881524954b24600b54604051610e7a9190614563565b60405180910390a150565b610e9083838361284c565b505050565b600b5481565b600281565b610ea8612792565b73ffffffffffffffffffffffffffffffffffffffff16610ec6611da3565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f13906144a3565b60405180910390fd5b6115b3811115610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906143c3565b60405180910390fd5b8060098190555050565b66b1a2bc2ec5000081565b6000610f8183611b8c565b8210610fb9576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611171576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110d05750611164565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461111057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111625786841415611159578195505050505050611177565b83806001019450505b505b8080600101915050610ff3565b50600080fd5b92915050565b6115b381565b600260075414156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614503565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906143a3565b60405180910390fd5b6000600c54141580156112545750600c544210155b8015611262575042600d5410155b6112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890614443565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614403565b60405180910390fd5b806115b381611330610d71565b61133a91906146ee565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906144e3565b60405180910390fd5b818066b1a2bc2ec5000061138f9190614775565b34146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906144c3565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614423565b60405180910390fd5b61145c3384612d69565b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ab91906147cf565b925050819055505050600160078190555050565b6114c7612792565b73ffffffffffffffffffffffffffffffffffffffff166114e5611da3565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906144a3565b60405180910390fd5b8060095481611548610d71565b61155291906146ee565b1115611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614543565b60405180910390fd5b60478211156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614463565b60405180910390fd5b6115e13383612d69565b5050565b6115ed612792565b73ffffffffffffffffffffffffffffffffffffffff1661160b611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611658906144a3565b60405180910390fd5b80600c819055507f2680c07fb8e3029d353b8478f71c9ad2cb1571732bb77e460e8bcb0440a23978600c546040516116999190614563565b60405180910390a150565b6116ac612792565b73ffffffffffffffffffffffffffffffffffffffff166116ca611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611717906144a3565b60405180910390fd5b734090e94213f473cb9572b85d89dbd9a11c8b03c973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177a573d6000803e3d6000fd5b50565b61179883838360405180602001604052806000815250612202565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156118d6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118c857858314156118bf5781945050505050611909565b82806001019350505b5080806001019150506117d5565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611916612792565b73ffffffffffffffffffffffffffffffffffffffff16611934611da3565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906144a3565b60405180910390fd5b80600e90805190602001906119a092919061384d565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600e6040516119d19190614381565b60405180910390a150565b6119e4612792565b73ffffffffffffffffffffffffffffffffffffffff16611a02611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906144a3565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f7a17e01251fe15957f0e7e004f77bdc28c3fae335eedba3bf3fd9ed77475a81781604051611acc91906142bb565b60405180910390a150565b66f8b0a10e47000081565b6000611aed82612d87565b600001519050919050565b60095481565b600e8054611b0b906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b37906148c6565b8015611b845780601f10611b5957610100808354040283529160200191611b84565b820191906000526020600020905b815481529060010190602001808311611b6757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c64612792565b73ffffffffffffffffffffffffffffffffffffffff16611c82611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906144a3565b60405180910390fd5b611ce2600061302f565b565b611cec612792565b73ffffffffffffffffffffffffffffffffffffffff16611d0a611da3565b73ffffffffffffffffffffffffffffffffffffffff1614611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906144a3565b60405180910390fd5b80600d819055507f263ab6a03f17a329d048d9d632b4fe53b517a5ec6817e71e730d91ad560504ee600d54604051611d989190614563565b60405180910390a150565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b606060028054611de1906148c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0d906148c6565b8015611e5a5780601f10611e2f57610100808354040283529160200191611e5a565b820191906000526020600020905b815481529060010190602001808311611e3d57829003601f168201915b5050505050905090565b60026007541415611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614503565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f17906143a3565b60405180910390fd5b6000600a5414158015611f355750600a544210155b8015611f43575042600b5410155b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614523565b60405180910390fd5b8060095481611f8f610d71565b611f9991906146ee565b1115611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190614543565b60405180910390fd5b818066f8b0a10e470000611fee9190614775565b341461202f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612026906144c3565b60405180910390fd5b6005811115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90614483565b60405180910390fd5b61207d3384612d69565b5050600160078190555050565b612092612792565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612104612792565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b1612792565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f69190614344565b60405180910390a35050565b61220d84848461284c565b612219848484846130f5565b61224f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606122608261272a565b612296576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122a0613283565b90506000815114156122c157604051806020016040528060008152506122ec565b806122cb84613315565b6040516020016122dc929190614297565b6040516020818303038152906040525b915050919050565b600d5481565b612302612792565b73ffffffffffffffffffffffffffffffffffffffff16612320611da3565b73ffffffffffffffffffffffffffffffffffffffff1614612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906144a3565b60405180910390fd5b80600a819055507fa70165ffd4e614a6a84ff941e73dbdbfa0ccff9aee88b3361574abd4779b460e600a546040516123ae9190614563565b60405180910390a150565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b612473612792565b73ffffffffffffffffffffffffffffffffffffffff16612491611da3565b73ffffffffffffffffffffffffffffffffffffffff16146124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de906144a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e906143e3565b60405180910390fd5b6125608161302f565b50565b600c5481565b612571612792565b73ffffffffffffffffffffffffffffffffffffffff1661258f611da3565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc906144a3565b60405180910390fd5b60005b825181101561267f5781818151811061260457612603614a30565b5b602002602001015160ff16600f600085848151811061262657612625614a30565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061267790614929565b9150506125e8565b507f376a53fd8bb66b4f62ea964db35dacccf566eafbbb0e1ce31c871b0b3a5e548c826040516126af9190614322565b60405180910390a15050565b604781565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561278b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061285782612d87565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287e612792565b73ffffffffffffffffffffffffffffffffffffffff1614806128b157506128b082600001516128ab612792565b6123bf565b5b806128f657506128bf612792565b73ffffffffffffffffffffffffffffffffffffffff166128de84610bea565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061292f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612998576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a0c8585856001613476565b612a1c600084846000015161279a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cf95760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612cf85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d62858585600161347c565b5050505050565b612d83828260405180602001604052806000815250613482565b5050565b612d8f6138d3565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ff8576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ff657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eda57809250505061302a565b5b600115612ff557818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ff057809250505061302a565b612edb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131168473ffffffffffffffffffffffffffffffffffffffff16613494565b15613276578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313f612792565b8786866040518563ffffffff1660e01b815260040161316194939291906142d6565b602060405180830381600087803b15801561317b57600080fd5b505af19250505080156131ac57506040513d601f19601f820116820180604052508101906131a99190613e35565b60015b613226573d80600081146131dc576040519150601f19603f3d011682016040523d82523d6000602084013e6131e1565b606091505b5060008151141561321e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061327b565b600190505b949350505050565b6060600e8054613292906148c6565b80601f01602080910402602001604051908101604052809291908181526020018280546132be906148c6565b801561330b5780601f106132e05761010080835404028352916020019161330b565b820191906000526020600020905b8154815290600101906020018083116132ee57829003601f168201915b5050505050905090565b6060600082141561335d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613471565b600082905060005b6000821461338f57808061337890614929565b915050600a826133889190614744565b9150613365565b60008167ffffffffffffffff8111156133ab576133aa614a5f565b5b6040519080825280601f01601f1916602001820160405280156133dd5781602001600182028036833780820191505090505b5090505b6000851461346a576001826133f691906147cf565b9150600a856134059190614972565b603061341191906146ee565b60f81b81838151811061342757613426614a30565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134639190614744565b94506133e1565b8093505050505b919050565b50505050565b50505050565b61348f83838360016134b7565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613552576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561358d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61359a6000868387613476565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137ff57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156137b357506137b160008884886130f5565b155b156137ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613738565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613846600086838761347c565b5050505050565b828054613859906148c6565b90600052602060002090601f01602090048101928261387b57600085556138c2565b82601f1061389457805160ff19168380011785556138c2565b828001600101855582156138c2579182015b828111156138c15782518255916020019190600101906138a6565b5b5090506138cf9190613916565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561392f576000816000905550600101613917565b5090565b6000613946613941846145a3565b61457e565b9050808382526020820190508285602086028201111561396957613968614a93565b5b60005b85811015613999578161397f8882613a97565b84526020840193506020830192505060018101905061396c565b5050509392505050565b60006139b66139b1846145cf565b61457e565b905080838252602082019050828560208602820111156139d9576139d8614a93565b5b60005b85811015613a0957816139ef8882613bb8565b8452602084019350602083019250506001810190506139dc565b5050509392505050565b6000613a26613a21846145fb565b61457e565b905082815260208101848484011115613a4257613a41614a98565b5b613a4d848285614884565b509392505050565b6000613a68613a638461462c565b61457e565b905082815260208101848484011115613a8457613a83614a98565b5b613a8f848285614884565b509392505050565b600081359050613aa681614e98565b92915050565b600082601f830112613ac157613ac0614a8e565b5b8135613ad1848260208601613933565b91505092915050565b600082601f830112613aef57613aee614a8e565b5b8135613aff8482602086016139a3565b91505092915050565b600081359050613b1781614eaf565b92915050565b600081359050613b2c81614ec6565b92915050565b600081519050613b4181614ec6565b92915050565b600082601f830112613b5c57613b5b614a8e565b5b8135613b6c848260208601613a13565b91505092915050565b600082601f830112613b8a57613b89614a8e565b5b8135613b9a848260208601613a55565b91505092915050565b600081359050613bb281614edd565b92915050565b600081359050613bc781614ef4565b92915050565b600060208284031215613be357613be2614aa2565b5b6000613bf184828501613a97565b91505092915050565b60008060408385031215613c1157613c10614aa2565b5b6000613c1f85828601613a97565b9250506020613c3085828601613a97565b9150509250929050565b600080600060608486031215613c5357613c52614aa2565b5b6000613c6186828701613a97565b9350506020613c7286828701613a97565b9250506040613c8386828701613ba3565b9150509250925092565b60008060008060808587031215613ca757613ca6614aa2565b5b6000613cb587828801613a97565b9450506020613cc687828801613a97565b9350506040613cd787828801613ba3565b925050606085013567ffffffffffffffff811115613cf857613cf7614a9d565b5b613d0487828801613b47565b91505092959194509250565b60008060408385031215613d2757613d26614aa2565b5b6000613d3585828601613a97565b9250506020613d4685828601613b08565b9150509250929050565b60008060408385031215613d6757613d66614aa2565b5b6000613d7585828601613a97565b9250506020613d8685828601613ba3565b9150509250929050565b60008060408385031215613da757613da6614aa2565b5b600083013567ffffffffffffffff811115613dc557613dc4614a9d565b5b613dd185828601613aac565b925050602083013567ffffffffffffffff811115613df257613df1614a9d565b5b613dfe85828601613ada565b9150509250929050565b600060208284031215613e1e57613e1d614aa2565b5b6000613e2c84828501613b1d565b91505092915050565b600060208284031215613e4b57613e4a614aa2565b5b6000613e5984828501613b32565b91505092915050565b600060208284031215613e7857613e77614aa2565b5b600082013567ffffffffffffffff811115613e9657613e95614a9d565b5b613ea284828501613b75565b91505092915050565b600060208284031215613ec157613ec0614aa2565b5b6000613ecf84828501613ba3565b91505092915050565b6000613ee48383613ef0565b60208301905092915050565b613ef981614803565b82525050565b613f0881614803565b82525050565b6000613f1982614682565b613f2381856146b0565b9350613f2e8361465d565b8060005b83811015613f5f578151613f468882613ed8565b9750613f51836146a3565b925050600181019050613f32565b5085935050505092915050565b613f7581614815565b82525050565b6000613f868261468d565b613f9081856146c1565b9350613fa0818560208601614893565b613fa981614aa7565b840191505092915050565b6000613fbf82614698565b613fc981856146d2565b9350613fd9818560208601614893565b613fe281614aa7565b840191505092915050565b6000613ff882614698565b61400281856146e3565b9350614012818560208601614893565b80840191505092915050565b6000815461402b816148c6565b61403581866146d2565b94506001821660008114614050576001811461406257614095565b60ff1983168652602086019350614095565b61406b8561466d565b60005b8381101561408d5781548189015260018201915060208101905061406e565b808801955050505b50505092915050565b60006140ab601d836146d2565b91506140b682614ab8565b602082019050919050565b60006140ce6024836146d2565b91506140d982614ae1565b604082019050919050565b60006140f16026836146d2565b91506140fc82614b30565b604082019050919050565b6000614114602f836146d2565b915061411f82614b7f565b604082019050919050565b60006141376026836146d2565b915061414282614bce565b604082019050919050565b600061415a6024836146d2565b915061416582614c1d565b604082019050919050565b600061417d6030836146d2565b915061418882614c6c565b604082019050919050565b60006141a06027836146d2565b91506141ab82614cbb565b604082019050919050565b60006141c36020836146d2565b91506141ce82614d0a565b602082019050919050565b60006141e6602e836146d2565b91506141f182614d33565b604082019050919050565b6000614209602d836146d2565b915061421482614d82565b604082019050919050565b600061422c601f836146d2565b915061423782614dd1565b602082019050919050565b600061424f6023836146d2565b915061425a82614dfa565b604082019050919050565b60006142726034836146d2565b915061427d82614e49565b604082019050919050565b6142918161486d565b82525050565b60006142a38285613fed565b91506142af8284613fed565b91508190509392505050565b60006020820190506142d06000830184613eff565b92915050565b60006080820190506142eb6000830187613eff565b6142f86020830186613eff565b6143056040830185614288565b81810360608301526143178184613f7b565b905095945050505050565b6000602082019050818103600083015261433c8184613f0e565b905092915050565b60006020820190506143596000830184613f6c565b92915050565b600060208201905081810360008301526143798184613fb4565b905092915050565b6000602082019050818103600083015261439b818461401e565b905092915050565b600060208201905081810360008301526143bc8161409e565b9050919050565b600060208201905081810360008301526143dc816140c1565b9050919050565b600060208201905081810360008301526143fc816140e4565b9050919050565b6000602082019050818103600083015261441c81614107565b9050919050565b6000602082019050818103600083015261443c8161412a565b9050919050565b6000602082019050818103600083015261445c8161414d565b9050919050565b6000602082019050818103600083015261447c81614170565b9050919050565b6000602082019050818103600083015261449c81614193565b9050919050565b600060208201905081810360008301526144bc816141b6565b9050919050565b600060208201905081810360008301526144dc816141d9565b9050919050565b600060208201905081810360008301526144fc816141fc565b9050919050565b6000602082019050818103600083015261451c8161421f565b9050919050565b6000602082019050818103600083015261453c81614242565b9050919050565b6000602082019050818103600083015261455c81614265565b9050919050565b60006020820190506145786000830184614288565b92915050565b6000614588614599565b905061459482826148f8565b919050565b6000604051905090565b600067ffffffffffffffff8211156145be576145bd614a5f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145ea576145e9614a5f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561461657614615614a5f565b5b61461f82614aa7565b9050602081019050919050565b600067ffffffffffffffff82111561464757614646614a5f565b5b61465082614aa7565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f98261486d565b91506147048361486d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614739576147386149a3565b5b828201905092915050565b600061474f8261486d565b915061475a8361486d565b92508261476a576147696149d2565b5b828204905092915050565b60006147808261486d565b915061478b8361486d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c4576147c36149a3565b5b828202905092915050565b60006147da8261486d565b91506147e58361486d565b9250828210156147f8576147f76149a3565b5b828203905092915050565b600061480e8261484d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148b1578082015181840152602081019050614896565b838111156148c0576000848401525b50505050565b600060028204905060018216806148de57607f821691505b602082108114156148f2576148f1614a01565b5b50919050565b61490182614aa7565b810181811067ffffffffffffffff821117156149205761491f614a5f565b5b80604052505050565b60006149348261486d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614967576149666149a3565b5b600182019050919050565b600061497d8261486d565b91506149888361486d565b925082614998576149976149d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43484f4e4b5a3a2043616c6c6572206973206120636f6e74726163742e000000600082015250565b7f43484f4e4b5a3a2045786365656473206d617820706f737369626c652073757060008201527f706c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20596f75277265206e6f74206f6e20746865206c697374206660008201527f6f72207468652070726573616c652e0000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a204578636565647320616c6c6f636174696f6e20666f72207760008201527f616c6c65742e0000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20507269766174652073616c65206e6f74206163746976652060008201527f7369722e00000000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a204578636565647320616c6c6f636174696f6e20666f72206460008201527f6576656c6f7065722077616c6c65742e00000000000000000000000000000000602082015250565b7f43484f4e4b5a3a2045786365656473207472616e73616374696f6e206d696e7460008201527f206c696d69742e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43484f4e4b5a3a2045746865722076616c756520646f6573206e6f74206d656560008201527f7420726571756972656d656e742e000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20536f7272792c20696e73756666696369656e74207375707060008201527f6c792072656d61696e696e672e00000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f43484f4e4b5a3a205075626c69632073616c65206e6f7420616374697665207360008201527f69722e0000000000000000000000000000000000000000000000000000000000602082015250565b7f43484f4e4b5a3a20536f7272792c20696e73756666696369656e74207075626c60008201527f696320737570706c792072656d61696e696e672e000000000000000000000000602082015250565b614ea181614803565b8114614eac57600080fd5b50565b614eb881614815565b8114614ec357600080fd5b50565b614ecf81614821565b8114614eda57600080fd5b50565b614ee68161486d565b8114614ef157600080fd5b50565b614efd81614877565b8114614f0857600080fd5b5056fea264697066735822122090338a2cf170f3717cd01b24b069def2ae44b93bccf22e87d0f55f26ad4084e664736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000643484f4e4b5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643484f4e4b5a0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CHONKZ
Arg [1] : symbol_ (string): CHONKZ

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 43484f4e4b5a0000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 43484f4e4b5a0000000000000000000000000000000000000000000000000000


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.