ETH Price: $3,395.22 (+0.87%)

Token

NotOkayLions (NOL)
 

Overview

Max Total Supply

1,057 NOL

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NOL
0x7d366b8aa84faa3c9b2f63a9f6d81873792d375b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NotOkayLions

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : NotOkayLions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

//      __              __         __                __     __           __
//   __/ /_  ___  ___  / /_  ___  / /_____ ___ __   / /__ _/ /  ___   __/ /_
//  /_  __/ / _ \/ _ \/ __/ / _ \/  '_/ _ `/ // /  / / _ `/ _ \(_-<  /_  __/
//   /_/   /_//_/\___/\__/  \___/_/\_\\_,_/\_, /  /_/\_,_/_.__/___/   /_/
//                                        /___/

/**
 * @author NotOkayLabs
 */
contract NotOkayLions is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {

    string public baseURI;
    string private preRevealURI;

    uint256 public constant MINT_PRICE = 0.015 ether; 
    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant MAX_PER_WALLET = 60;
    uint256 public constant FREE_SUPPLY = 1000;
    uint256 public constant TOTAL_SUPPLY = 10000;

    bool public isMintOpened;

    // As per ERC721R docs - check https://github.com/exo-digital-labs/ERC721R
    uint256 public constant refundPeriod = 5 hours;
    uint256 public refundEndTime;
    address public refundAddress;

    // False for all tokenIDs by default
    mapping(uint256 => bool) public _secondarySale;

    constructor() ERC721A("NotOkayLions", "NOL") {
        refundAddress = msg.sender;
        toggleRefundCountdown();
    }

    /**
     * @dev Make the starting tokenID 1 instead of 0.
     */
    function _startTokenId()
        internal
        view
        virtual
        override(ERC721A)
        returns (uint256)
    {
        return 1;
    }

    /* ========================================== MINT ========================================== */

    /**
     * @notice Mints _amount tokens to the caller address
     */
    function mint(uint256 _amount) external payable {
        require(msg.sender == tx.origin, "No bots s'il vous plait.");
        uint256 cost = MINT_PRICE;
        if (totalSupply() + _amount <= FREE_SUPPLY) {
            cost = 0;
        }
        require(
            msg.value == _amount * cost,
            "Wrong amount of ETH transferred through."
        );
        require(
            totalSupply() + _amount <= TOTAL_SUPPLY,
            "I'm afraid we're out of Not Okay Lions..."
        );
        require(isMintOpened, "Minting is closed.");
        require(
            numberMinted(msg.sender) + _amount <= MAX_PER_WALLET,
            "Too many Not Okay Lions per wallet. Try to buy a few less."
        );
        require(
            _amount <= MAX_PER_TX,
            "Minting too many Lions in one transaction!"
        );
        _safeMint(msg.sender, _amount);
    }

    /**
     * @notice Toggles minting on/off
     */
    function toggleMinting() external onlyOwner {
        isMintOpened = !isMintOpened;
    }

    /**
     * @notice Returns number of already minted tokens
     */
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    /* ======================================== REFUNDS ======================================== */

    // The implementation of this section is done in accordance
    // with ERC721R documentation: https://github.com/exo-digital-labs/ERC721R

    /**
     * @notice Returns true, if refund time window is still open, false if it's too late
     */
    function isRefundGuaranteeActive() public view returns (bool) {
        return (block.timestamp <= refundEndTime);
    }

    /**
     * @notice Returns the time at which the refund time window closes
     */
    function getRefundGuaranteeEndTime() public view returns (uint256) {
        return refundEndTime;
    }

    /**
     * @notice Processes refunds for provided tokenIds
     * @dev As tokens that were minted for free cannot be refunded,
     * the function skips those and only accounts for paid tokens
     */
    function refund(uint256[] calldata tokenIds) external {
        require(isRefundGuaranteeActive(), "Refund expired");
        uint256 refundedTokens = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            require(
                msg.sender == ownerOf(tokenId),
                "Cannot refund tokens you do not own!"
            );
            require(
                _secondarySale[tokenId] == false,
                "Cannot refund token after it was resold!"
            );
            if (tokenId > FREE_SUPPLY) {
                // Check if token was paid for, if so transfer it and account for it in the final refund sum
                transferFrom(msg.sender, refundAddress, tokenId);
                refundedTokens++;
            }
        }

        uint256 refundAmount = refundedTokens * MINT_PRICE;
        Address.sendValue(payable(msg.sender), refundAmount);
    }

    /**
     * @notice Starts the refund window countdown. Called upon deployment/mint open
     */
    function toggleRefundCountdown() public onlyOwner {
        refundEndTime = block.timestamp + refundPeriod;
    }

    /* ======================================== UTILS ======================================== */

    function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721Metadata) returns (string memory) {
        if (isRefundGuaranteeActive()) {
            return preRevealURI;
        } else {
            return super.tokenURI(tokenId);
        }
    }

    /**
     * @dev Using the after transfer hook to update secondary sales data to process refunds
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override(ERC721A) {
        if (from == address(0) || to == address(0) || to == refundAddress) {
            return;
        }
        // Make sure we don't include minting and burning - only external txs
        for (uint256 i = startTokenId; i <= startTokenId + quantity; i++) {
            _secondarySale[i] = true;
        }
    }

    function setRefundAddress(address _refundAddress) external onlyOwner {
        refundAddress = _refundAddress;
    }

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

    function setPreRevealURI(string calldata preRevealURI_) external onlyOwner {
        preRevealURI = preRevealURI_;
    }

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

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 2 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

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

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

    // The number of tokens burned.
    uint256 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_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).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);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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 (_startTokenId() <= curr) 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) if(!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 virtual 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 (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev 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 contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 15 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 15 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

    // 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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

File 7 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : 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 10 of 15 : 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 11 of 15 : 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 12 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 13 of 15 : 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 14 of 15 : 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 15 of 15 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_secondarySale","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRefundGuaranteeEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefundGuaranteeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_refundAddress","type":"address"}],"name":"setRefundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRefundCountdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4e6f744f6b61794c696f6e7300000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e4f4c0000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620002ef565b508060039080519060200190620000af929190620002ef565b50620000c06200014760201b60201c565b6000819055505050620000e8620000dc6200015060201b60201c565b6200015860201b60201c565b600160098190555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001416200021e60201b60201c565b6200051c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200015060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000254620002c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000400565b60405180910390fd5b61465042620002bd91906200045b565b600d81905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fd90620004e7565b90600052602060002090601f0160209004810192826200032157600085556200036d565b82601f106200033c57805160ff19168380011785556200036d565b828001600101855582156200036d579182015b828111156200036c5782518255916020019190600101906200034f565b5b5090506200037c919062000380565b5090565b5b808211156200039b57600081600090555060010162000381565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620003e86020836200039f565b9150620003f582620003b0565b602082019050919050565b600060208201905081810360008301526200041b81620003d9565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620004688262000422565b9150620004758362000422565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ad57620004ac6200042c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050057607f821691505b602082108103620005165762000515620004b8565b5b50919050565b614f99806200052c6000396000f3fe60806040526004361061025c5760003560e01c80637d55094d11610144578063b88d4fde116100b6578063cb17d3db1161007a578063cb17d3db146108c9578063dc33e68114610906578063e985e9c514610943578063f2fde38b14610980578063f43a22dc146109a9578063faf762bd146109d45761025c565b8063b88d4fde146107d0578063c002d23d146107f9578063c23dc68f14610824578063c4ea084514610861578063c87b56dd1461088c5761025c565b80639858cf19116101085780639858cf19146106cf57806399a2557a146106fa578063a0712d6814610737578063a22cb46514610753578063a6a3b5b41461077c578063aa613df5146107a75761025c565b80637d55094d146105fa5780638462151c146106115780638da5cb5b1461064e578063902d55a51461067957806395d89b41146106a45761025c565b80632e9be821116101dd5780636352211e116101a15780636352211e146104e85780636beaf42d146105255780636c0360eb1461055057806370a082311461057b578063715018a6146105b857806373fddd16146105cf5761025c565b80632e9be8211461042b5780633ccfd60b1461044257806342842e0e1461045957806355f804b3146104825780635bbb2177146104ab5761025c565b80630f2cdd6c116102245780630f2cdd6c1461035a57806315b75bea1461038557806318160ddd146103ae57806323b872dd146103d95780632a85db55146104025761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630cb61f6c1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613944565b6109ff565b604051610295919061398c565b60405180910390f35b3480156102aa57600080fd5b506102b3610ae1565b6040516102c09190613a40565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a98565b610b73565b6040516102fd9190613b06565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b4d565b610bef565b005b34801561033b57600080fd5b50610344610cf3565b6040516103519190613b06565b60405180910390f35b34801561036657600080fd5b5061036f610d19565b60405161037c9190613b9c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613bb7565b610d1e565b005b3480156103ba57600080fd5b506103c3610dde565b6040516103d09190613b9c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613be4565b610df5565b005b34801561040e57600080fd5b5061042960048036038101906104249190613c9c565b610e05565b005b34801561043757600080fd5b50610440610e97565b005b34801561044e57600080fd5b50610457610f29565b005b34801561046557600080fd5b50610480600480360381019061047b9190613be4565b6110a9565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613c9c565b6110c9565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613e27565b61115b565b6040516104df9190613fa2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613a98565b61121c565b60405161051c9190613b06565b60405180910390f35b34801561053157600080fd5b5061053a611232565b604051610547919061398c565b60405180910390f35b34801561055c57600080fd5b50610565611245565b6040516105729190613a40565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190613bb7565b6112d3565b6040516105af9190613b9c565b60405180910390f35b3480156105c457600080fd5b506105cd6113a2565b005b3480156105db57600080fd5b506105e461142a565b6040516105f19190613b9c565b60405180910390f35b34801561060657600080fd5b5061060f611430565b005b34801561061d57600080fd5b5061063860048036038101906106339190613bb7565b6114d8565b6040516106459190614082565b60405180910390f35b34801561065a57600080fd5b506106636116d3565b6040516106709190613b06565b60405180910390f35b34801561068557600080fd5b5061068e6116fd565b60405161069b9190613b9c565b60405180910390f35b3480156106b057600080fd5b506106b9611703565b6040516106c69190613a40565b60405180910390f35b3480156106db57600080fd5b506106e4611795565b6040516106f19190613b9c565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906140a4565b61179b565b60405161072e9190614082565b60405180910390f35b610751600480360381019061074c9190613a98565b611a5a565b005b34801561075f57600080fd5b5061077a60048036038101906107759190614123565b611c90565b005b34801561078857600080fd5b50610791611e07565b60405161079e9190613b9c565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906141b9565b611e0d565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906142bb565b611fe0565b005b34801561080557600080fd5b5061080e612058565b60405161081b9190613b9c565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613a98565b612063565b6040516108589190614380565b60405180910390f35b34801561086d57600080fd5b50610876612180565b604051610883919061398c565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613a98565b61218d565b6040516108c09190613a40565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613a98565b61223f565b6040516108fd919061398c565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613bb7565b61225f565b60405161093a9190613b9c565b60405180910390f35b34801561094f57600080fd5b5061096a6004803603810190610965919061439b565b612271565b604051610977919061398c565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190613bb7565b612305565b005b3480156109b557600080fd5b506109be6123fc565b6040516109cb9190613b9c565b60405180910390f35b3480156109e057600080fd5b506109e9612401565b6040516109f69190613b9c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ada5750610ad98261240b565b5b9050919050565b606060028054610af09061440a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c9061440a565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7e82612475565b610bb4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfa8261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c806124c3565b73ffffffffffffffffffffffffffffffffffffffff1614610ce357610cac81610ca76124c3565b612271565b610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cee8383836124cb565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b603c81565b610d266124c3565b73ffffffffffffffffffffffffffffffffffffffff16610d446116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614487565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610de861257d565b6001546000540303905090565b610e00838383612586565b505050565b610e0d6124c3565b73ffffffffffffffffffffffffffffffffffffffff16610e2b6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890614487565b60405180910390fd5b8181600b9190610e929291906137f2565b505050565b610e9f6124c3565b73ffffffffffffffffffffffffffffffffffffffff16610ebd6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614487565b60405180910390fd5b61465042610f2191906144d6565b600d81905550565b610f316124c3565b73ffffffffffffffffffffffffffffffffffffffff16610f4f6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614487565b60405180910390fd5b600260095403610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614578565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611018906145c9565b60006040518083038185875af1925050503d8060008114611055576040519150601f19603f3d011682016040523d82523d6000602084013e61105a565b606091505b505090508061109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061462a565b60405180910390fd5b506001600981905550565b6110c483838360405180602001604052806000815250611fe0565b505050565b6110d16124c3565b73ffffffffffffffffffffffffffffffffffffffff166110ef6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614487565b60405180910390fd5b8181600a91906111569291906137f2565b505050565b606060008251905060008167ffffffffffffffff81111561117f5761117e613ce9565b5b6040519080825280602002602001820160405280156111b857816020015b6111a5613878565b81526020019060019003908161119d5790505b50905060005b828114611211576111e88582815181106111db576111da61464a565b5b6020026020010151612063565b8282815181106111fb576111fa61464a565b5b60200260200101819052508060010190506111be565b508092505050919050565b600061122782612a3a565b600001519050919050565b600c60009054906101000a900460ff1681565b600a80546112529061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461127e9061440a565b80156112cb5780601f106112a0576101008083540402835291602001916112cb565b820191906000526020600020905b8154815290600101906020018083116112ae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113aa6124c3565b73ffffffffffffffffffffffffffffffffffffffff166113c86116d3565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614487565b60405180910390fd5b6114286000612cc5565b565b600d5481565b6114386124c3565b73ffffffffffffffffffffffffffffffffffffffff166114566116d3565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390614487565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b606060008060006114e8856112d3565b905060008167ffffffffffffffff81111561150657611505613ce9565b5b6040519080825280602002602001820160405280156115345781602001602082028036833780820191505090505b50905061153f613878565b600061154961257d565b90505b8386146116c557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001516116ba57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461165f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036116b957808387806001019850815181106116ac576116ab61464a565b5b6020026020010181815250505b5b80600101905061154c565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b6060600380546117129061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461173e9061440a565b801561178b5780601f106117605761010080835404028352916020019161178b565b820191906000526020600020905b81548152906001019060200180831161176e57829003601f168201915b5050505050905090565b6103e881565b60608183106117d6576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506117e661257d565b8510156117f8576117f561257d565b94505b80841115611804578093505b600061180f876112d3565b90508486101561183257600086860390508181101561182c578091505b50611837565b600090505b60008167ffffffffffffffff81111561185357611852613ce9565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b509050600082036118985780945050505050611a53565b60006118a388612063565b9050600081604001516118b857816000015190505b60008990505b8881141580156118ce5750848714155b15611a4557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505092508260400151611a3a57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146119df57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a395780848880600101995081518110611a2c57611a2b61464a565b5b6020026020010181815250505b5b8060010190506118be565b508583528296505050505050505b9392505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf906146c5565b60405180910390fd5b600066354a6ba7a1800090506103e882611ae0610dde565b611aea91906144d6565b11611af457600090505b8082611b0091906146e5565b3414611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38906147b1565b60405180910390fd5b61271082611b4d610dde565b611b5791906144d6565b1115611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90614843565b60405180910390fd5b600c60009054906101000a900460ff16611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde906148af565b60405180910390fd5b603c82611bf33361225f565b611bfd91906144d6565b1115611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614941565b60405180910390fd5b6014821115611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906149d3565b60405180910390fd5b611c8c3383612d8b565b5050565b611c986124c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d096124c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611db66124c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dfb919061398c565b60405180910390a35050565b61465081565b611e15612180565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614a3f565b60405180910390fd5b6000805b83839050811015611fb8576000848483818110611e7857611e7761464a565b5b905060200201359050611e8a8161121c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90614ad1565b60405180910390fd5b60001515600f600083815260200190815260200160002060009054906101000a900460ff16151514611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590614b63565b60405180910390fd5b6103e8811115611fa457611f9533600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610df5565b8280611fa090614b83565b9350505b508080611fb090614b83565b915050611e58565b50600066354a6ba7a1800082611fce91906146e5565b9050611fda3382612da9565b50505050565b611feb848484612586565b61200a8373ffffffffffffffffffffffffffffffffffffffff16612e9d565b156120525761201b84848484612ec0565b612051576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b66354a6ba7a1800081565b61206b613878565b612073613878565b61207b61257d565b83108061208a57506000548310155b15612098578091505061217b565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561216e578091505061217b565b61217783612a3a565b9150505b919050565b6000600d54421115905090565b6060612197612180565b1561222e57600b80546121a99061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546121d59061440a565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905061223a565b61223782613010565b90505b919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061226a826130ae565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230d6124c3565b73ffffffffffffffffffffffffffffffffffffffff1661232b6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790614c3d565b60405180910390fd5b6123f981612cc5565b50565b601481565b6000600d54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248061257d565b1115801561248f575060005482105b80156124bc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061259182612a3a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661261d6124c3565b73ffffffffffffffffffffffffffffffffffffffff16148061264c575061264b856126466124c3565b612271565b5b80612691575061265a6124c3565b73ffffffffffffffffffffffffffffffffffffffff1661267984610b73565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126ca576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612730576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61273d8585856001613118565b612749600084876124cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129c85760005482146129c757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a33858585600161311e565b5050505050565b612a42613878565b600082905080612a5061257d565b11612c8e57600054811015612c8d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c8b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b6f578092505050612cc0565b5b600115612c8a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c85578092505050612cc0565b612b70565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612da5828260405180602001604052806000815250613240565b5050565b80471015612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de390614ca9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e12906145c9565b60006040518083038185875af1925050503d8060008114612e4f576040519150601f19603f3d011682016040523d82523d6000602084013e612e54565b606091505b5050905080612e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8f90614d3b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ee66124c3565b8786866040518563ffffffff1660e01b8152600401612f089493929190614db0565b6020604051808303816000875af1925050508015612f4457506040513d601f19601f82011682018060405250810190612f419190614e11565b60015b612fbd573d8060008114612f74576040519150601f19603f3d011682016040523d82523d6000602084013e612f79565b606091505b506000815103612fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061301b82612475565b613051576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061305b613600565b9050600081510361307b57604051806020016040528060008152506130a6565b8061308584613692565b604051602001613096929190614e7a565b6040516020818303038152906040525b915050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806131855750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806131dd5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b61323a5760008290505b81836131f391906144d6565b8111613238576001600f600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808061323090614b83565b9150506131e7565b505b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036132ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036132e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132f36000858386613118565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506134b48673ffffffffffffffffffffffffffffffffffffffff16612e9d565b15613579575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135296000878480600101955087612ec0565b61355f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106134ba57826000541461357457600080fd5b6135e4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061357a575b8160008190555050506135fa600085838661311e565b50505050565b6060600a805461360f9061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461363b9061440a565b80156136885780601f1061365d57610100808354040283529160200191613688565b820191906000526020600020905b81548152906001019060200180831161366b57829003601f168201915b5050505050905090565b6060600082036136d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137ed565b600082905060005b6000821461370b5780806136f490614b83565b915050600a826137049190614ecd565b91506136e1565b60008167ffffffffffffffff81111561372757613726613ce9565b5b6040519080825280601f01601f1916602001820160405280156137595781602001600182028036833780820191505090505b5090505b600085146137e6576001826137729190614efe565b9150600a856137819190614f32565b603061378d91906144d6565b60f81b8183815181106137a3576137a261464a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137df9190614ecd565b945061375d565b8093505050505b919050565b8280546137fe9061440a565b90600052602060002090601f0160209004810192826138205760008555613867565b82601f1061383957803560ff1916838001178555613867565b82800160010185558215613867579182015b8281111561386657823582559160200191906001019061384b565b5b50905061387491906138bb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138d45760008160009055506001016138bc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613921816138ec565b811461392c57600080fd5b50565b60008135905061393e81613918565b92915050565b60006020828403121561395a576139596138e2565b5b60006139688482850161392f565b91505092915050565b60008115159050919050565b61398681613971565b82525050565b60006020820190506139a1600083018461397d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e15780820151818401526020810190506139c6565b838111156139f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a12826139a7565b613a1c81856139b2565b9350613a2c8185602086016139c3565b613a35816139f6565b840191505092915050565b60006020820190508181036000830152613a5a8184613a07565b905092915050565b6000819050919050565b613a7581613a62565b8114613a8057600080fd5b50565b600081359050613a9281613a6c565b92915050565b600060208284031215613aae57613aad6138e2565b5b6000613abc84828501613a83565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613af082613ac5565b9050919050565b613b0081613ae5565b82525050565b6000602082019050613b1b6000830184613af7565b92915050565b613b2a81613ae5565b8114613b3557600080fd5b50565b600081359050613b4781613b21565b92915050565b60008060408385031215613b6457613b636138e2565b5b6000613b7285828601613b38565b9250506020613b8385828601613a83565b9150509250929050565b613b9681613a62565b82525050565b6000602082019050613bb16000830184613b8d565b92915050565b600060208284031215613bcd57613bcc6138e2565b5b6000613bdb84828501613b38565b91505092915050565b600080600060608486031215613bfd57613bfc6138e2565b5b6000613c0b86828701613b38565b9350506020613c1c86828701613b38565b9250506040613c2d86828701613a83565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613c5c57613c5b613c37565b5b8235905067ffffffffffffffff811115613c7957613c78613c3c565b5b602083019150836001820283011115613c9557613c94613c41565b5b9250929050565b60008060208385031215613cb357613cb26138e2565b5b600083013567ffffffffffffffff811115613cd157613cd06138e7565b5b613cdd85828601613c46565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d21826139f6565b810181811067ffffffffffffffff82111715613d4057613d3f613ce9565b5b80604052505050565b6000613d536138d8565b9050613d5f8282613d18565b919050565b600067ffffffffffffffff821115613d7f57613d7e613ce9565b5b602082029050602081019050919050565b6000613da3613d9e84613d64565b613d49565b90508083825260208201905060208402830185811115613dc657613dc5613c41565b5b835b81811015613def5780613ddb8882613a83565b845260208401935050602081019050613dc8565b5050509392505050565b600082601f830112613e0e57613e0d613c37565b5b8135613e1e848260208601613d90565b91505092915050565b600060208284031215613e3d57613e3c6138e2565b5b600082013567ffffffffffffffff811115613e5b57613e5a6138e7565b5b613e6784828501613df9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ea581613ae5565b82525050565b600067ffffffffffffffff82169050919050565b613ec881613eab565b82525050565b613ed781613971565b82525050565b606082016000820151613ef36000850182613e9c565b506020820151613f066020850182613ebf565b506040820151613f196040850182613ece565b50505050565b6000613f2b8383613edd565b60608301905092915050565b6000602082019050919050565b6000613f4f82613e70565b613f598185613e7b565b9350613f6483613e8c565b8060005b83811015613f95578151613f7c8882613f1f565b9750613f8783613f37565b925050600181019050613f68565b5085935050505092915050565b60006020820190508181036000830152613fbc8184613f44565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff981613a62565b82525050565b600061400b8383613ff0565b60208301905092915050565b6000602082019050919050565b600061402f82613fc4565b6140398185613fcf565b935061404483613fe0565b8060005b8381101561407557815161405c8882613fff565b975061406783614017565b925050600181019050614048565b5085935050505092915050565b6000602082019050818103600083015261409c8184614024565b905092915050565b6000806000606084860312156140bd576140bc6138e2565b5b60006140cb86828701613b38565b93505060206140dc86828701613a83565b92505060406140ed86828701613a83565b9150509250925092565b61410081613971565b811461410b57600080fd5b50565b60008135905061411d816140f7565b92915050565b6000806040838503121561413a576141396138e2565b5b600061414885828601613b38565b92505060206141598582860161410e565b9150509250929050565b60008083601f84011261417957614178613c37565b5b8235905067ffffffffffffffff81111561419657614195613c3c565b5b6020830191508360208202830111156141b2576141b1613c41565b5b9250929050565b600080602083850312156141d0576141cf6138e2565b5b600083013567ffffffffffffffff8111156141ee576141ed6138e7565b5b6141fa85828601614163565b92509250509250929050565b600080fd5b600067ffffffffffffffff82111561422657614225613ce9565b5b61422f826139f6565b9050602081019050919050565b82818337600083830152505050565b600061425e6142598461420b565b613d49565b90508281526020810184848401111561427a57614279614206565b5b61428584828561423c565b509392505050565b600082601f8301126142a2576142a1613c37565b5b81356142b284826020860161424b565b91505092915050565b600080600080608085870312156142d5576142d46138e2565b5b60006142e387828801613b38565b94505060206142f487828801613b38565b935050604061430587828801613a83565b925050606085013567ffffffffffffffff811115614326576143256138e7565b5b6143328782880161428d565b91505092959194509250565b6060820160008201516143546000850182613e9c565b5060208201516143676020850182613ebf565b50604082015161437a6040850182613ece565b50505050565b6000606082019050614395600083018461433e565b92915050565b600080604083850312156143b2576143b16138e2565b5b60006143c085828601613b38565b92505060206143d185828601613b38565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442257607f821691505b602082108103614435576144346143db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144716020836139b2565b915061447c8261443b565b602082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e182613a62565b91506144ec83613a62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614521576145206144a7565b5b828201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614562601f836139b2565b915061456d8261452c565b602082019050919050565b6000602082019050818103600083015261459181614555565b9050919050565b600081905092915050565b50565b60006145b3600083614598565b91506145be826145a3565b600082019050919050565b60006145d4826145a6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006146146010836139b2565b915061461f826145de565b602082019050919050565b6000602082019050818103600083015261464381614607565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f20626f7473207327696c20766f757320706c6169742e0000000000000000600082015250565b60006146af6018836139b2565b91506146ba82614679565b602082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b60006146f082613a62565b91506146fb83613a62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614734576147336144a7565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f6620455448207472616e736665727265642060008201527f7468726f7567682e000000000000000000000000000000000000000000000000602082015250565b600061479b6028836139b2565b91506147a68261473f565b604082019050919050565b600060208201905081810360008301526147ca8161478e565b9050919050565b7f49276d20616672616964207765277265206f7574206f66204e6f74204f6b617960008201527f204c696f6e732e2e2e0000000000000000000000000000000000000000000000602082015250565b600061482d6029836139b2565b9150614838826147d1565b604082019050919050565b6000602082019050818103600083015261485c81614820565b9050919050565b7f4d696e74696e6720697320636c6f7365642e0000000000000000000000000000600082015250565b60006148996012836139b2565b91506148a482614863565b602082019050919050565b600060208201905081810360008301526148c88161488c565b9050919050565b7f546f6f206d616e79204e6f74204f6b6179204c696f6e73207065722077616c6c60008201527f65742e2054727920746f20627579206120666577206c6573732e000000000000602082015250565b600061492b603a836139b2565b9150614936826148cf565b604082019050919050565b6000602082019050818103600083015261495a8161491e565b9050919050565b7f4d696e74696e6720746f6f206d616e79204c696f6e7320696e206f6e6520747260008201527f616e73616374696f6e2100000000000000000000000000000000000000000000602082015250565b60006149bd602a836139b2565b91506149c882614961565b604082019050919050565b600060208201905081810360008301526149ec816149b0565b9050919050565b7f526566756e642065787069726564000000000000000000000000000000000000600082015250565b6000614a29600e836139b2565b9150614a34826149f3565b602082019050919050565b60006020820190508181036000830152614a5881614a1c565b9050919050565b7f43616e6e6f7420726566756e6420746f6b656e7320796f7520646f206e6f742060008201527f6f776e2100000000000000000000000000000000000000000000000000000000602082015250565b6000614abb6024836139b2565b9150614ac682614a5f565b604082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b7f43616e6e6f7420726566756e6420746f6b656e2061667465722069742077617360008201527f207265736f6c6421000000000000000000000000000000000000000000000000602082015250565b6000614b4d6028836139b2565b9150614b5882614af1565b604082019050919050565b60006020820190508181036000830152614b7c81614b40565b9050919050565b6000614b8e82613a62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bc057614bbf6144a7565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c276026836139b2565b9150614c3282614bcb565b604082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c93601d836139b2565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d25603a836139b2565b9150614d3082614cc9565b604082019050919050565b60006020820190508181036000830152614d5481614d18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d8282614d5b565b614d8c8185614d66565b9350614d9c8185602086016139c3565b614da5816139f6565b840191505092915050565b6000608082019050614dc56000830187613af7565b614dd26020830186613af7565b614ddf6040830185613b8d565b8181036060830152614df18184614d77565b905095945050505050565b600081519050614e0b81613918565b92915050565b600060208284031215614e2757614e266138e2565b5b6000614e3584828501614dfc565b91505092915050565b600081905092915050565b6000614e54826139a7565b614e5e8185614e3e565b9350614e6e8185602086016139c3565b80840191505092915050565b6000614e868285614e49565b9150614e928284614e49565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ed882613a62565b9150614ee383613a62565b925082614ef357614ef2614e9e565b5b828204905092915050565b6000614f0982613a62565b9150614f1483613a62565b925082821015614f2757614f266144a7565b5b828203905092915050565b6000614f3d82613a62565b9150614f4883613a62565b925082614f5857614f57614e9e565b5b82820690509291505056fea2646970667358221220b383fffa06070fef0d306eddf17251ae4dd0bc7145aed4ce162514aec19736a164736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80637d55094d11610144578063b88d4fde116100b6578063cb17d3db1161007a578063cb17d3db146108c9578063dc33e68114610906578063e985e9c514610943578063f2fde38b14610980578063f43a22dc146109a9578063faf762bd146109d45761025c565b8063b88d4fde146107d0578063c002d23d146107f9578063c23dc68f14610824578063c4ea084514610861578063c87b56dd1461088c5761025c565b80639858cf19116101085780639858cf19146106cf57806399a2557a146106fa578063a0712d6814610737578063a22cb46514610753578063a6a3b5b41461077c578063aa613df5146107a75761025c565b80637d55094d146105fa5780638462151c146106115780638da5cb5b1461064e578063902d55a51461067957806395d89b41146106a45761025c565b80632e9be821116101dd5780636352211e116101a15780636352211e146104e85780636beaf42d146105255780636c0360eb1461055057806370a082311461057b578063715018a6146105b857806373fddd16146105cf5761025c565b80632e9be8211461042b5780633ccfd60b1461044257806342842e0e1461045957806355f804b3146104825780635bbb2177146104ab5761025c565b80630f2cdd6c116102245780630f2cdd6c1461035a57806315b75bea1461038557806318160ddd146103ae57806323b872dd146103d95780632a85db55146104025761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630cb61f6c1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613944565b6109ff565b604051610295919061398c565b60405180910390f35b3480156102aa57600080fd5b506102b3610ae1565b6040516102c09190613a40565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a98565b610b73565b6040516102fd9190613b06565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b4d565b610bef565b005b34801561033b57600080fd5b50610344610cf3565b6040516103519190613b06565b60405180910390f35b34801561036657600080fd5b5061036f610d19565b60405161037c9190613b9c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613bb7565b610d1e565b005b3480156103ba57600080fd5b506103c3610dde565b6040516103d09190613b9c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613be4565b610df5565b005b34801561040e57600080fd5b5061042960048036038101906104249190613c9c565b610e05565b005b34801561043757600080fd5b50610440610e97565b005b34801561044e57600080fd5b50610457610f29565b005b34801561046557600080fd5b50610480600480360381019061047b9190613be4565b6110a9565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613c9c565b6110c9565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613e27565b61115b565b6040516104df9190613fa2565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613a98565b61121c565b60405161051c9190613b06565b60405180910390f35b34801561053157600080fd5b5061053a611232565b604051610547919061398c565b60405180910390f35b34801561055c57600080fd5b50610565611245565b6040516105729190613a40565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190613bb7565b6112d3565b6040516105af9190613b9c565b60405180910390f35b3480156105c457600080fd5b506105cd6113a2565b005b3480156105db57600080fd5b506105e461142a565b6040516105f19190613b9c565b60405180910390f35b34801561060657600080fd5b5061060f611430565b005b34801561061d57600080fd5b5061063860048036038101906106339190613bb7565b6114d8565b6040516106459190614082565b60405180910390f35b34801561065a57600080fd5b506106636116d3565b6040516106709190613b06565b60405180910390f35b34801561068557600080fd5b5061068e6116fd565b60405161069b9190613b9c565b60405180910390f35b3480156106b057600080fd5b506106b9611703565b6040516106c69190613a40565b60405180910390f35b3480156106db57600080fd5b506106e4611795565b6040516106f19190613b9c565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906140a4565b61179b565b60405161072e9190614082565b60405180910390f35b610751600480360381019061074c9190613a98565b611a5a565b005b34801561075f57600080fd5b5061077a60048036038101906107759190614123565b611c90565b005b34801561078857600080fd5b50610791611e07565b60405161079e9190613b9c565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906141b9565b611e0d565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906142bb565b611fe0565b005b34801561080557600080fd5b5061080e612058565b60405161081b9190613b9c565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613a98565b612063565b6040516108589190614380565b60405180910390f35b34801561086d57600080fd5b50610876612180565b604051610883919061398c565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613a98565b61218d565b6040516108c09190613a40565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613a98565b61223f565b6040516108fd919061398c565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613bb7565b61225f565b60405161093a9190613b9c565b60405180910390f35b34801561094f57600080fd5b5061096a6004803603810190610965919061439b565b612271565b604051610977919061398c565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190613bb7565b612305565b005b3480156109b557600080fd5b506109be6123fc565b6040516109cb9190613b9c565b60405180910390f35b3480156109e057600080fd5b506109e9612401565b6040516109f69190613b9c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ada5750610ad98261240b565b5b9050919050565b606060028054610af09061440a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c9061440a565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7e82612475565b610bb4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfa8261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c806124c3565b73ffffffffffffffffffffffffffffffffffffffff1614610ce357610cac81610ca76124c3565b612271565b610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cee8383836124cb565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b603c81565b610d266124c3565b73ffffffffffffffffffffffffffffffffffffffff16610d446116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614487565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610de861257d565b6001546000540303905090565b610e00838383612586565b505050565b610e0d6124c3565b73ffffffffffffffffffffffffffffffffffffffff16610e2b6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890614487565b60405180910390fd5b8181600b9190610e929291906137f2565b505050565b610e9f6124c3565b73ffffffffffffffffffffffffffffffffffffffff16610ebd6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614487565b60405180910390fd5b61465042610f2191906144d6565b600d81905550565b610f316124c3565b73ffffffffffffffffffffffffffffffffffffffff16610f4f6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614487565b60405180910390fd5b600260095403610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614578565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611018906145c9565b60006040518083038185875af1925050503d8060008114611055576040519150601f19603f3d011682016040523d82523d6000602084013e61105a565b606091505b505090508061109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061462a565b60405180910390fd5b506001600981905550565b6110c483838360405180602001604052806000815250611fe0565b505050565b6110d16124c3565b73ffffffffffffffffffffffffffffffffffffffff166110ef6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614487565b60405180910390fd5b8181600a91906111569291906137f2565b505050565b606060008251905060008167ffffffffffffffff81111561117f5761117e613ce9565b5b6040519080825280602002602001820160405280156111b857816020015b6111a5613878565b81526020019060019003908161119d5790505b50905060005b828114611211576111e88582815181106111db576111da61464a565b5b6020026020010151612063565b8282815181106111fb576111fa61464a565b5b60200260200101819052508060010190506111be565b508092505050919050565b600061122782612a3a565b600001519050919050565b600c60009054906101000a900460ff1681565b600a80546112529061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461127e9061440a565b80156112cb5780601f106112a0576101008083540402835291602001916112cb565b820191906000526020600020905b8154815290600101906020018083116112ae57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113aa6124c3565b73ffffffffffffffffffffffffffffffffffffffff166113c86116d3565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614487565b60405180910390fd5b6114286000612cc5565b565b600d5481565b6114386124c3565b73ffffffffffffffffffffffffffffffffffffffff166114566116d3565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390614487565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b606060008060006114e8856112d3565b905060008167ffffffffffffffff81111561150657611505613ce9565b5b6040519080825280602002602001820160405280156115345781602001602082028036833780820191505090505b50905061153f613878565b600061154961257d565b90505b8386146116c557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001516116ba57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461165f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036116b957808387806001019850815181106116ac576116ab61464a565b5b6020026020010181815250505b5b80600101905061154c565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b6060600380546117129061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461173e9061440a565b801561178b5780601f106117605761010080835404028352916020019161178b565b820191906000526020600020905b81548152906001019060200180831161176e57829003601f168201915b5050505050905090565b6103e881565b60608183106117d6576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506117e661257d565b8510156117f8576117f561257d565b94505b80841115611804578093505b600061180f876112d3565b90508486101561183257600086860390508181101561182c578091505b50611837565b600090505b60008167ffffffffffffffff81111561185357611852613ce9565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b509050600082036118985780945050505050611a53565b60006118a388612063565b9050600081604001516118b857816000015190505b60008990505b8881141580156118ce5750848714155b15611a4557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505092508260400151611a3a57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146119df57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a395780848880600101995081518110611a2c57611a2b61464a565b5b6020026020010181815250505b5b8060010190506118be565b508583528296505050505050505b9392505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf906146c5565b60405180910390fd5b600066354a6ba7a1800090506103e882611ae0610dde565b611aea91906144d6565b11611af457600090505b8082611b0091906146e5565b3414611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38906147b1565b60405180910390fd5b61271082611b4d610dde565b611b5791906144d6565b1115611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90614843565b60405180910390fd5b600c60009054906101000a900460ff16611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde906148af565b60405180910390fd5b603c82611bf33361225f565b611bfd91906144d6565b1115611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614941565b60405180910390fd5b6014821115611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906149d3565b60405180910390fd5b611c8c3383612d8b565b5050565b611c986124c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d096124c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611db66124c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dfb919061398c565b60405180910390a35050565b61465081565b611e15612180565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614a3f565b60405180910390fd5b6000805b83839050811015611fb8576000848483818110611e7857611e7761464a565b5b905060200201359050611e8a8161121c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90614ad1565b60405180910390fd5b60001515600f600083815260200190815260200160002060009054906101000a900460ff16151514611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590614b63565b60405180910390fd5b6103e8811115611fa457611f9533600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610df5565b8280611fa090614b83565b9350505b508080611fb090614b83565b915050611e58565b50600066354a6ba7a1800082611fce91906146e5565b9050611fda3382612da9565b50505050565b611feb848484612586565b61200a8373ffffffffffffffffffffffffffffffffffffffff16612e9d565b156120525761201b84848484612ec0565b612051576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b66354a6ba7a1800081565b61206b613878565b612073613878565b61207b61257d565b83108061208a57506000548310155b15612098578091505061217b565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561216e578091505061217b565b61217783612a3a565b9150505b919050565b6000600d54421115905090565b6060612197612180565b1561222e57600b80546121a99061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546121d59061440a565b80156122225780601f106121f757610100808354040283529160200191612222565b820191906000526020600020905b81548152906001019060200180831161220557829003601f168201915b5050505050905061223a565b61223782613010565b90505b919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061226a826130ae565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230d6124c3565b73ffffffffffffffffffffffffffffffffffffffff1661232b6116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790614c3d565b60405180910390fd5b6123f981612cc5565b50565b601481565b6000600d54905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248061257d565b1115801561248f575060005482105b80156124bc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061259182612a3a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661261d6124c3565b73ffffffffffffffffffffffffffffffffffffffff16148061264c575061264b856126466124c3565b612271565b5b80612691575061265a6124c3565b73ffffffffffffffffffffffffffffffffffffffff1661267984610b73565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126ca576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612730576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61273d8585856001613118565b612749600084876124cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129c85760005482146129c757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a33858585600161311e565b5050505050565b612a42613878565b600082905080612a5061257d565b11612c8e57600054811015612c8d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c8b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b6f578092505050612cc0565b5b600115612c8a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c85578092505050612cc0565b612b70565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612da5828260405180602001604052806000815250613240565b5050565b80471015612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de390614ca9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e12906145c9565b60006040518083038185875af1925050503d8060008114612e4f576040519150601f19603f3d011682016040523d82523d6000602084013e612e54565b606091505b5050905080612e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8f90614d3b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ee66124c3565b8786866040518563ffffffff1660e01b8152600401612f089493929190614db0565b6020604051808303816000875af1925050508015612f4457506040513d601f19601f82011682018060405250810190612f419190614e11565b60015b612fbd573d8060008114612f74576040519150601f19603f3d011682016040523d82523d6000602084013e612f79565b606091505b506000815103612fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061301b82612475565b613051576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061305b613600565b9050600081510361307b57604051806020016040528060008152506130a6565b8061308584613692565b604051602001613096929190614e7a565b6040516020818303038152906040525b915050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806131855750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806131dd5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b61323a5760008290505b81836131f391906144d6565b8111613238576001600f600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808061323090614b83565b9150506131e7565b505b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036132ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036132e6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132f36000858386613118565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506134b48673ffffffffffffffffffffffffffffffffffffffff16612e9d565b15613579575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135296000878480600101955087612ec0565b61355f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106134ba57826000541461357457600080fd5b6135e4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061357a575b8160008190555050506135fa600085838661311e565b50505050565b6060600a805461360f9061440a565b80601f016020809104026020016040519081016040528092919081815260200182805461363b9061440a565b80156136885780601f1061365d57610100808354040283529160200191613688565b820191906000526020600020905b81548152906001019060200180831161366b57829003601f168201915b5050505050905090565b6060600082036136d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137ed565b600082905060005b6000821461370b5780806136f490614b83565b915050600a826137049190614ecd565b91506136e1565b60008167ffffffffffffffff81111561372757613726613ce9565b5b6040519080825280601f01601f1916602001820160405280156137595781602001600182028036833780820191505090505b5090505b600085146137e6576001826137729190614efe565b9150600a856137819190614f32565b603061378d91906144d6565b60f81b8183815181106137a3576137a261464a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137df9190614ecd565b945061375d565b8093505050505b919050565b8280546137fe9061440a565b90600052602060002090601f0160209004810192826138205760008555613867565b82601f1061383957803560ff1916838001178555613867565b82800160010185558215613867579182015b8281111561386657823582559160200191906001019061384b565b5b50905061387491906138bb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138d45760008160009055506001016138bc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613921816138ec565b811461392c57600080fd5b50565b60008135905061393e81613918565b92915050565b60006020828403121561395a576139596138e2565b5b60006139688482850161392f565b91505092915050565b60008115159050919050565b61398681613971565b82525050565b60006020820190506139a1600083018461397d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e15780820151818401526020810190506139c6565b838111156139f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a12826139a7565b613a1c81856139b2565b9350613a2c8185602086016139c3565b613a35816139f6565b840191505092915050565b60006020820190508181036000830152613a5a8184613a07565b905092915050565b6000819050919050565b613a7581613a62565b8114613a8057600080fd5b50565b600081359050613a9281613a6c565b92915050565b600060208284031215613aae57613aad6138e2565b5b6000613abc84828501613a83565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613af082613ac5565b9050919050565b613b0081613ae5565b82525050565b6000602082019050613b1b6000830184613af7565b92915050565b613b2a81613ae5565b8114613b3557600080fd5b50565b600081359050613b4781613b21565b92915050565b60008060408385031215613b6457613b636138e2565b5b6000613b7285828601613b38565b9250506020613b8385828601613a83565b9150509250929050565b613b9681613a62565b82525050565b6000602082019050613bb16000830184613b8d565b92915050565b600060208284031215613bcd57613bcc6138e2565b5b6000613bdb84828501613b38565b91505092915050565b600080600060608486031215613bfd57613bfc6138e2565b5b6000613c0b86828701613b38565b9350506020613c1c86828701613b38565b9250506040613c2d86828701613a83565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613c5c57613c5b613c37565b5b8235905067ffffffffffffffff811115613c7957613c78613c3c565b5b602083019150836001820283011115613c9557613c94613c41565b5b9250929050565b60008060208385031215613cb357613cb26138e2565b5b600083013567ffffffffffffffff811115613cd157613cd06138e7565b5b613cdd85828601613c46565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d21826139f6565b810181811067ffffffffffffffff82111715613d4057613d3f613ce9565b5b80604052505050565b6000613d536138d8565b9050613d5f8282613d18565b919050565b600067ffffffffffffffff821115613d7f57613d7e613ce9565b5b602082029050602081019050919050565b6000613da3613d9e84613d64565b613d49565b90508083825260208201905060208402830185811115613dc657613dc5613c41565b5b835b81811015613def5780613ddb8882613a83565b845260208401935050602081019050613dc8565b5050509392505050565b600082601f830112613e0e57613e0d613c37565b5b8135613e1e848260208601613d90565b91505092915050565b600060208284031215613e3d57613e3c6138e2565b5b600082013567ffffffffffffffff811115613e5b57613e5a6138e7565b5b613e6784828501613df9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ea581613ae5565b82525050565b600067ffffffffffffffff82169050919050565b613ec881613eab565b82525050565b613ed781613971565b82525050565b606082016000820151613ef36000850182613e9c565b506020820151613f066020850182613ebf565b506040820151613f196040850182613ece565b50505050565b6000613f2b8383613edd565b60608301905092915050565b6000602082019050919050565b6000613f4f82613e70565b613f598185613e7b565b9350613f6483613e8c565b8060005b83811015613f95578151613f7c8882613f1f565b9750613f8783613f37565b925050600181019050613f68565b5085935050505092915050565b60006020820190508181036000830152613fbc8184613f44565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff981613a62565b82525050565b600061400b8383613ff0565b60208301905092915050565b6000602082019050919050565b600061402f82613fc4565b6140398185613fcf565b935061404483613fe0565b8060005b8381101561407557815161405c8882613fff565b975061406783614017565b925050600181019050614048565b5085935050505092915050565b6000602082019050818103600083015261409c8184614024565b905092915050565b6000806000606084860312156140bd576140bc6138e2565b5b60006140cb86828701613b38565b93505060206140dc86828701613a83565b92505060406140ed86828701613a83565b9150509250925092565b61410081613971565b811461410b57600080fd5b50565b60008135905061411d816140f7565b92915050565b6000806040838503121561413a576141396138e2565b5b600061414885828601613b38565b92505060206141598582860161410e565b9150509250929050565b60008083601f84011261417957614178613c37565b5b8235905067ffffffffffffffff81111561419657614195613c3c565b5b6020830191508360208202830111156141b2576141b1613c41565b5b9250929050565b600080602083850312156141d0576141cf6138e2565b5b600083013567ffffffffffffffff8111156141ee576141ed6138e7565b5b6141fa85828601614163565b92509250509250929050565b600080fd5b600067ffffffffffffffff82111561422657614225613ce9565b5b61422f826139f6565b9050602081019050919050565b82818337600083830152505050565b600061425e6142598461420b565b613d49565b90508281526020810184848401111561427a57614279614206565b5b61428584828561423c565b509392505050565b600082601f8301126142a2576142a1613c37565b5b81356142b284826020860161424b565b91505092915050565b600080600080608085870312156142d5576142d46138e2565b5b60006142e387828801613b38565b94505060206142f487828801613b38565b935050604061430587828801613a83565b925050606085013567ffffffffffffffff811115614326576143256138e7565b5b6143328782880161428d565b91505092959194509250565b6060820160008201516143546000850182613e9c565b5060208201516143676020850182613ebf565b50604082015161437a6040850182613ece565b50505050565b6000606082019050614395600083018461433e565b92915050565b600080604083850312156143b2576143b16138e2565b5b60006143c085828601613b38565b92505060206143d185828601613b38565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442257607f821691505b602082108103614435576144346143db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144716020836139b2565b915061447c8261443b565b602082019050919050565b600060208201905081810360008301526144a081614464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e182613a62565b91506144ec83613a62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614521576145206144a7565b5b828201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614562601f836139b2565b915061456d8261452c565b602082019050919050565b6000602082019050818103600083015261459181614555565b9050919050565b600081905092915050565b50565b60006145b3600083614598565b91506145be826145a3565b600082019050919050565b60006145d4826145a6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006146146010836139b2565b915061461f826145de565b602082019050919050565b6000602082019050818103600083015261464381614607565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f20626f7473207327696c20766f757320706c6169742e0000000000000000600082015250565b60006146af6018836139b2565b91506146ba82614679565b602082019050919050565b600060208201905081810360008301526146de816146a2565b9050919050565b60006146f082613a62565b91506146fb83613a62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614734576147336144a7565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f6620455448207472616e736665727265642060008201527f7468726f7567682e000000000000000000000000000000000000000000000000602082015250565b600061479b6028836139b2565b91506147a68261473f565b604082019050919050565b600060208201905081810360008301526147ca8161478e565b9050919050565b7f49276d20616672616964207765277265206f7574206f66204e6f74204f6b617960008201527f204c696f6e732e2e2e0000000000000000000000000000000000000000000000602082015250565b600061482d6029836139b2565b9150614838826147d1565b604082019050919050565b6000602082019050818103600083015261485c81614820565b9050919050565b7f4d696e74696e6720697320636c6f7365642e0000000000000000000000000000600082015250565b60006148996012836139b2565b91506148a482614863565b602082019050919050565b600060208201905081810360008301526148c88161488c565b9050919050565b7f546f6f206d616e79204e6f74204f6b6179204c696f6e73207065722077616c6c60008201527f65742e2054727920746f20627579206120666577206c6573732e000000000000602082015250565b600061492b603a836139b2565b9150614936826148cf565b604082019050919050565b6000602082019050818103600083015261495a8161491e565b9050919050565b7f4d696e74696e6720746f6f206d616e79204c696f6e7320696e206f6e6520747260008201527f616e73616374696f6e2100000000000000000000000000000000000000000000602082015250565b60006149bd602a836139b2565b91506149c882614961565b604082019050919050565b600060208201905081810360008301526149ec816149b0565b9050919050565b7f526566756e642065787069726564000000000000000000000000000000000000600082015250565b6000614a29600e836139b2565b9150614a34826149f3565b602082019050919050565b60006020820190508181036000830152614a5881614a1c565b9050919050565b7f43616e6e6f7420726566756e6420746f6b656e7320796f7520646f206e6f742060008201527f6f776e2100000000000000000000000000000000000000000000000000000000602082015250565b6000614abb6024836139b2565b9150614ac682614a5f565b604082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b7f43616e6e6f7420726566756e6420746f6b656e2061667465722069742077617360008201527f207265736f6c6421000000000000000000000000000000000000000000000000602082015250565b6000614b4d6028836139b2565b9150614b5882614af1565b604082019050919050565b60006020820190508181036000830152614b7c81614b40565b9050919050565b6000614b8e82613a62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bc057614bbf6144a7565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c276026836139b2565b9150614c3282614bcb565b604082019050919050565b60006020820190508181036000830152614c5681614c1a565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c93601d836139b2565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d25603a836139b2565b9150614d3082614cc9565b604082019050919050565b60006020820190508181036000830152614d5481614d18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d8282614d5b565b614d8c8185614d66565b9350614d9c8185602086016139c3565b614da5816139f6565b840191505092915050565b6000608082019050614dc56000830187613af7565b614dd26020830186613af7565b614ddf6040830185613b8d565b8181036060830152614df18184614d77565b905095945050505050565b600081519050614e0b81613918565b92915050565b600060208284031215614e2757614e266138e2565b5b6000614e3584828501614dfc565b91505092915050565b600081905092915050565b6000614e54826139a7565b614e5e8185614e3e565b9350614e6e8185602086016139c3565b80840191505092915050565b6000614e868285614e49565b9150614e928284614e49565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ed882613a62565b9150614ee383613a62565b925082614ef357614ef2614e9e565b5b828204905092915050565b6000614f0982613a62565b9150614f1483613a62565b925082821015614f2757614f266144a7565b5b828203905092915050565b6000614f3d82613a62565b9150614f4883613a62565b925082614f5857614f57614e9e565b5b82820690509291505056fea2646970667358221220b383fffa06070fef0d306eddf17251ae4dd0bc7145aed4ce162514aec19736a164736f6c634300080d0033

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.