ETH Price: $3,455.95 (-0.90%)
Gas: 2 Gwei

Token

NoNos (NONOS)
 

Overview

Max Total Supply

8,500 NONOS

Holders

1,580

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 NONOS
0x59008f0afb74047b4ac82d756832dd4fb87fc3ca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

No No’s is a community-driven collectibles NFT project of 8500 No No's. We've said Yes for too long, it’s time to say some No’s. We came from a galaxy faraway and we’re conducting some stops throughout our journey. We would love for you to join us! Or No No?

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoNos

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

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

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/*

     .-') _                         .-') _                .-')    
    ( OO ) )                       ( OO ) )              ( OO ).  
,--./ ,--,'  .-'),-----.       ,--./ ,--,'  .-'),-----. (_)---\_) 
|   \ |  |\ ( OO'  .-.  '      |   \ |  |\ ( OO'  .-.  '/    _ |  
|    \|  | )/   |  | |  |      |    \|  | )/   |  | |  |\  :` `.  
|  .     |/ \_) |  |\|  |      |  .     |/ \_) |  |\|  | '..`''.) 
|  |\    |    \ |  | |  |      |  |\    |    \ |  | |  |.-._)   \ 
|  | \   |     `'  '-'  '      |  | \   |     `'  '-'  '\       / 
`--'  `--'       `-----'       `--'  `--'       `-----'  `-----'  

No Nos Dev - @nonos_nft
nonosnft.com

*/

contract NoNos is ERC721A, Ownable {
    string private _baseTokenURI;
    uint256 private _price = 0.06 ether;
    uint256 private _maxNoNos = 10001;
    uint256 private _maxTX = 3;
    uint256 private _maxNoNosPerAddressDuringMint = 3;
    bool public _pausedPublic = true;
    bool public _pausedPrivate = true;
    uint256 private _publicSaleKey = 707;

    //NO NO LIST
    bytes32 public _nonoListRoot =
        0x6e337f837f55c7cb65aa1479873ebb78f9b696009993700a71b94ca4fff9e8a9;

    //No No Provenance
    string public _nonoProvenance =
        "97483f2fe73dbcb16c261cf1a8258effdfa26e15e389c1000f368145ca754a9f";

    constructor() ERC721A("NoNos", "NONOS") {}

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

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setNoNoListRoot(bytes32 nonoListRoot) external onlyOwner {
        _nonoListRoot = nonoListRoot;
    }

    function setNewProvenance(string memory newProvenance) external onlyOwner {
        _nonoProvenance = newProvenance;
    }

    function buyTicketNoNoList(uint256 quantity, bytes32[] calldata merkleProof)
        external
        payable
        callerIsUser
    {
        require(!_pausedPrivate, "No No List sale is Paused.");
        require(
            quantity < _maxTX,
            "Exceeds maximum of No Nos per transaction."
        );
        require(
            totalSupply() + quantity < _maxNoNos,
            "Reached maximum capacity of No Nos in the Spaceship!"
        );
        require(
            numberMinted(msg.sender) + quantity < _maxNoNosPerAddressDuringMint,
            "Can not mint this many No Nos."
        );
        require(msg.value >= _price * quantity, "Ether sent is not correct.");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, _nonoListRoot, leaf),
            "This wallet is not in the No No List."
        );
        _safeMint(msg.sender, quantity);
    }

    function buyTicket(uint256 quantity, uint256 callerPublicSaleKey)
        external
        payable
        callerIsUser
    {
        require(
            _publicSaleKey == callerPublicSaleKey,
            "Wrong Secret Sale Key."
        );
        require(!_pausedPublic, "Public sale is Paused.");
        require(
            quantity < _maxTX,
            "Exceeds maximum of No Nos per transaction."
        );
        require(
            totalSupply() + quantity < _maxNoNos,
            "Reached maximum capacity of No Nos in the Spaceship!"
        );
        require(
            numberMinted(msg.sender) + quantity < _maxNoNosPerAddressDuringMint,
            "Can not mint this many No Nos."
        );
        require(msg.value >= _price * quantity, "Ether sent is not correct.");

        _safeMint(msg.sender, quantity);
    }

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

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

    function giveAwayTickets(address _to, uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity < _maxNoNos,
            "Reached maximum capacity of No Nos in the Spaceship!"
        );
        _safeMint(_to, quantity);
    }

    function setSaleKey(uint256 _newSaleKey) public onlyOwner {
        _publicSaleKey = _newSaleKey;
    }

    function pausePublic(bool val) public onlyOwner {
        _pausedPublic = val;
    }

    function pausePrivate(bool val) public onlyOwner {
        _pausedPrivate = val;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function setMaxNoNosPerAddress(uint256 _newMax) public onlyOwner {
        _maxNoNosPerAddressDuringMint = _newMax;
    }

    function getMaxNoNosPerAddress() public view returns (uint256) {
        return _maxNoNosPerAddressDuringMint;
    }

    function setMaxNoNos(uint256 _newMax) public onlyOwner {
        _maxNoNos = _newMax;
    }

    function getMaxNoNos() public view returns (uint256) {
        return _maxNoNos;
    }

    function setMaxTX(uint256 _newMaxTX) public onlyOwner {
        _maxTX = _newMaxTX;
    }

    function getMaxTX() public view returns (uint256) {
        return _maxTX;
    }

    function withdrawAll() public onlyOwner {
        uint256 _balance = address(this).balance;
        payable(msg.sender).transfer(_balance);
    }
}

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 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintedQueryForZeroAddress","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":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_nonoListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nonoProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pausedPrivate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pausedPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"buyTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"buyTicketNoNoList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxNoNos","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxNoNosPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveAwayTickets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pausePrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pausePublic","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxNoNos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxNoNosPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxTX","type":"uint256"}],"name":"setMaxTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenance","type":"string"}],"name":"setNewProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"nonoListRoot","type":"bytes32"}],"name":"setNoNoListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSaleKey","type":"uint256"}],"name":"setSaleKey","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600955612711600a556003600b556003600c556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506102c3600e557f6e337f837f55c7cb65aa1479873ebb78f9b696009993700a71b94ca4fff9e8a960001b600f556040518060600160405280604081526020016200501a6040913960109080519060200190620000b392919062000256565b50348015620000c157600080fd5b506040518060400160405280600581526020017f4e6f4e6f730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e4f4e4f5300000000000000000000000000000000000000000000000000000081525081600190805190602001906200014692919062000256565b5080600290805190602001906200015f92919062000256565b50505062000182620001766200018860201b60201c565b6200019060201b60201c565b6200036a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002649062000335565b90600052602060002090601f016020900481019282620002885760008555620002d4565b82601f10620002a357805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d3578251825591602001919060010190620002b6565b5b509050620002e39190620002e7565b5090565b5b8082111562000302576000816000905550600101620002e8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034e57607f821691505b60208210810362000364576200036362000306565b5b50919050565b614ca0806200037a6000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063ac52bfd0116100b6578063d50b0dca1161007a578063d50b0dca146108c6578063dc33e681146108f1578063e50fcd251461092e578063e985e9c514610957578063f2fde38b14610994578063f79c173f146109bd5761025c565b8063ac52bfd0146107f2578063b587454b1461081b578063b88d4fde14610837578063c7db371f14610860578063c87b56dd146108895761025c565b806391b7f5ed1161010857806391b7f5ed146106e4578063920fc2b41461070d5780639231ab2a1461073657806395d89b411461077357806398d5fdca1461079e578063a22cb465146107c95761025c565b8063715018a61461063757806376367ca21461064e578063853828b6146106775780638c99e3521461068e5780638da5cb5b146106b95761025c565b8063298ec208116101dd5780634e4ff49b116101a15780634e4ff49b146105015780634f6ccce71461052c57806355f804b3146105695780636352211e146105925780636ebd0078146105cf57806370a08231146105fa5761025c565b8063298ec2081461042b5780632f745c5914610447578063333c39a51461048457806334d87bc7146104ad57806342842e0e146104d85761025c565b80631c561ece116102245780631c561ece1461035a5780632265cb2e1461038357806323b872dd146103ac57806325200120146103d55780632598d5c3146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613984565b6109e6565b60405161029591906139cc565b60405180910390f35b3480156102aa57600080fd5b506102b3610b30565b6040516102c09190613a80565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613ad8565b610bc2565b6040516102fd9190613b46565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b8d565b610c3e565b005b34801561033b57600080fd5b50610344610d48565b6040516103519190613bdc565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613ad8565b610d9d565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613c23565b610e23565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613c50565b610ebc565b005b3480156103e157600080fd5b506103ea610ecc565b6040516103f79190613a80565b60405180910390f35b34801561040c57600080fd5b50610415610f5a565b60405161042291906139cc565b60405180910390f35b61044560048036038101906104409190613ca3565b610f6d565b005b34801561045357600080fd5b5061046e60048036038101906104699190613b8d565b6111be565b60405161047b9190613bdc565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613ad8565b6113c3565b005b3480156104b957600080fd5b506104c2611449565b6040516104cf9190613bdc565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c50565b611453565b005b34801561050d57600080fd5b50610516611473565b6040516105239190613cfc565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613ad8565b611479565b6040516105609190613bdc565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613d7c565b6115e9565b005b34801561059e57600080fd5b506105b960048036038101906105b49190613ad8565b61167b565b6040516105c69190613b46565b60405180910390f35b3480156105db57600080fd5b506105e4611691565b6040516105f19190613bdc565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613dc9565b61169b565b60405161062e9190613bdc565b60405180910390f35b34801561064357600080fd5b5061064c61176a565b005b34801561065a57600080fd5b5061067560048036038101906106709190613e22565b6117f2565b005b34801561068357600080fd5b5061068c611878565b005b34801561069a57600080fd5b506106a3611943565b6040516106b091906139cc565b60405180910390f35b3480156106c557600080fd5b506106ce611956565b6040516106db9190613b46565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613ad8565b611980565b005b34801561071957600080fd5b50610734600480360381019061072f9190613b8d565b611a06565b005b34801561074257600080fd5b5061075d60048036038101906107589190613ad8565b611ae6565b60405161076a9190613ed2565b60405180910390f35b34801561077f57600080fd5b50610788611afe565b6040516107959190613a80565b60405180910390f35b3480156107aa57600080fd5b506107b3611b90565b6040516107c09190613bdc565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613eed565b611b9a565b005b3480156107fe57600080fd5b506108196004803603810190610814919061405d565b611d11565b005b610835600480360381019061083091906140fc565b611da7565b005b34801561084357600080fd5b5061085e600480360381019061085991906141fd565b61206e565b005b34801561086c57600080fd5b5061088760048036038101906108829190613ad8565b6120c1565b005b34801561089557600080fd5b506108b060048036038101906108ab9190613ad8565b612147565b6040516108bd9190613a80565b60405180910390f35b3480156108d257600080fd5b506108db6121e5565b6040516108e89190613bdc565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613dc9565b6121ef565b6040516109259190613bdc565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613ad8565b612201565b005b34801561096357600080fd5b5061097e60048036038101906109799190614280565b612287565b60405161098b91906139cc565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190613dc9565b61231b565b005b3480156109c957600080fd5b506109e460048036038101906109df9190613c23565b612412565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b295750610b28826124ab565b5b9050919050565b606060018054610b3f906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6b906142ef565b8015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b5050505050905090565b6000610bcd82612515565b610c03576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c498261167b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ccf61257d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d015750610cff81610cfa61257d565b612287565b155b15610d38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d43838383612585565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610da561257d565b73ffffffffffffffffffffffffffffffffffffffff16610dc3611956565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e109061436c565b60405180910390fd5b80600c8190555050565b610e2b61257d565b73ffffffffffffffffffffffffffffffffffffffff16610e49611956565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061436c565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b610ec7838383612637565b505050565b60108054610ed9906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610f05906142ef565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906143d8565b60405180910390fd5b80600e541461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614444565b60405180910390fd5b600d60009054906101000a900460ff161561106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906144b0565b60405180910390fd5b600b5482106110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614542565b60405180910390fd5b600a54826110bf610d48565b6110c99190614591565b10611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090614659565b60405180910390fd5b600c5482611116336121ef565b6111209190614591565b10611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906146c5565b60405180910390fd5b8160095461116e91906146e5565b3410156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a79061478b565b60405180910390fd5b6111ba3383612b52565b5050565b60006111c98361169b565b8210611201576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156113b7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561131857506113aa565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461135857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113a85786840361139f5781955050505050506113bd565b83806001019450505b505b808060010191505061123b565b50600080fd5b92915050565b6113cb61257d565b73ffffffffffffffffffffffffffffffffffffffff166113e9611956565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061436c565b60405180910390fd5b80600b8190555050565b6000600a54905090565b61146e8383836040518060200160405280600081525061206e565b505050565b600f5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156115b1576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516115a35785830361159a57819450505050506115e4565b82806001019350505b5080806001019150506114b1565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6115f161257d565b73ffffffffffffffffffffffffffffffffffffffff1661160f611956565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061436c565b60405180910390fd5b8181600891906116769291906137ac565b505050565b600061168682612b70565b600001519050919050565b6000600b54905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611702576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61177261257d565b73ffffffffffffffffffffffffffffffffffffffff16611790611956565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061436c565b60405180910390fd5b6117f06000612e18565b565b6117fa61257d565b73ffffffffffffffffffffffffffffffffffffffff16611818611956565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061436c565b60405180910390fd5b80600f8190555050565b61188061257d565b73ffffffffffffffffffffffffffffffffffffffff1661189e611956565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb9061436c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561193f573d6000803e3d6000fd5b5050565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61198861257d565b73ffffffffffffffffffffffffffffffffffffffff166119a6611956565b73ffffffffffffffffffffffffffffffffffffffff16146119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f39061436c565b60405180910390fd5b8060098190555050565b611a0e61257d565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611956565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061436c565b60405180910390fd5b600a5481611a8e610d48565b611a989190614591565b10611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614659565b60405180910390fd5b611ae28282612b52565b5050565b611aee613832565b611af782612b70565b9050919050565b606060028054611b0d906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611b39906142ef565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b6000600954905090565b611ba261257d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c06576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611c1361257d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cc061257d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d0591906139cc565b60405180910390a35050565b611d1961257d565b73ffffffffffffffffffffffffffffffffffffffff16611d37611956565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849061436c565b60405180910390fd5b8060109080519060200190611da3929190613875565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c906143d8565b60405180910390fd5b600d60019054906101000a900460ff1615611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c906147f7565b60405180910390fd5b600b548310611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614542565b60405180910390fd5b600a5483611eb5610d48565b611ebf9190614591565b10611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614659565b60405180910390fd5b600c5483611f0c336121ef565b611f169190614591565b10611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906146c5565b60405180910390fd5b82600954611f6491906146e5565b341015611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061478b565b60405180910390fd5b600033604051602001611fb9919061485f565b60405160208183030381529060405280519060200120905061201f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612ede565b61205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906148ec565b60405180910390fd5b6120683385612b52565b50505050565b612079848484612637565b61208584848484612ef5565b6120bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6120c961257d565b73ffffffffffffffffffffffffffffffffffffffff166120e7611956565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121349061436c565b60405180910390fd5b80600a8190555050565b606061215282612515565b612188576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612192613073565b905060008151036121b257604051806020016040528060008152506121dd565b806121bc84613105565b6040516020016121cd929190614948565b6040516020818303038152906040525b915050919050565b6000600c54905090565b60006121fa82613265565b9050919050565b61220961257d565b73ffffffffffffffffffffffffffffffffffffffff16612227611956565b73ffffffffffffffffffffffffffffffffffffffff161461227d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122749061436c565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61232361257d565b73ffffffffffffffffffffffffffffffffffffffff16612341611956565b73ffffffffffffffffffffffffffffffffffffffff1614612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e9061436c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd906149de565b60405180910390fd5b61240f81612e18565b50565b61241a61257d565b73ffffffffffffffffffffffffffffffffffffffff16612438611956565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124859061436c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612576575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061264282612b70565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661266961257d565b73ffffffffffffffffffffffffffffffffffffffff16148061269c575061269b826000015161269661257d565b612287565b5b806126e157506126aa61257d565b73ffffffffffffffffffffffffffffffffffffffff166126c984610bc2565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612783576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127e9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f68585856001613334565b6128066000848460000151612585565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ae25760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ae15782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4b858585600161333a565b5050505050565b612b6c828260405180602001604052806000815250613340565b5050565b612b78613832565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612de1576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ddf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cc3578092505050612e13565b5b600115612dde57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dd9578092505050612e13565b612cc4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612eeb8584613352565b1490509392505050565b6000612f168473ffffffffffffffffffffffffffffffffffffffff16613405565b15613066578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3f61257d565b8786866040518563ffffffff1660e01b8152600401612f619493929190614a53565b6020604051808303816000875af1925050508015612f9d57506040513d601f19601f82011682018060405250810190612f9a9190614ab4565b60015b613016573d8060008114612fcd576040519150601f19603f3d011682016040523d82523d6000602084013e612fd2565b606091505b50600081510361300e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061306b565b600190505b949350505050565b606060088054613082906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546130ae906142ef565b80156130fb5780601f106130d0576101008083540402835291602001916130fb565b820191906000526020600020905b8154815290600101906020018083116130de57829003601f168201915b5050505050905090565b60606000820361314c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613260565b600082905060005b6000821461317e57808061316790614ae1565b915050600a826131779190614b58565b9150613154565b60008167ffffffffffffffff81111561319a57613199613f32565b5b6040519080825280601f01601f1916602001820160405280156131cc5781602001600182028036833780820191505090505b5090505b60008514613259576001826131e59190614b89565b9150600a856131f49190614bbd565b60306132009190614591565b60f81b81838151811061321657613215614bee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132529190614b58565b94506131d0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132cc576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b61334d8383836001613418565b505050565b60008082905060005b84518110156133fa57600085828151811061337957613378614bee565b5b602002602001015190508083116133ba57828160405160200161339d929190614c3e565b6040516020818303038152906040528051906020012092506133e6565b80836040516020016133cd929190614c3e565b6040516020818303038152906040528051906020012092505b5080806133f290614ae1565b91505061335b565b508091505092915050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036134b2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036134ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f96000868387613334565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561375e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561371257506137106000888488612ef5565b155b15613749576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613697565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506137a5600086838761333a565b5050505050565b8280546137b8906142ef565b90600052602060002090601f0160209004810192826137da5760008555613821565b82601f106137f357803560ff1916838001178555613821565b82800160010185558215613821579182015b82811115613820578235825591602001919060010190613805565b5b50905061382e91906138fb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b828054613881906142ef565b90600052602060002090601f0160209004810192826138a357600085556138ea565b82601f106138bc57805160ff19168380011785556138ea565b828001600101855582156138ea579182015b828111156138e95782518255916020019190600101906138ce565b5b5090506138f791906138fb565b5090565b5b808211156139145760008160009055506001016138fc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139618161392c565b811461396c57600080fd5b50565b60008135905061397e81613958565b92915050565b60006020828403121561399a57613999613922565b5b60006139a88482850161396f565b91505092915050565b60008115159050919050565b6139c6816139b1565b82525050565b60006020820190506139e160008301846139bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a21578082015181840152602081019050613a06565b83811115613a30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a52826139e7565b613a5c81856139f2565b9350613a6c818560208601613a03565b613a7581613a36565b840191505092915050565b60006020820190508181036000830152613a9a8184613a47565b905092915050565b6000819050919050565b613ab581613aa2565b8114613ac057600080fd5b50565b600081359050613ad281613aac565b92915050565b600060208284031215613aee57613aed613922565b5b6000613afc84828501613ac3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b3082613b05565b9050919050565b613b4081613b25565b82525050565b6000602082019050613b5b6000830184613b37565b92915050565b613b6a81613b25565b8114613b7557600080fd5b50565b600081359050613b8781613b61565b92915050565b60008060408385031215613ba457613ba3613922565b5b6000613bb285828601613b78565b9250506020613bc385828601613ac3565b9150509250929050565b613bd681613aa2565b82525050565b6000602082019050613bf16000830184613bcd565b92915050565b613c00816139b1565b8114613c0b57600080fd5b50565b600081359050613c1d81613bf7565b92915050565b600060208284031215613c3957613c38613922565b5b6000613c4784828501613c0e565b91505092915050565b600080600060608486031215613c6957613c68613922565b5b6000613c7786828701613b78565b9350506020613c8886828701613b78565b9250506040613c9986828701613ac3565b9150509250925092565b60008060408385031215613cba57613cb9613922565b5b6000613cc885828601613ac3565b9250506020613cd985828601613ac3565b9150509250929050565b6000819050919050565b613cf681613ce3565b82525050565b6000602082019050613d116000830184613ced565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d3c57613d3b613d17565b5b8235905067ffffffffffffffff811115613d5957613d58613d1c565b5b602083019150836001820283011115613d7557613d74613d21565b5b9250929050565b60008060208385031215613d9357613d92613922565b5b600083013567ffffffffffffffff811115613db157613db0613927565b5b613dbd85828601613d26565b92509250509250929050565b600060208284031215613ddf57613dde613922565b5b6000613ded84828501613b78565b91505092915050565b613dff81613ce3565b8114613e0a57600080fd5b50565b600081359050613e1c81613df6565b92915050565b600060208284031215613e3857613e37613922565b5b6000613e4684828501613e0d565b91505092915050565b613e5881613b25565b82525050565b600067ffffffffffffffff82169050919050565b613e7b81613e5e565b82525050565b613e8a816139b1565b82525050565b606082016000820151613ea66000850182613e4f565b506020820151613eb96020850182613e72565b506040820151613ecc6040850182613e81565b50505050565b6000606082019050613ee76000830184613e90565b92915050565b60008060408385031215613f0457613f03613922565b5b6000613f1285828601613b78565b9250506020613f2385828601613c0e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f6a82613a36565b810181811067ffffffffffffffff82111715613f8957613f88613f32565b5b80604052505050565b6000613f9c613918565b9050613fa88282613f61565b919050565b600067ffffffffffffffff821115613fc857613fc7613f32565b5b613fd182613a36565b9050602081019050919050565b82818337600083830152505050565b6000614000613ffb84613fad565b613f92565b90508281526020810184848401111561401c5761401b613f2d565b5b614027848285613fde565b509392505050565b600082601f83011261404457614043613d17565b5b8135614054848260208601613fed565b91505092915050565b60006020828403121561407357614072613922565b5b600082013567ffffffffffffffff81111561409157614090613927565b5b61409d8482850161402f565b91505092915050565b60008083601f8401126140bc576140bb613d17565b5b8235905067ffffffffffffffff8111156140d9576140d8613d1c565b5b6020830191508360208202830111156140f5576140f4613d21565b5b9250929050565b60008060006040848603121561411557614114613922565b5b600061412386828701613ac3565b935050602084013567ffffffffffffffff81111561414457614143613927565b5b614150868287016140a6565b92509250509250925092565b600067ffffffffffffffff82111561417757614176613f32565b5b61418082613a36565b9050602081019050919050565b60006141a061419b8461415c565b613f92565b9050828152602081018484840111156141bc576141bb613f2d565b5b6141c7848285613fde565b509392505050565b600082601f8301126141e4576141e3613d17565b5b81356141f484826020860161418d565b91505092915050565b6000806000806080858703121561421757614216613922565b5b600061422587828801613b78565b945050602061423687828801613b78565b935050604061424787828801613ac3565b925050606085013567ffffffffffffffff81111561426857614267613927565b5b614274878288016141cf565b91505092959194509250565b6000806040838503121561429757614296613922565b5b60006142a585828601613b78565b92505060206142b685828601613b78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061430757607f821691505b60208210810361431a576143196142c0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143566020836139f2565b915061436182614320565b602082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006143c2601e836139f2565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f57726f6e67205365637265742053616c65204b65792e00000000000000000000600082015250565b600061442e6016836139f2565b9150614439826143f8565b602082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f5075626c69632073616c65206973205061757365642e00000000000000000000600082015250565b600061449a6016836139f2565b91506144a582614464565b602082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b7f45786365656473206d6178696d756d206f66204e6f204e6f732070657220747260008201527f616e73616374696f6e2e00000000000000000000000000000000000000000000602082015250565b600061452c602a836139f2565b9150614537826144d0565b604082019050919050565b6000602082019050818103600083015261455b8161451f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459c82613aa2565b91506145a783613aa2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145dc576145db614562565b5b828201905092915050565b7f52656163686564206d6178696d756d206361706163697479206f66204e6f204e60008201527f6f7320696e207468652053706163657368697021000000000000000000000000602082015250565b60006146436034836139f2565b915061464e826145e7565b604082019050919050565b6000602082019050818103600083015261467281614636565b9050919050565b7f43616e206e6f74206d696e742074686973206d616e79204e6f204e6f732e0000600082015250565b60006146af601e836139f2565b91506146ba82614679565b602082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b60006146f082613aa2565b91506146fb83613aa2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473457614733614562565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614775601a836139f2565b91506147808261473f565b602082019050919050565b600060208201905081810360008301526147a481614768565b9050919050565b7f4e6f204e6f204c6973742073616c65206973205061757365642e000000000000600082015250565b60006147e1601a836139f2565b91506147ec826147ab565b602082019050919050565b60006020820190508181036000830152614810816147d4565b9050919050565b60008160601b9050919050565b600061482f82614817565b9050919050565b600061484182614824565b9050919050565b61485961485482613b25565b614836565b82525050565b600061486b8284614848565b60148201915081905092915050565b7f546869732077616c6c6574206973206e6f7420696e20746865204e6f204e6f2060008201527f4c6973742e000000000000000000000000000000000000000000000000000000602082015250565b60006148d66025836139f2565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b600081905092915050565b6000614922826139e7565b61492c818561490c565b935061493c818560208601613a03565b80840191505092915050565b60006149548285614917565b91506149608284614917565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c86026836139f2565b91506149d38261496c565b604082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a25826149fe565b614a2f8185614a09565b9350614a3f818560208601613a03565b614a4881613a36565b840191505092915050565b6000608082019050614a686000830187613b37565b614a756020830186613b37565b614a826040830185613bcd565b8181036060830152614a948184614a1a565b905095945050505050565b600081519050614aae81613958565b92915050565b600060208284031215614aca57614ac9613922565b5b6000614ad884828501614a9f565b91505092915050565b6000614aec82613aa2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b1e57614b1d614562565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b6382613aa2565b9150614b6e83613aa2565b925082614b7e57614b7d614b29565b5b828204905092915050565b6000614b9482613aa2565b9150614b9f83613aa2565b925082821015614bb257614bb1614562565b5b828203905092915050565b6000614bc882613aa2565b9150614bd383613aa2565b925082614be357614be2614b29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614c38614c3382613ce3565b614c1d565b82525050565b6000614c4a8285614c27565b602082019150614c5a8284614c27565b602082019150819050939250505056fea2646970667358221220e95887fa00c0c5d0a4910f936bd53aeecb0a1622d3a577279c5278ef8281422164736f6c634300080d003339373438336632666537336462636231366332363163663161383235386566666466613236653135653338396331303030663336383134356361373534613966

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063ac52bfd0116100b6578063d50b0dca1161007a578063d50b0dca146108c6578063dc33e681146108f1578063e50fcd251461092e578063e985e9c514610957578063f2fde38b14610994578063f79c173f146109bd5761025c565b8063ac52bfd0146107f2578063b587454b1461081b578063b88d4fde14610837578063c7db371f14610860578063c87b56dd146108895761025c565b806391b7f5ed1161010857806391b7f5ed146106e4578063920fc2b41461070d5780639231ab2a1461073657806395d89b411461077357806398d5fdca1461079e578063a22cb465146107c95761025c565b8063715018a61461063757806376367ca21461064e578063853828b6146106775780638c99e3521461068e5780638da5cb5b146106b95761025c565b8063298ec208116101dd5780634e4ff49b116101a15780634e4ff49b146105015780634f6ccce71461052c57806355f804b3146105695780636352211e146105925780636ebd0078146105cf57806370a08231146105fa5761025c565b8063298ec2081461042b5780632f745c5914610447578063333c39a51461048457806334d87bc7146104ad57806342842e0e146104d85761025c565b80631c561ece116102245780631c561ece1461035a5780632265cb2e1461038357806323b872dd146103ac57806325200120146103d55780632598d5c3146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613984565b6109e6565b60405161029591906139cc565b60405180910390f35b3480156102aa57600080fd5b506102b3610b30565b6040516102c09190613a80565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613ad8565b610bc2565b6040516102fd9190613b46565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b8d565b610c3e565b005b34801561033b57600080fd5b50610344610d48565b6040516103519190613bdc565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613ad8565b610d9d565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613c23565b610e23565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613c50565b610ebc565b005b3480156103e157600080fd5b506103ea610ecc565b6040516103f79190613a80565b60405180910390f35b34801561040c57600080fd5b50610415610f5a565b60405161042291906139cc565b60405180910390f35b61044560048036038101906104409190613ca3565b610f6d565b005b34801561045357600080fd5b5061046e60048036038101906104699190613b8d565b6111be565b60405161047b9190613bdc565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613ad8565b6113c3565b005b3480156104b957600080fd5b506104c2611449565b6040516104cf9190613bdc565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c50565b611453565b005b34801561050d57600080fd5b50610516611473565b6040516105239190613cfc565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613ad8565b611479565b6040516105609190613bdc565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613d7c565b6115e9565b005b34801561059e57600080fd5b506105b960048036038101906105b49190613ad8565b61167b565b6040516105c69190613b46565b60405180910390f35b3480156105db57600080fd5b506105e4611691565b6040516105f19190613bdc565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613dc9565b61169b565b60405161062e9190613bdc565b60405180910390f35b34801561064357600080fd5b5061064c61176a565b005b34801561065a57600080fd5b5061067560048036038101906106709190613e22565b6117f2565b005b34801561068357600080fd5b5061068c611878565b005b34801561069a57600080fd5b506106a3611943565b6040516106b091906139cc565b60405180910390f35b3480156106c557600080fd5b506106ce611956565b6040516106db9190613b46565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613ad8565b611980565b005b34801561071957600080fd5b50610734600480360381019061072f9190613b8d565b611a06565b005b34801561074257600080fd5b5061075d60048036038101906107589190613ad8565b611ae6565b60405161076a9190613ed2565b60405180910390f35b34801561077f57600080fd5b50610788611afe565b6040516107959190613a80565b60405180910390f35b3480156107aa57600080fd5b506107b3611b90565b6040516107c09190613bdc565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613eed565b611b9a565b005b3480156107fe57600080fd5b506108196004803603810190610814919061405d565b611d11565b005b610835600480360381019061083091906140fc565b611da7565b005b34801561084357600080fd5b5061085e600480360381019061085991906141fd565b61206e565b005b34801561086c57600080fd5b5061088760048036038101906108829190613ad8565b6120c1565b005b34801561089557600080fd5b506108b060048036038101906108ab9190613ad8565b612147565b6040516108bd9190613a80565b60405180910390f35b3480156108d257600080fd5b506108db6121e5565b6040516108e89190613bdc565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613dc9565b6121ef565b6040516109259190613bdc565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190613ad8565b612201565b005b34801561096357600080fd5b5061097e60048036038101906109799190614280565b612287565b60405161098b91906139cc565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190613dc9565b61231b565b005b3480156109c957600080fd5b506109e460048036038101906109df9190613c23565b612412565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b295750610b28826124ab565b5b9050919050565b606060018054610b3f906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6b906142ef565b8015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b5050505050905090565b6000610bcd82612515565b610c03576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c498261167b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ccf61257d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d015750610cff81610cfa61257d565b612287565b155b15610d38576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d43838383612585565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610da561257d565b73ffffffffffffffffffffffffffffffffffffffff16610dc3611956565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e109061436c565b60405180910390fd5b80600c8190555050565b610e2b61257d565b73ffffffffffffffffffffffffffffffffffffffff16610e49611956565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061436c565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b610ec7838383612637565b505050565b60108054610ed9906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610f05906142ef565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906143d8565b60405180910390fd5b80600e541461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614444565b60405180910390fd5b600d60009054906101000a900460ff161561106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906144b0565b60405180910390fd5b600b5482106110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614542565b60405180910390fd5b600a54826110bf610d48565b6110c99190614591565b10611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090614659565b60405180910390fd5b600c5482611116336121ef565b6111209190614591565b10611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906146c5565b60405180910390fd5b8160095461116e91906146e5565b3410156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a79061478b565b60405180910390fd5b6111ba3383612b52565b5050565b60006111c98361169b565b8210611201576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156113b7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561131857506113aa565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461135857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113a85786840361139f5781955050505050506113bd565b83806001019450505b505b808060010191505061123b565b50600080fd5b92915050565b6113cb61257d565b73ffffffffffffffffffffffffffffffffffffffff166113e9611956565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061436c565b60405180910390fd5b80600b8190555050565b6000600a54905090565b61146e8383836040518060200160405280600081525061206e565b505050565b600f5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156115b1576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516115a35785830361159a57819450505050506115e4565b82806001019350505b5080806001019150506114b1565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6115f161257d565b73ffffffffffffffffffffffffffffffffffffffff1661160f611956565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061436c565b60405180910390fd5b8181600891906116769291906137ac565b505050565b600061168682612b70565b600001519050919050565b6000600b54905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611702576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61177261257d565b73ffffffffffffffffffffffffffffffffffffffff16611790611956565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061436c565b60405180910390fd5b6117f06000612e18565b565b6117fa61257d565b73ffffffffffffffffffffffffffffffffffffffff16611818611956565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061436c565b60405180910390fd5b80600f8190555050565b61188061257d565b73ffffffffffffffffffffffffffffffffffffffff1661189e611956565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb9061436c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561193f573d6000803e3d6000fd5b5050565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61198861257d565b73ffffffffffffffffffffffffffffffffffffffff166119a6611956565b73ffffffffffffffffffffffffffffffffffffffff16146119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f39061436c565b60405180910390fd5b8060098190555050565b611a0e61257d565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611956565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061436c565b60405180910390fd5b600a5481611a8e610d48565b611a989190614591565b10611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90614659565b60405180910390fd5b611ae28282612b52565b5050565b611aee613832565b611af782612b70565b9050919050565b606060028054611b0d906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611b39906142ef565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b6000600954905090565b611ba261257d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c06576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611c1361257d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cc061257d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d0591906139cc565b60405180910390a35050565b611d1961257d565b73ffffffffffffffffffffffffffffffffffffffff16611d37611956565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849061436c565b60405180910390fd5b8060109080519060200190611da3929190613875565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c906143d8565b60405180910390fd5b600d60019054906101000a900460ff1615611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c906147f7565b60405180910390fd5b600b548310611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090614542565b60405180910390fd5b600a5483611eb5610d48565b611ebf9190614591565b10611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614659565b60405180910390fd5b600c5483611f0c336121ef565b611f169190614591565b10611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906146c5565b60405180910390fd5b82600954611f6491906146e5565b341015611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061478b565b60405180910390fd5b600033604051602001611fb9919061485f565b60405160208183030381529060405280519060200120905061201f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612ede565b61205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906148ec565b60405180910390fd5b6120683385612b52565b50505050565b612079848484612637565b61208584848484612ef5565b6120bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6120c961257d565b73ffffffffffffffffffffffffffffffffffffffff166120e7611956565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121349061436c565b60405180910390fd5b80600a8190555050565b606061215282612515565b612188576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612192613073565b905060008151036121b257604051806020016040528060008152506121dd565b806121bc84613105565b6040516020016121cd929190614948565b6040516020818303038152906040525b915050919050565b6000600c54905090565b60006121fa82613265565b9050919050565b61220961257d565b73ffffffffffffffffffffffffffffffffffffffff16612227611956565b73ffffffffffffffffffffffffffffffffffffffff161461227d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122749061436c565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61232361257d565b73ffffffffffffffffffffffffffffffffffffffff16612341611956565b73ffffffffffffffffffffffffffffffffffffffff1614612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e9061436c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd906149de565b60405180910390fd5b61240f81612e18565b50565b61241a61257d565b73ffffffffffffffffffffffffffffffffffffffff16612438611956565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124859061436c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612576575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061264282612b70565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661266961257d565b73ffffffffffffffffffffffffffffffffffffffff16148061269c575061269b826000015161269661257d565b612287565b5b806126e157506126aa61257d565b73ffffffffffffffffffffffffffffffffffffffff166126c984610bc2565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612783576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127e9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f68585856001613334565b6128066000848460000151612585565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ae25760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ae15782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4b858585600161333a565b5050505050565b612b6c828260405180602001604052806000815250613340565b5050565b612b78613832565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612de1576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ddf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cc3578092505050612e13565b5b600115612dde57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dd9578092505050612e13565b612cc4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612eeb8584613352565b1490509392505050565b6000612f168473ffffffffffffffffffffffffffffffffffffffff16613405565b15613066578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3f61257d565b8786866040518563ffffffff1660e01b8152600401612f619493929190614a53565b6020604051808303816000875af1925050508015612f9d57506040513d601f19601f82011682018060405250810190612f9a9190614ab4565b60015b613016573d8060008114612fcd576040519150601f19603f3d011682016040523d82523d6000602084013e612fd2565b606091505b50600081510361300e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061306b565b600190505b949350505050565b606060088054613082906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546130ae906142ef565b80156130fb5780601f106130d0576101008083540402835291602001916130fb565b820191906000526020600020905b8154815290600101906020018083116130de57829003601f168201915b5050505050905090565b60606000820361314c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613260565b600082905060005b6000821461317e57808061316790614ae1565b915050600a826131779190614b58565b9150613154565b60008167ffffffffffffffff81111561319a57613199613f32565b5b6040519080825280601f01601f1916602001820160405280156131cc5781602001600182028036833780820191505090505b5090505b60008514613259576001826131e59190614b89565b9150600a856131f49190614bbd565b60306132009190614591565b60f81b81838151811061321657613215614bee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132529190614b58565b94506131d0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132cc576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b61334d8383836001613418565b505050565b60008082905060005b84518110156133fa57600085828151811061337957613378614bee565b5b602002602001015190508083116133ba57828160405160200161339d929190614c3e565b6040516020818303038152906040528051906020012092506133e6565b80836040516020016133cd929190614c3e565b6040516020818303038152906040528051906020012092505b5080806133f290614ae1565b91505061335b565b508091505092915050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036134b2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036134ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f96000868387613334565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561375e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561371257506137106000888488612ef5565b155b15613749576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613697565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506137a5600086838761333a565b5050505050565b8280546137b8906142ef565b90600052602060002090601f0160209004810192826137da5760008555613821565b82601f106137f357803560ff1916838001178555613821565b82800160010185558215613821579182015b82811115613820578235825591602001919060010190613805565b5b50905061382e91906138fb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b828054613881906142ef565b90600052602060002090601f0160209004810192826138a357600085556138ea565b82601f106138bc57805160ff19168380011785556138ea565b828001600101855582156138ea579182015b828111156138e95782518255916020019190600101906138ce565b5b5090506138f791906138fb565b5090565b5b808211156139145760008160009055506001016138fc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139618161392c565b811461396c57600080fd5b50565b60008135905061397e81613958565b92915050565b60006020828403121561399a57613999613922565b5b60006139a88482850161396f565b91505092915050565b60008115159050919050565b6139c6816139b1565b82525050565b60006020820190506139e160008301846139bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a21578082015181840152602081019050613a06565b83811115613a30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a52826139e7565b613a5c81856139f2565b9350613a6c818560208601613a03565b613a7581613a36565b840191505092915050565b60006020820190508181036000830152613a9a8184613a47565b905092915050565b6000819050919050565b613ab581613aa2565b8114613ac057600080fd5b50565b600081359050613ad281613aac565b92915050565b600060208284031215613aee57613aed613922565b5b6000613afc84828501613ac3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b3082613b05565b9050919050565b613b4081613b25565b82525050565b6000602082019050613b5b6000830184613b37565b92915050565b613b6a81613b25565b8114613b7557600080fd5b50565b600081359050613b8781613b61565b92915050565b60008060408385031215613ba457613ba3613922565b5b6000613bb285828601613b78565b9250506020613bc385828601613ac3565b9150509250929050565b613bd681613aa2565b82525050565b6000602082019050613bf16000830184613bcd565b92915050565b613c00816139b1565b8114613c0b57600080fd5b50565b600081359050613c1d81613bf7565b92915050565b600060208284031215613c3957613c38613922565b5b6000613c4784828501613c0e565b91505092915050565b600080600060608486031215613c6957613c68613922565b5b6000613c7786828701613b78565b9350506020613c8886828701613b78565b9250506040613c9986828701613ac3565b9150509250925092565b60008060408385031215613cba57613cb9613922565b5b6000613cc885828601613ac3565b9250506020613cd985828601613ac3565b9150509250929050565b6000819050919050565b613cf681613ce3565b82525050565b6000602082019050613d116000830184613ced565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d3c57613d3b613d17565b5b8235905067ffffffffffffffff811115613d5957613d58613d1c565b5b602083019150836001820283011115613d7557613d74613d21565b5b9250929050565b60008060208385031215613d9357613d92613922565b5b600083013567ffffffffffffffff811115613db157613db0613927565b5b613dbd85828601613d26565b92509250509250929050565b600060208284031215613ddf57613dde613922565b5b6000613ded84828501613b78565b91505092915050565b613dff81613ce3565b8114613e0a57600080fd5b50565b600081359050613e1c81613df6565b92915050565b600060208284031215613e3857613e37613922565b5b6000613e4684828501613e0d565b91505092915050565b613e5881613b25565b82525050565b600067ffffffffffffffff82169050919050565b613e7b81613e5e565b82525050565b613e8a816139b1565b82525050565b606082016000820151613ea66000850182613e4f565b506020820151613eb96020850182613e72565b506040820151613ecc6040850182613e81565b50505050565b6000606082019050613ee76000830184613e90565b92915050565b60008060408385031215613f0457613f03613922565b5b6000613f1285828601613b78565b9250506020613f2385828601613c0e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f6a82613a36565b810181811067ffffffffffffffff82111715613f8957613f88613f32565b5b80604052505050565b6000613f9c613918565b9050613fa88282613f61565b919050565b600067ffffffffffffffff821115613fc857613fc7613f32565b5b613fd182613a36565b9050602081019050919050565b82818337600083830152505050565b6000614000613ffb84613fad565b613f92565b90508281526020810184848401111561401c5761401b613f2d565b5b614027848285613fde565b509392505050565b600082601f83011261404457614043613d17565b5b8135614054848260208601613fed565b91505092915050565b60006020828403121561407357614072613922565b5b600082013567ffffffffffffffff81111561409157614090613927565b5b61409d8482850161402f565b91505092915050565b60008083601f8401126140bc576140bb613d17565b5b8235905067ffffffffffffffff8111156140d9576140d8613d1c565b5b6020830191508360208202830111156140f5576140f4613d21565b5b9250929050565b60008060006040848603121561411557614114613922565b5b600061412386828701613ac3565b935050602084013567ffffffffffffffff81111561414457614143613927565b5b614150868287016140a6565b92509250509250925092565b600067ffffffffffffffff82111561417757614176613f32565b5b61418082613a36565b9050602081019050919050565b60006141a061419b8461415c565b613f92565b9050828152602081018484840111156141bc576141bb613f2d565b5b6141c7848285613fde565b509392505050565b600082601f8301126141e4576141e3613d17565b5b81356141f484826020860161418d565b91505092915050565b6000806000806080858703121561421757614216613922565b5b600061422587828801613b78565b945050602061423687828801613b78565b935050604061424787828801613ac3565b925050606085013567ffffffffffffffff81111561426857614267613927565b5b614274878288016141cf565b91505092959194509250565b6000806040838503121561429757614296613922565b5b60006142a585828601613b78565b92505060206142b685828601613b78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061430757607f821691505b60208210810361431a576143196142c0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143566020836139f2565b915061436182614320565b602082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006143c2601e836139f2565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f57726f6e67205365637265742053616c65204b65792e00000000000000000000600082015250565b600061442e6016836139f2565b9150614439826143f8565b602082019050919050565b6000602082019050818103600083015261445d81614421565b9050919050565b7f5075626c69632073616c65206973205061757365642e00000000000000000000600082015250565b600061449a6016836139f2565b91506144a582614464565b602082019050919050565b600060208201905081810360008301526144c98161448d565b9050919050565b7f45786365656473206d6178696d756d206f66204e6f204e6f732070657220747260008201527f616e73616374696f6e2e00000000000000000000000000000000000000000000602082015250565b600061452c602a836139f2565b9150614537826144d0565b604082019050919050565b6000602082019050818103600083015261455b8161451f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061459c82613aa2565b91506145a783613aa2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145dc576145db614562565b5b828201905092915050565b7f52656163686564206d6178696d756d206361706163697479206f66204e6f204e60008201527f6f7320696e207468652053706163657368697021000000000000000000000000602082015250565b60006146436034836139f2565b915061464e826145e7565b604082019050919050565b6000602082019050818103600083015261467281614636565b9050919050565b7f43616e206e6f74206d696e742074686973206d616e79204e6f204e6f732e0000600082015250565b60006146af601e836139f2565b91506146ba82614679565b602082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b60006146f082613aa2565b91506146fb83613aa2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473457614733614562565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614775601a836139f2565b91506147808261473f565b602082019050919050565b600060208201905081810360008301526147a481614768565b9050919050565b7f4e6f204e6f204c6973742073616c65206973205061757365642e000000000000600082015250565b60006147e1601a836139f2565b91506147ec826147ab565b602082019050919050565b60006020820190508181036000830152614810816147d4565b9050919050565b60008160601b9050919050565b600061482f82614817565b9050919050565b600061484182614824565b9050919050565b61485961485482613b25565b614836565b82525050565b600061486b8284614848565b60148201915081905092915050565b7f546869732077616c6c6574206973206e6f7420696e20746865204e6f204e6f2060008201527f4c6973742e000000000000000000000000000000000000000000000000000000602082015250565b60006148d66025836139f2565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b600081905092915050565b6000614922826139e7565b61492c818561490c565b935061493c818560208601613a03565b80840191505092915050565b60006149548285614917565b91506149608284614917565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c86026836139f2565b91506149d38261496c565b604082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a25826149fe565b614a2f8185614a09565b9350614a3f818560208601613a03565b614a4881613a36565b840191505092915050565b6000608082019050614a686000830187613b37565b614a756020830186613b37565b614a826040830185613bcd565b8181036060830152614a948184614a1a565b905095945050505050565b600081519050614aae81613958565b92915050565b600060208284031215614aca57614ac9613922565b5b6000614ad884828501614a9f565b91505092915050565b6000614aec82613aa2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b1e57614b1d614562565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b6382613aa2565b9150614b6e83613aa2565b925082614b7e57614b7d614b29565b5b828204905092915050565b6000614b9482613aa2565b9150614b9f83613aa2565b925082821015614bb257614bb1614562565b5b828203905092915050565b6000614bc882613aa2565b9150614bd383613aa2565b925082614be357614be2614b29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614c38614c3382613ce3565b614c1d565b82525050565b6000614c4a8285614c27565b602082019150614c5a8284614c27565b602082019150819050939250505056fea2646970667358221220e95887fa00c0c5d0a4910f936bd53aeecb0a1622d3a577279c5278ef8281422164736f6c634300080d0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.