ETH Price: $3,093.88 (-0.56%)
Gas: 2 Gwei

Token

INFTBUSY PASS (INFTBUSY)
 

Overview

Max Total Supply

3,333 INFTBUSY

Holders

1,391

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INFTBUSY
0x40b6d9400c7ea7fbbe38d851727de2e958795c11
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The project aims to block tracking, transaction tracking, and pre-mint registration functions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTBUSY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: NFTBUSY.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "./INFTBUSY.sol";
import "./ERC721A.sol";
import "./Ownable.sol";
import "./Strings.sol";

contract NFTBUSY is INFTBUSY, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 3000;

    uint256 public tokenPerAccountLimit = 50;

    string public baseURI;

    uint256 public mintPrice = 0.002 ether;

    SaleStatus public saleStatus = SaleStatus.PUBLIC;

    mapping(address => uint256) private _mintedCount;

    address private _paymentAddress;

    constructor(address paymentAddress, string memory _baseURI)
        ERC721A("INFTBUSY PASS", "INFTBUSY")
    {
        _paymentAddress = paymentAddress;
        baseURI = _baseURI;
    }

    modifier mintCheck(SaleStatus status, uint256 count) {
        require(saleStatus == status, "NB: Not operational");
        require(
            _totalMinted() + count <= maxSupply,
            "NB: Number of requested tokens will exceed max supply"
        );
        require(
            _mintedCount[msg.sender] + count <= tokenPerAccountLimit,
            "NB: Number of requested tokens will exceed the limit per account"
        );
        _;
    }

    function setMaxSupply(uint256 supply) external onlyOwner {
        maxSupply = supply;
    }

    function setTokenPerAccountLimit(uint256 limit) external onlyOwner {
        tokenPerAccountLimit = limit;
    }

    function setPaymentAddress(address paymentAddress)
        external
        override
        onlyOwner
    {
        _paymentAddress = paymentAddress;
    }


    function setMintPrice(uint256 price) external override onlyOwner {
        mintPrice = price;
    }


    function setBaseURL(string memory url) external override onlyOwner {
        baseURI = url;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = baseURI;
        return string(abi.encodePacked(currentBaseURI, tokenId.toString()));
    }

    function mint(uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PUBLIC, count)
    {
        require(
            msg.value >= count * mintPrice,
            "NB: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }


    function withdraw() external override onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "NB: Insufficient balance");
        (bool success, ) = payable(_paymentAddress).call{value: balance}("");
        require(success, "NB: Withdrawal failed");
    }

    function airdrop(address receiver,uint256 count) external override onlyOwner{
      require(totalSupply() + count < maxSupply,"can not mint");
      _safeMint(receiver, count);
    }

    function mintedCount(address mintAddress)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _mintedCount[mintAddress];
    }
}

File 1 of 7: 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 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 3 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

    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;
    }

    /**
     * @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);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 4 of 7: INFTBUSY.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface INFTBUSY {
    enum SaleStatus {
        PAUSED,
        PRESALE,
        PUBLIC
    }

    function setPaymentAddress(address paymentAddress) external;

    function setMintPrice(uint256) external;

    function setBaseURL(string memory url) external;

    function mint(uint256 count) external payable;

    function withdraw() external;

    function mintedCount(address mintAddress) external returns (uint256);

    function airdrop(address receiver,uint256 count) external;
}

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

pragma solidity ^0.8.0;

import "./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 7 of 7: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleStatus","outputs":[{"internalType":"enum INFTBUSY.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","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":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTokenPerAccountLimit","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":"tokenPerAccountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb86009556032600a5566071afd498d0000600c556002600d60006101000a81548160ff0219169083600281111562000043576200004262000566565b5b02179055503480156200005557600080fd5b5060405162003c9c38038062003c9c83398181016040528101906200007b9190620003cb565b6040518060400160405280600d81526020017f494e4654425553592050415353000000000000000000000000000000000000008152506040518060400160405280600881526020017f494e4654425553590000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000286565b5080600390805190602001906200011892919062000286565b5062000129620001b360201b60201c565b60008190555050506200015162000145620001b860201b60201c565b620001c060201b60201c565b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b9080519060200190620001aa92919062000286565b50505062000632565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029490620004fa565b90600052602060002090601f016020900481019282620002b8576000855562000304565b82601f10620002d357805160ff191683800117855562000304565b8280016001018555821562000304579182015b8281111562000303578251825591602001919060010190620002e6565b5b50905062000313919062000317565b5090565b5b808211156200033257600081600090555060010162000318565b5090565b60006200034d62000347846200045a565b62000431565b9050828152602081018484840111156200036c576200036b620005f8565b5b62000379848285620004c4565b509392505050565b600081519050620003928162000618565b92915050565b600082601f830112620003b057620003af620005f3565b5b8151620003c284826020860162000336565b91505092915050565b60008060408385031215620003e557620003e462000602565b5b6000620003f58582860162000381565b925050602083015167ffffffffffffffff811115620004195762000418620005fd565b5b620004278582860162000398565b9150509250929050565b60006200043d62000450565b90506200044b828262000530565b919050565b6000604051905090565b600067ffffffffffffffff821115620004785762000477620005c4565b5b620004838262000607565b9050602081019050919050565b60006200049d82620004a4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004e4578082015181840152602081019050620004c7565b83811115620004f4576000848401525b50505050565b600060028204905060018216806200051357607f821691505b602082108114156200052a576200052962000595565b5b50919050565b6200053b8262000607565b810181811067ffffffffffffffff821117156200055d576200055c620005c4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006238162000490565b81146200062f57600080fd5b50565b61365a80620006426000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063f2fde38b11610064578063f2fde38b14610687578063f4a0a528146106b0578063f9020e33146106d9578063fddcb5ea14610704576101d8565b8063b88d4fde146105b9578063c87b56dd146105e2578063d5abeb011461061f578063e985e9c51461064a576101d8565b806395d89b41116100d157806395d89b41146105205780639cd14e0f1461054b578063a0712d6814610574578063a22cb46514610590576101d8565b8063715018a61461048a5780638ba4cc3c146104a15780638da5cb5b146104ca5780638dc82301146104f5576101d8565b806342842e0e1161017a5780636817c76c116101495780636817c76c146103ce5780636c0360eb146103f95780636f8b44b01461042457806370a082311461044d576101d8565b806342842e0e1461031657806349f2553a1461033f5780635e1e1004146103685780636352211e14610391576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633ccfd60b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906128f5565b610741565b6040516102119190612cc5565b60405180910390f35b34801561022657600080fd5b5061022f6107d3565b60405161023c9190612cfb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612998565b610865565b6040516102799190612c5e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128b5565b6108e1565b005b3480156102b757600080fd5b506102c0610a88565b6040516102cd9190612e5d565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061279f565b610a9f565b005b34801561030b57600080fd5b50610314610aaf565b005b34801561032257600080fd5b5061033d6004803603810190610338919061279f565b610c45565b005b34801561034b57600080fd5b506103666004803603810190610361919061294f565b610c65565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612732565b610cfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612998565b610dbb565b6040516103c59190612c5e565b60405180910390f35b3480156103da57600080fd5b506103e3610dcd565b6040516103f09190612e5d565b60405180910390f35b34801561040557600080fd5b5061040e610dd3565b60405161041b9190612cfb565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612998565b610e61565b005b34801561045957600080fd5b50610474600480360381019061046f9190612732565b610ee7565b6040516104819190612e5d565b60405180910390f35b34801561049657600080fd5b5061049f610fa0565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906128b5565b611028565b005b3480156104d657600080fd5b506104df611108565b6040516104ec9190612c5e565b60405180910390f35b34801561050157600080fd5b5061050a611132565b6040516105179190612e5d565b60405180910390f35b34801561052c57600080fd5b50610535611138565b6040516105429190612cfb565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612998565b6111ca565b005b61058e60048036038101906105899190612998565b611250565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612875565b611463565b005b3480156105c557600080fd5b506105e060048036038101906105db91906127f2565b6115db565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612998565b61164e565b6040516106169190612cfb565b60405180910390f35b34801561062b57600080fd5b50610634611759565b6040516106419190612e5d565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061275f565b61175f565b60405161067e9190612cc5565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612732565b6117f3565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612998565b6118eb565b005b3480156106e557600080fd5b506106ee611971565b6040516106fb9190612ce0565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612732565b611984565b6040516107389190612e5d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e29061313d565b80601f016020809104026020016040519081016040528092919081815260200182805461080e9061313d565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b6000610870826119cd565b6108a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82611a2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610973611afa565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a611afa565b61175f565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a92611b02565b6001546000540303905090565b610aaa838383611b07565b505050565b610ab7611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610ad5611108565b73ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612d7d565b60405180910390fd5b600047905060008111610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612d5d565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610bbb90612c49565b60006040518083038185875af1925050503d8060008114610bf8576040519150601f19603f3d011682016040523d82523d6000602084013e610bfd565b606091505b5050905080610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890612dbd565b60405180910390fd5b5050565b610c60838383604051806020016040528060008152506115db565b505050565b610c6d611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610c8b611108565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612d7d565b60405180910390fd5b80600b9080519060200190610cf7929190612546565b5050565b610d03611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610d21611108565b73ffffffffffffffffffffffffffffffffffffffff1614610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90612d7d565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610dc682611a2c565b9050919050565b600c5481565b600b8054610de09061313d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c9061313d565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b505050505081565b610e69611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610e87611108565b73ffffffffffffffffffffffffffffffffffffffff1614610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490612d7d565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa8611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611108565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612d7d565b60405180910390fd5b6110266000611eb9565b565b611030611eb1565b73ffffffffffffffffffffffffffffffffffffffff1661104e611108565b73ffffffffffffffffffffffffffffffffffffffff16146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90612d7d565b60405180910390fd5b600954816110b0610a88565b6110ba9190612f4d565b106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612ddd565b60405180910390fd5b6111048282611f7f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600380546111479061313d565b80601f01602080910402602001604051908101604052809291908181526020018280546111739061313d565b80156111c05780601f10611195576101008083540402835291602001916111c0565b820191906000526020600020905b8154815290600101906020018083116111a357829003601f168201915b5050505050905090565b6111d2611eb1565b73ffffffffffffffffffffffffffffffffffffffff166111f0611108565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612d7d565b60405180910390fd5b80600a8190555050565b60028181600281111561126657611265613278565b5b600d60009054906101000a900460ff16600281111561128857611287613278565b5b146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90612d3d565b60405180910390fd5b600954816112d4611f9d565b6112de9190612f4d565b111561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612e1d565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136d9190612f4d565b11156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612e3d565b60405180910390fd5b600c54836113bc9190612fd4565b3410156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590612dfd565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144d9190612f4d565b9250508190555061145e3384611f7f565b505050565b61146b611afa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114dd611afa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158a611afa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cf9190612cc5565b60405180910390a35050565b6115e6848484611b07565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116485761161184848484611fb0565b611647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611659826119cd565b611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90612d9d565b60405180910390fd5b6000600b80546116a79061313d565b80601f01602080910402602001604051908101604052809291908181526020018280546116d39061313d565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b505050505090508061173184612110565b604051602001611742929190612c25565b604051602081830303815290604052915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117fb611eb1565b73ffffffffffffffffffffffffffffffffffffffff16611819611108565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612d1d565b60405180910390fd5b6118e881611eb9565b50565b6118f3611eb1565b73ffffffffffffffffffffffffffffffffffffffff16611911611108565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90612d7d565b60405180910390fd5b80600c8190555050565b600d60009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816119d8611b02565b111580156119e7575060005482105b8015611a25575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a3b611b02565b11611ac357600054811015611ac25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac0575b6000811415611ab6576004600083600190039350838152602001908152602001600020549050611a8b565b8092505050611af5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b1282611a2c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b79576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b9a611afa565b73ffffffffffffffffffffffffffffffffffffffff161480611bc95750611bc885611bc3611afa565b61175f565b5b80611c0e5750611bd7611afa565b73ffffffffffffffffffffffffffffffffffffffff16611bf684610865565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c47576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbb8585856001612271565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611db886612277565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611e42576000600184019050600060046000838152602001908152602001600020541415611e40576000548114611e3f578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eaa8585856001612281565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f99828260405180602001604052806000815250612287565b5050565b6000611fa7611b02565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd6611afa565b8786866040518563ffffffff1660e01b8152600401611ff89493929190612c79565b602060405180830381600087803b15801561201257600080fd5b505af192505050801561204357506040513d601f19601f820116820180604052508101906120409190612922565b60015b6120bd573d8060008114612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b506000815114156120b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612158576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226c565b600082905060005b6000821461218a578080612173906131a0565b915050600a826121839190612fa3565b9150612160565b60008167ffffffffffffffff8111156121a6576121a5613305565b5b6040519080825280601f01601f1916602001820160405280156121d85781602001600182028036833780820191505090505b5090505b60008514612265576001826121f1919061302e565b9150600a8561220091906131e9565b603061220c9190612f4d565b60f81b818381518110612222576122216132d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225e9190612fa3565b94506121dc565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561232f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61233c6000858386612271565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123a16001851461253c565b901b60a042901b6123b186612277565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124b5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124656000878480600101955087611fb0565b61249b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123f65782600054146124b057600080fd5b612520565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124b6575b8160008190555050506125366000858386612281565b50505050565b6000819050919050565b8280546125529061313d565b90600052602060002090601f01602090048101928261257457600085556125bb565b82601f1061258d57805160ff19168380011785556125bb565b828001600101855582156125bb579182015b828111156125ba57825182559160200191906001019061259f565b5b5090506125c891906125cc565b5090565b5b808211156125e55760008160009055506001016125cd565b5090565b60006125fc6125f784612e9d565b612e78565b90508281526020810184848401111561261857612617613339565b5b6126238482856130fb565b509392505050565b600061263e61263984612ece565b612e78565b90508281526020810184848401111561265a57612659613339565b5b6126658482856130fb565b509392505050565b60008135905061267c816135c8565b92915050565b600081359050612691816135df565b92915050565b6000813590506126a6816135f6565b92915050565b6000815190506126bb816135f6565b92915050565b600082601f8301126126d6576126d5613334565b5b81356126e68482602086016125e9565b91505092915050565b600082601f83011261270457612703613334565b5b813561271484826020860161262b565b91505092915050565b60008135905061272c8161360d565b92915050565b60006020828403121561274857612747613343565b5b60006127568482850161266d565b91505092915050565b6000806040838503121561277657612775613343565b5b60006127848582860161266d565b92505060206127958582860161266d565b9150509250929050565b6000806000606084860312156127b8576127b7613343565b5b60006127c68682870161266d565b93505060206127d78682870161266d565b92505060406127e88682870161271d565b9150509250925092565b6000806000806080858703121561280c5761280b613343565b5b600061281a8782880161266d565b945050602061282b8782880161266d565b935050604061283c8782880161271d565b925050606085013567ffffffffffffffff81111561285d5761285c61333e565b5b612869878288016126c1565b91505092959194509250565b6000806040838503121561288c5761288b613343565b5b600061289a8582860161266d565b92505060206128ab85828601612682565b9150509250929050565b600080604083850312156128cc576128cb613343565b5b60006128da8582860161266d565b92505060206128eb8582860161271d565b9150509250929050565b60006020828403121561290b5761290a613343565b5b600061291984828501612697565b91505092915050565b60006020828403121561293857612937613343565b5b6000612946848285016126ac565b91505092915050565b60006020828403121561296557612964613343565b5b600082013567ffffffffffffffff8111156129835761298261333e565b5b61298f848285016126ef565b91505092915050565b6000602082840312156129ae576129ad613343565b5b60006129bc8482850161271d565b91505092915050565b6129ce81613062565b82525050565b6129dd81613074565b82525050565b60006129ee82612eff565b6129f88185612f15565b9350612a0881856020860161310a565b612a1181613348565b840191505092915050565b612a25816130e9565b82525050565b6000612a3682612f0a565b612a408185612f31565b9350612a5081856020860161310a565b612a5981613348565b840191505092915050565b6000612a6f82612f0a565b612a798185612f42565b9350612a8981856020860161310a565b80840191505092915050565b6000612aa2602683612f31565b9150612aad82613359565b604082019050919050565b6000612ac5601383612f31565b9150612ad0826133a8565b602082019050919050565b6000612ae8601883612f31565b9150612af3826133d1565b602082019050919050565b6000612b0b602083612f31565b9150612b16826133fa565b602082019050919050565b6000612b2e602f83612f31565b9150612b3982613423565b604082019050919050565b6000612b51601583612f31565b9150612b5c82613472565b602082019050919050565b6000612b74600c83612f31565b9150612b7f8261349b565b602082019050919050565b6000612b97600083612f26565b9150612ba2826134c4565b600082019050919050565b6000612bba602683612f31565b9150612bc5826134c7565b604082019050919050565b6000612bdd603583612f31565b9150612be882613516565b604082019050919050565b6000612c00604083612f31565b9150612c0b82613565565b604082019050919050565b612c1f816130df565b82525050565b6000612c318285612a64565b9150612c3d8284612a64565b91508190509392505050565b6000612c5482612b8a565b9150819050919050565b6000602082019050612c7360008301846129c5565b92915050565b6000608082019050612c8e60008301876129c5565b612c9b60208301866129c5565b612ca86040830185612c16565b8181036060830152612cba81846129e3565b905095945050505050565b6000602082019050612cda60008301846129d4565b92915050565b6000602082019050612cf56000830184612a1c565b92915050565b60006020820190508181036000830152612d158184612a2b565b905092915050565b60006020820190508181036000830152612d3681612a95565b9050919050565b60006020820190508181036000830152612d5681612ab8565b9050919050565b60006020820190508181036000830152612d7681612adb565b9050919050565b60006020820190508181036000830152612d9681612afe565b9050919050565b60006020820190508181036000830152612db681612b21565b9050919050565b60006020820190508181036000830152612dd681612b44565b9050919050565b60006020820190508181036000830152612df681612b67565b9050919050565b60006020820190508181036000830152612e1681612bad565b9050919050565b60006020820190508181036000830152612e3681612bd0565b9050919050565b60006020820190508181036000830152612e5681612bf3565b9050919050565b6000602082019050612e726000830184612c16565b92915050565b6000612e82612e93565b9050612e8e828261316f565b919050565b6000604051905090565b600067ffffffffffffffff821115612eb857612eb7613305565b5b612ec182613348565b9050602081019050919050565b600067ffffffffffffffff821115612ee957612ee8613305565b5b612ef282613348565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f58826130df565b9150612f63836130df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9857612f9761321a565b5b828201905092915050565b6000612fae826130df565b9150612fb9836130df565b925082612fc957612fc8613249565b5b828204905092915050565b6000612fdf826130df565b9150612fea836130df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130235761302261321a565b5b828202905092915050565b6000613039826130df565b9150613044836130df565b9250828210156130575761305661321a565b5b828203905092915050565b600061306d826130bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506130ba826135b4565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006130f4826130ac565b9050919050565b82818337600083830152505050565b60005b8381101561312857808201518184015260208101905061310d565b83811115613137576000848401525b50505050565b6000600282049050600182168061315557607f821691505b60208210811415613169576131686132a7565b5b50919050565b61317882613348565b810181811067ffffffffffffffff8211171561319757613196613305565b5b80604052505050565b60006131ab826130df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131de576131dd61321a565b5b600182019050919050565b60006131f4826130df565b91506131ff836130df565b92508261320f5761320e613249565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e423a204e6f74206f7065726174696f6e616c00000000000000000000000000600082015250565b7f4e423a20496e73756666696369656e742062616c616e63650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e423a205769746864726177616c206661696c65640000000000000000000000600082015250565b7f63616e206e6f74206d696e740000000000000000000000000000000000000000600082015250565b50565b7f4e423a2045746865722076616c75652073656e74206973206e6f74207375666660008201527f696369656e740000000000000000000000000000000000000000000000000000602082015250565b7f4e423a204e756d626572206f662072657175657374656420746f6b656e73207760008201527f696c6c20657863656564206d617820737570706c790000000000000000000000602082015250565b7f4e423a204e756d626572206f662072657175657374656420746f6b656e73207760008201527f696c6c2065786365656420746865206c696d697420706572206163636f756e74602082015250565b600381106135c5576135c4613278565b5b50565b6135d181613062565b81146135dc57600080fd5b50565b6135e881613074565b81146135f357600080fd5b50565b6135ff81613080565b811461360a57600080fd5b50565b613616816130df565b811461362157600080fd5b5056fea26469706673582212209f7c41fe79cc1fa9878d845b57b96bd0ccf568c33c04b54725778945410c925364736f6c634300080700330000000000000000000000000c0129f67c7f3d1a5dfdf4e70bf4a802fb4305dc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f697066732e696f2f697066732f516d5a33386b394d41414c784a64454b6b755471444d6f6b737678636e523359796e423757334150676e715461313f66696c656e616d653d302e6a736f6e00000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063f2fde38b11610064578063f2fde38b14610687578063f4a0a528146106b0578063f9020e33146106d9578063fddcb5ea14610704576101d8565b8063b88d4fde146105b9578063c87b56dd146105e2578063d5abeb011461061f578063e985e9c51461064a576101d8565b806395d89b41116100d157806395d89b41146105205780639cd14e0f1461054b578063a0712d6814610574578063a22cb46514610590576101d8565b8063715018a61461048a5780638ba4cc3c146104a15780638da5cb5b146104ca5780638dc82301146104f5576101d8565b806342842e0e1161017a5780636817c76c116101495780636817c76c146103ce5780636c0360eb146103f95780636f8b44b01461042457806370a082311461044d576101d8565b806342842e0e1461031657806349f2553a1461033f5780635e1e1004146103685780636352211e14610391576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633ccfd60b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906128f5565b610741565b6040516102119190612cc5565b60405180910390f35b34801561022657600080fd5b5061022f6107d3565b60405161023c9190612cfb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612998565b610865565b6040516102799190612c5e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128b5565b6108e1565b005b3480156102b757600080fd5b506102c0610a88565b6040516102cd9190612e5d565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f8919061279f565b610a9f565b005b34801561030b57600080fd5b50610314610aaf565b005b34801561032257600080fd5b5061033d6004803603810190610338919061279f565b610c45565b005b34801561034b57600080fd5b506103666004803603810190610361919061294f565b610c65565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612732565b610cfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612998565b610dbb565b6040516103c59190612c5e565b60405180910390f35b3480156103da57600080fd5b506103e3610dcd565b6040516103f09190612e5d565b60405180910390f35b34801561040557600080fd5b5061040e610dd3565b60405161041b9190612cfb565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612998565b610e61565b005b34801561045957600080fd5b50610474600480360381019061046f9190612732565b610ee7565b6040516104819190612e5d565b60405180910390f35b34801561049657600080fd5b5061049f610fa0565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906128b5565b611028565b005b3480156104d657600080fd5b506104df611108565b6040516104ec9190612c5e565b60405180910390f35b34801561050157600080fd5b5061050a611132565b6040516105179190612e5d565b60405180910390f35b34801561052c57600080fd5b50610535611138565b6040516105429190612cfb565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612998565b6111ca565b005b61058e60048036038101906105899190612998565b611250565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612875565b611463565b005b3480156105c557600080fd5b506105e060048036038101906105db91906127f2565b6115db565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612998565b61164e565b6040516106169190612cfb565b60405180910390f35b34801561062b57600080fd5b50610634611759565b6040516106419190612e5d565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061275f565b61175f565b60405161067e9190612cc5565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612732565b6117f3565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612998565b6118eb565b005b3480156106e557600080fd5b506106ee611971565b6040516106fb9190612ce0565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612732565b611984565b6040516107389190612e5d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e29061313d565b80601f016020809104026020016040519081016040528092919081815260200182805461080e9061313d565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b6000610870826119cd565b6108a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82611a2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610973611afa565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a611afa565b61175f565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a92611b02565b6001546000540303905090565b610aaa838383611b07565b505050565b610ab7611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610ad5611108565b73ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612d7d565b60405180910390fd5b600047905060008111610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612d5d565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610bbb90612c49565b60006040518083038185875af1925050503d8060008114610bf8576040519150601f19603f3d011682016040523d82523d6000602084013e610bfd565b606091505b5050905080610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890612dbd565b60405180910390fd5b5050565b610c60838383604051806020016040528060008152506115db565b505050565b610c6d611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610c8b611108565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612d7d565b60405180910390fd5b80600b9080519060200190610cf7929190612546565b5050565b610d03611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610d21611108565b73ffffffffffffffffffffffffffffffffffffffff1614610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90612d7d565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610dc682611a2c565b9050919050565b600c5481565b600b8054610de09061313d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c9061313d565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b505050505081565b610e69611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610e87611108565b73ffffffffffffffffffffffffffffffffffffffff1614610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490612d7d565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa8611eb1565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611108565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612d7d565b60405180910390fd5b6110266000611eb9565b565b611030611eb1565b73ffffffffffffffffffffffffffffffffffffffff1661104e611108565b73ffffffffffffffffffffffffffffffffffffffff16146110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90612d7d565b60405180910390fd5b600954816110b0610a88565b6110ba9190612f4d565b106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612ddd565b60405180910390fd5b6111048282611f7f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600380546111479061313d565b80601f01602080910402602001604051908101604052809291908181526020018280546111739061313d565b80156111c05780601f10611195576101008083540402835291602001916111c0565b820191906000526020600020905b8154815290600101906020018083116111a357829003601f168201915b5050505050905090565b6111d2611eb1565b73ffffffffffffffffffffffffffffffffffffffff166111f0611108565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612d7d565b60405180910390fd5b80600a8190555050565b60028181600281111561126657611265613278565b5b600d60009054906101000a900460ff16600281111561128857611287613278565b5b146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90612d3d565b60405180910390fd5b600954816112d4611f9d565b6112de9190612f4d565b111561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612e1d565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136d9190612f4d565b11156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612e3d565b60405180910390fd5b600c54836113bc9190612fd4565b3410156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590612dfd565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144d9190612f4d565b9250508190555061145e3384611f7f565b505050565b61146b611afa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114dd611afa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158a611afa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cf9190612cc5565b60405180910390a35050565b6115e6848484611b07565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116485761161184848484611fb0565b611647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611659826119cd565b611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90612d9d565b60405180910390fd5b6000600b80546116a79061313d565b80601f01602080910402602001604051908101604052809291908181526020018280546116d39061313d565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b505050505090508061173184612110565b604051602001611742929190612c25565b604051602081830303815290604052915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117fb611eb1565b73ffffffffffffffffffffffffffffffffffffffff16611819611108565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612d1d565b60405180910390fd5b6118e881611eb9565b50565b6118f3611eb1565b73ffffffffffffffffffffffffffffffffffffffff16611911611108565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90612d7d565b60405180910390fd5b80600c8190555050565b600d60009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816119d8611b02565b111580156119e7575060005482105b8015611a25575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a3b611b02565b11611ac357600054811015611ac25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac0575b6000811415611ab6576004600083600190039350838152602001908152602001600020549050611a8b565b8092505050611af5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b1282611a2c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b79576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b9a611afa565b73ffffffffffffffffffffffffffffffffffffffff161480611bc95750611bc885611bc3611afa565b61175f565b5b80611c0e5750611bd7611afa565b73ffffffffffffffffffffffffffffffffffffffff16611bf684610865565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c47576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbb8585856001612271565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611db886612277565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611e42576000600184019050600060046000838152602001908152602001600020541415611e40576000548114611e3f578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eaa8585856001612281565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f99828260405180602001604052806000815250612287565b5050565b6000611fa7611b02565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd6611afa565b8786866040518563ffffffff1660e01b8152600401611ff89493929190612c79565b602060405180830381600087803b15801561201257600080fd5b505af192505050801561204357506040513d601f19601f820116820180604052508101906120409190612922565b60015b6120bd573d8060008114612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b506000815114156120b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612158576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226c565b600082905060005b6000821461218a578080612173906131a0565b915050600a826121839190612fa3565b9150612160565b60008167ffffffffffffffff8111156121a6576121a5613305565b5b6040519080825280601f01601f1916602001820160405280156121d85781602001600182028036833780820191505090505b5090505b60008514612265576001826121f1919061302e565b9150600a8561220091906131e9565b603061220c9190612f4d565b60f81b818381518110612222576122216132d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561225e9190612fa3565b94506121dc565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561232f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61233c6000858386612271565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123a16001851461253c565b901b60a042901b6123b186612277565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124b5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124656000878480600101955087611fb0565b61249b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123f65782600054146124b057600080fd5b612520565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124b6575b8160008190555050506125366000858386612281565b50505050565b6000819050919050565b8280546125529061313d565b90600052602060002090601f01602090048101928261257457600085556125bb565b82601f1061258d57805160ff19168380011785556125bb565b828001600101855582156125bb579182015b828111156125ba57825182559160200191906001019061259f565b5b5090506125c891906125cc565b5090565b5b808211156125e55760008160009055506001016125cd565b5090565b60006125fc6125f784612e9d565b612e78565b90508281526020810184848401111561261857612617613339565b5b6126238482856130fb565b509392505050565b600061263e61263984612ece565b612e78565b90508281526020810184848401111561265a57612659613339565b5b6126658482856130fb565b509392505050565b60008135905061267c816135c8565b92915050565b600081359050612691816135df565b92915050565b6000813590506126a6816135f6565b92915050565b6000815190506126bb816135f6565b92915050565b600082601f8301126126d6576126d5613334565b5b81356126e68482602086016125e9565b91505092915050565b600082601f83011261270457612703613334565b5b813561271484826020860161262b565b91505092915050565b60008135905061272c8161360d565b92915050565b60006020828403121561274857612747613343565b5b60006127568482850161266d565b91505092915050565b6000806040838503121561277657612775613343565b5b60006127848582860161266d565b92505060206127958582860161266d565b9150509250929050565b6000806000606084860312156127b8576127b7613343565b5b60006127c68682870161266d565b93505060206127d78682870161266d565b92505060406127e88682870161271d565b9150509250925092565b6000806000806080858703121561280c5761280b613343565b5b600061281a8782880161266d565b945050602061282b8782880161266d565b935050604061283c8782880161271d565b925050606085013567ffffffffffffffff81111561285d5761285c61333e565b5b612869878288016126c1565b91505092959194509250565b6000806040838503121561288c5761288b613343565b5b600061289a8582860161266d565b92505060206128ab85828601612682565b9150509250929050565b600080604083850312156128cc576128cb613343565b5b60006128da8582860161266d565b92505060206128eb8582860161271d565b9150509250929050565b60006020828403121561290b5761290a613343565b5b600061291984828501612697565b91505092915050565b60006020828403121561293857612937613343565b5b6000612946848285016126ac565b91505092915050565b60006020828403121561296557612964613343565b5b600082013567ffffffffffffffff8111156129835761298261333e565b5b61298f848285016126ef565b91505092915050565b6000602082840312156129ae576129ad613343565b5b60006129bc8482850161271d565b91505092915050565b6129ce81613062565b82525050565b6129dd81613074565b82525050565b60006129ee82612eff565b6129f88185612f15565b9350612a0881856020860161310a565b612a1181613348565b840191505092915050565b612a25816130e9565b82525050565b6000612a3682612f0a565b612a408185612f31565b9350612a5081856020860161310a565b612a5981613348565b840191505092915050565b6000612a6f82612f0a565b612a798185612f42565b9350612a8981856020860161310a565b80840191505092915050565b6000612aa2602683612f31565b9150612aad82613359565b604082019050919050565b6000612ac5601383612f31565b9150612ad0826133a8565b602082019050919050565b6000612ae8601883612f31565b9150612af3826133d1565b602082019050919050565b6000612b0b602083612f31565b9150612b16826133fa565b602082019050919050565b6000612b2e602f83612f31565b9150612b3982613423565b604082019050919050565b6000612b51601583612f31565b9150612b5c82613472565b602082019050919050565b6000612b74600c83612f31565b9150612b7f8261349b565b602082019050919050565b6000612b97600083612f26565b9150612ba2826134c4565b600082019050919050565b6000612bba602683612f31565b9150612bc5826134c7565b604082019050919050565b6000612bdd603583612f31565b9150612be882613516565b604082019050919050565b6000612c00604083612f31565b9150612c0b82613565565b604082019050919050565b612c1f816130df565b82525050565b6000612c318285612a64565b9150612c3d8284612a64565b91508190509392505050565b6000612c5482612b8a565b9150819050919050565b6000602082019050612c7360008301846129c5565b92915050565b6000608082019050612c8e60008301876129c5565b612c9b60208301866129c5565b612ca86040830185612c16565b8181036060830152612cba81846129e3565b905095945050505050565b6000602082019050612cda60008301846129d4565b92915050565b6000602082019050612cf56000830184612a1c565b92915050565b60006020820190508181036000830152612d158184612a2b565b905092915050565b60006020820190508181036000830152612d3681612a95565b9050919050565b60006020820190508181036000830152612d5681612ab8565b9050919050565b60006020820190508181036000830152612d7681612adb565b9050919050565b60006020820190508181036000830152612d9681612afe565b9050919050565b60006020820190508181036000830152612db681612b21565b9050919050565b60006020820190508181036000830152612dd681612b44565b9050919050565b60006020820190508181036000830152612df681612b67565b9050919050565b60006020820190508181036000830152612e1681612bad565b9050919050565b60006020820190508181036000830152612e3681612bd0565b9050919050565b60006020820190508181036000830152612e5681612bf3565b9050919050565b6000602082019050612e726000830184612c16565b92915050565b6000612e82612e93565b9050612e8e828261316f565b919050565b6000604051905090565b600067ffffffffffffffff821115612eb857612eb7613305565b5b612ec182613348565b9050602081019050919050565b600067ffffffffffffffff821115612ee957612ee8613305565b5b612ef282613348565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f58826130df565b9150612f63836130df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9857612f9761321a565b5b828201905092915050565b6000612fae826130df565b9150612fb9836130df565b925082612fc957612fc8613249565b5b828204905092915050565b6000612fdf826130df565b9150612fea836130df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130235761302261321a565b5b828202905092915050565b6000613039826130df565b9150613044836130df565b9250828210156130575761305661321a565b5b828203905092915050565b600061306d826130bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506130ba826135b4565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006130f4826130ac565b9050919050565b82818337600083830152505050565b60005b8381101561312857808201518184015260208101905061310d565b83811115613137576000848401525b50505050565b6000600282049050600182168061315557607f821691505b60208210811415613169576131686132a7565b5b50919050565b61317882613348565b810181811067ffffffffffffffff8211171561319757613196613305565b5b80604052505050565b60006131ab826130df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131de576131dd61321a565b5b600182019050919050565b60006131f4826130df565b91506131ff836130df565b92508261320f5761320e613249565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e423a204e6f74206f7065726174696f6e616c00000000000000000000000000600082015250565b7f4e423a20496e73756666696369656e742062616c616e63650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e423a205769746864726177616c206661696c65640000000000000000000000600082015250565b7f63616e206e6f74206d696e740000000000000000000000000000000000000000600082015250565b50565b7f4e423a2045746865722076616c75652073656e74206973206e6f74207375666660008201527f696369656e740000000000000000000000000000000000000000000000000000602082015250565b7f4e423a204e756d626572206f662072657175657374656420746f6b656e73207760008201527f696c6c20657863656564206d617820737570706c790000000000000000000000602082015250565b7f4e423a204e756d626572206f662072657175657374656420746f6b656e73207760008201527f696c6c2065786365656420746865206c696d697420706572206163636f756e74602082015250565b600381106135c5576135c4613278565b5b50565b6135d181613062565b81146135dc57600080fd5b50565b6135e881613074565b81146135f357600080fd5b50565b6135ff81613080565b811461360a57600080fd5b50565b613616816130df565b811461362157600080fd5b5056fea26469706673582212209f7c41fe79cc1fa9878d845b57b96bd0ccf568c33c04b54725778945410c925364736f6c63430008070033

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

0000000000000000000000000c0129f67c7f3d1a5dfdf4e70bf4a802fb4305dc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f697066732e696f2f697066732f516d5a33386b394d41414c784a64454b6b755471444d6f6b737678636e523359796e423757334150676e715461313f66696c656e616d653d302e6a736f6e00000000000000000000000000

-----Decoded View---------------
Arg [0] : paymentAddress (address): 0x0c0129f67c7F3D1A5dfDF4e70BF4A802FB4305dc
Arg [1] : _baseURI (string): https://ipfs.io/ipfs/QmZ38k9MAALxJdEKkuTqDMoksvxcnR3YynB7W3APgnqTa1?filename=0.json

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000c0129f67c7f3d1a5dfdf4e70bf4a802fb4305dc
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5a33386b394d41414c
Arg [4] : 784a64454b6b755471444d6f6b737678636e523359796e423757334150676e71
Arg [5] : 5461313f66696c656e616d653d302e6a736f6e00000000000000000000000000


Deployed Bytecode Sourcemap

163:3154:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5031:615:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12112:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11572:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4085:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2627:296:4;;;;;;;;;;;;;:::i;:::-;;13239:185:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1751:99:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1468:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9833:144:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;340:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1244:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5710:224:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:5;;;;;;;;;;;;;:::i;:::-;;2931:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;291:40:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10213:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1346:114:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2265:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12388:308:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13495:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1858:399:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;251:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12767:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1640:101:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;417:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3124:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5031:615:1;5116:4;5431:10;5416:25;;:11;:25;;;;:102;;;;5508:10;5493:25;;:11;:25;;;;5416:102;:179;;;;5585:10;5570:25;;:11;:25;;;;5416:179;5396:199;;5031:615;;;:::o;10044:100::-;10098:13;10131:5;10124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10044:100;:::o;12112:204::-;12180:7;12205:16;12213:7;12205;:16::i;:::-;12200:64;;12230:34;;;;;;;;;;;;;;12200:64;12284:15;:24;12300:7;12284:24;;;;;;;;;;;;;;;;;;;;;12277:31;;12112:204;;;:::o;11572:474::-;11645:13;11677:27;11696:7;11677:18;:27::i;:::-;11645:61;;11727:5;11721:11;;:2;:11;;;11717:48;;;11741:24;;;;;;;;;;;;;;11717:48;11805:5;11782:28;;:19;:17;:19::i;:::-;:28;;;11778:175;;11830:44;11847:5;11854:19;:17;:19::i;:::-;11830:16;:44::i;:::-;11825:128;;11902:35;;;;;;;;;;;;;;11825:128;11778:175;11992:2;11965:15;:24;11981:7;11965:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12030:7;12026:2;12010:28;;12019:5;12010:28;;;;;;;;;;;;11634:412;11572:474;;:::o;4085:315::-;4138:7;4366:15;:13;:15::i;:::-;4351:12;;4335:13;;:28;:46;4328:53;;4085:315;:::o;12998:170::-;13132:28;13142:4;13148:2;13152:7;13132:9;:28::i;:::-;12998:170;;;:::o;2627:296:4:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2686:15:4::1;2704:21;2686:39;;2754:1;2744:7;:11;2736:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;2796:12;2822:15;;;;;;;;;;;2814:29;;2851:7;2814:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2795:68;;;2882:7;2874:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2675:248;;2627:296::o:0;13239:185:1:-;13377:39;13394:4;13400:2;13404:7;13377:39;;;;;;;;;;;;:16;:39::i;:::-;13239:185;;;:::o;1751:99:4:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1839:3:4::1;1829:7;:13;;;;;;;;;;;;:::i;:::-;;1751:99:::0;:::o;1468:162::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1608:14:4::1;1590:15;;:32;;;;;;;;;;;;;;;;;;1468:162:::0;:::o;9833:144:1:-;9897:7;9940:27;9959:7;9940:18;:27::i;:::-;9917:52;;9833:144;;;:::o;370:38:4:-;;;;:::o;340:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1244:94::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1324:6:4::1;1312:9;:18;;;;1244:94:::0;:::o;5710:224:1:-;5774:7;5815:1;5798:19;;:5;:19;;;5794:60;;;5826:28;;;;;;;;;;;;;;5794:60;1049:13;5872:18;:25;5891:5;5872:25;;;;;;;;;;;;;;;;:54;5865:61;;5710:224;;;:::o;1714:103:5:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2931:185:4:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3048:9:4::1;;3040:5;3024:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:33;3016:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3082:26;3092:8;3102:5;3082:9;:26::i;:::-;2931:185:::0;;:::o;1063:87:5:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;291:40:4:-;;;;:::o;10213:104:1:-;10269:13;10302:7;10295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:104;:::o;1346:114:4:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1447:5:4::1;1424:20;:28;;;;1346:114:::0;:::o;2265:352::-;2366:17;2385:5;856:6;842:20;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;834:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;945:9;;936:5;919:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;897:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;1104:20;;1095:5;1068:12;:24;1081:10;1068:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;1046:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;2451:9:::1;;2443:5;:17;;;;:::i;:::-;2430:9;:30;;2408:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:5;2537:12;:24;2550:10;2537:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;2581:28;2591:10;2603:5;2581:9;:28::i;:::-;2265:352:::0;;;:::o;12388:308:1:-;12499:19;:17;:19::i;:::-;12487:31;;:8;:31;;;12483:61;;;12527:17;;;;;;;;;;;;;;12483:61;12609:8;12557:18;:39;12576:19;:17;:19::i;:::-;12557:39;;;;;;;;;;;;;;;:49;12597:8;12557:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12669:8;12633:55;;12648:19;:17;:19::i;:::-;12633:55;;;12679:8;12633:55;;;;;;:::i;:::-;;;;;;;;12388:308;;:::o;13495:396::-;13662:28;13672:4;13678:2;13682:7;13662:9;:28::i;:::-;13723:1;13705:2;:14;;;:19;13701:183;;13744:56;13775:4;13781:2;13785:7;13794:5;13744:30;:56::i;:::-;13739:145;;13828:40;;;;;;;;;;;;;;13739:145;13701:183;13495:396;;;;:::o;1858:399:4:-;1976:13;2029:16;2037:7;2029;:16::i;:::-;2007:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;2133:28;2164:7;2133:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2213:14;2229:18;:7;:16;:18::i;:::-;2196:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2182:67;;;1858:399;;;:::o;251:31::-;;;;:::o;12767:164:1:-;12864:4;12888:18;:25;12907:5;12888:25;;;;;;;;;;;;;;;:35;12914:8;12888:35;;;;;;;;;;;;;;;;;;;;;;;;;12881:42;;12767:164;;;;:::o;1972:201:5:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;1640:101:4:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1728:5:4::1;1716:9;:17;;;;1640:101:::0;:::o;417:48::-;;;;;;;;;;;;;:::o;3124:190::-;3249:7;3281:12;:25;3294:11;3281:25;;;;;;;;;;;;;;;;3274:32;;3124:190;;;:::o;14146:273:1:-;14203:4;14259:7;14240:15;:13;:15::i;:::-;:26;;:66;;;;;14293:13;;14283:7;:23;14240:66;:152;;;;;14391:1;1819:8;14344:17;:26;14362:7;14344:26;;;;;;;;;;;;:43;:48;14240:152;14220:172;;14146:273;;;:::o;7348:1129::-;7415:7;7435:12;7450:7;7435:22;;7518:4;7499:15;:13;:15::i;:::-;:23;7495:915;;7552:13;;7545:4;:20;7541:869;;;7590:14;7607:17;:23;7625:4;7607:23;;;;;;;;;;;;7590:40;;7723:1;1819:8;7696:6;:23;:28;7692:699;;;8215:113;8232:1;8222:6;:11;8215:113;;;8275:17;:25;8293:6;;;;;;;8275:25;;;;;;;;;;;;8266:34;;8215:113;;;8361:6;8354:13;;;;;;7692:699;7567:843;7541:869;7495:915;8438:31;;;;;;;;;;;;;;7348:1129;;;;:::o;28128:105::-;28188:7;28215:10;28208:17;;28128:105;:::o;3608:92::-;3664:7;3608:92;:::o;19385:2515::-;19500:27;19530;19549:7;19530:18;:27::i;:::-;19500:57;;19615:4;19574:45;;19590:19;19574:45;;;19570:86;;19628:28;;;;;;;;;;;;;;19570:86;19669:22;19718:4;19695:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;19739:43;19756:4;19762:19;:17;:19::i;:::-;19739:16;:43::i;:::-;19695:87;:147;;;;19823:19;:17;:19::i;:::-;19799:43;;:20;19811:7;19799:11;:20::i;:::-;:43;;;19695:147;19669:174;;19861:17;19856:66;;19887:35;;;;;;;;;;;;;;19856:66;19951:1;19937:16;;:2;:16;;;19933:52;;;19962:23;;;;;;;;;;;;;;19933:52;19998:43;20020:4;20026:2;20030:7;20039:1;19998:21;:43::i;:::-;20114:15;:24;20130:7;20114:24;;;;;;;;;;;;20107:31;;;;;;;;;;;20506:18;:24;20525:4;20506:24;;;;;;;;;;;;;;;;20504:26;;;;;;;;;;;;20575:18;:22;20594:2;20575:22;;;;;;;;;;;;;;;;20573:24;;;;;;;;;;;2101:8;1703:3;20956:15;:41;;20914:21;20932:2;20914:17;:21::i;:::-;:84;:128;20868:17;:26;20886:7;20868:26;;;;;;;;;;;:174;;;;21212:1;2101:8;21162:19;:46;:51;21158:626;;;21234:19;21266:1;21256:7;:11;21234:33;;21423:1;21389:17;:30;21407:11;21389:30;;;;;;;;;;;;:35;21385:384;;;21527:13;;21512:11;:28;21508:242;;21707:19;21674:17;:30;21692:11;21674:30;;;;;;;;;;;:52;;;;21508:242;21385:384;21215:569;21158:626;21831:7;21827:2;21812:27;;21821:4;21812:27;;;;;;;;;;;;21850:42;21871:4;21877:2;21881:7;21890:1;21850:20;:42::i;:::-;19489:2411;;19385:2515;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;2333:191:5:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;14503:104:1:-;14572:27;14582:2;14586:8;14572:27;;;;;;;;;;;;:9;:27::i;:::-;14503:104;;:::o;4498:285::-;4545:7;4749:15;:13;:15::i;:::-;4733:13;;:31;4726:38;;4498:285;:::o;25597:716::-;25760:4;25806:2;25781:45;;;25827:19;:17;:19::i;:::-;25848:4;25854:7;25863:5;25781:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25777:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26081:1;26064:6;:13;:18;26060:235;;;26110:40;;;;;;;;;;;;;;26060:235;26253:6;26247:13;26238:6;26234:2;26230:15;26223:38;25777:529;25950:54;;;25940:64;;;:6;:64;;;;25933:71;;;25597:716;;;;;;:::o;342:723:6:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;26961:159:1:-;;;;;:::o;11133:148::-;11197:14;11258:5;11248:15;;11133:148;;;:::o;27779:158::-;;;;;:::o;14980:2236::-;15103:20;15126:13;;15103:36;;15168:1;15154:16;;:2;:16;;;15150:48;;;15179:19;;;;;;;;;;;;;;15150:48;15225:1;15213:8;:13;15209:44;;;15235:18;;;;;;;;;;;;;;15209:44;15266:61;15296:1;15300:2;15304:12;15318:8;15266:21;:61::i;:::-;15870:1;1186:2;15841:1;:25;;15840:31;15828:8;:44;15802:18;:22;15821:2;15802:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1966:3;16271:29;16298:1;16286:8;:13;16271:14;:29::i;:::-;:56;;1703:3;16208:15;:41;;16166:21;16184:2;16166:17;:21::i;:::-;:84;:162;16115:17;:31;16133:12;16115:31;;;;;;;;;;;:213;;;;16345:20;16368:12;16345:35;;16395:11;16424:8;16409:12;:23;16395:37;;16471:1;16453:2;:14;;;:19;16449:635;;16493:313;16549:12;16545:2;16524:38;;16541:1;16524:38;;;;;;;;;;;;16590:69;16629:1;16633:2;16637:14;;;;;;16653:5;16590:30;:69::i;:::-;16585:174;;16695:40;;;;;;;;;;;;;;16585:174;16801:3;16786:12;:18;16493:313;;16887:12;16870:13;;:29;16866:43;;16901:8;;;16866:43;16449:635;;;16950:119;17006:14;;;;;;17002:2;16981:40;;16998:1;16981:40;;;;;;;;;;;;17064:3;17049:12;:18;16950:119;;16449:635;17114:12;17098:13;:28;;;;15579:1559;;17148:60;17177:1;17181:2;17185:12;17199:8;17148:20;:60::i;:::-;15092:2124;14980:2236;;;:::o;11368:142::-;11426:14;11487:5;11477:15;;11368:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:157::-;7863:50;7907:5;7863:50;:::i;:::-;7858:3;7851:63;7763:157;;:::o;7926:364::-;8014:3;8042:39;8075:5;8042:39;:::i;:::-;8097:71;8161:6;8156:3;8097:71;:::i;:::-;8090:78;;8177:52;8222:6;8217:3;8210:4;8203:5;8199:16;8177:52;:::i;:::-;8254:29;8276:6;8254:29;:::i;:::-;8249:3;8245:39;8238:46;;8018:272;7926:364;;;;:::o;8296:377::-;8402:3;8430:39;8463:5;8430:39;:::i;:::-;8485:89;8567:6;8562:3;8485:89;:::i;:::-;8478:96;;8583:52;8628:6;8623:3;8616:4;8609:5;8605:16;8583:52;:::i;:::-;8660:6;8655:3;8651:16;8644:23;;8406:267;8296:377;;;;:::o;8679:366::-;8821:3;8842:67;8906:2;8901:3;8842:67;:::i;:::-;8835:74;;8918:93;9007:3;8918:93;:::i;:::-;9036:2;9031:3;9027:12;9020:19;;8679:366;;;:::o;9051:::-;9193:3;9214:67;9278:2;9273:3;9214:67;:::i;:::-;9207:74;;9290:93;9379:3;9290:93;:::i;:::-;9408:2;9403:3;9399:12;9392:19;;9051:366;;;:::o;9423:::-;9565:3;9586:67;9650:2;9645:3;9586:67;:::i;:::-;9579:74;;9662:93;9751:3;9662:93;:::i;:::-;9780:2;9775:3;9771:12;9764:19;;9423:366;;;:::o;9795:::-;9937:3;9958:67;10022:2;10017:3;9958:67;:::i;:::-;9951:74;;10034:93;10123:3;10034:93;:::i;:::-;10152:2;10147:3;10143:12;10136:19;;9795:366;;;:::o;10167:::-;10309:3;10330:67;10394:2;10389:3;10330:67;:::i;:::-;10323:74;;10406:93;10495:3;10406:93;:::i;:::-;10524:2;10519:3;10515:12;10508:19;;10167:366;;;:::o;10539:::-;10681:3;10702:67;10766:2;10761:3;10702:67;:::i;:::-;10695:74;;10778:93;10867:3;10778:93;:::i;:::-;10896:2;10891:3;10887:12;10880:19;;10539:366;;;:::o;10911:::-;11053:3;11074:67;11138:2;11133:3;11074:67;:::i;:::-;11067:74;;11150:93;11239:3;11150:93;:::i;:::-;11268:2;11263:3;11259:12;11252:19;;10911:366;;;:::o;11283:398::-;11442:3;11463:83;11544:1;11539:3;11463:83;:::i;:::-;11456:90;;11555:93;11644:3;11555:93;:::i;:::-;11673:1;11668:3;11664:11;11657:18;;11283:398;;;:::o;11687:366::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:118::-;12890:24;12908:5;12890:24;:::i;:::-;12885:3;12878:37;12803:118;;:::o;12927:435::-;13107:3;13129:95;13220:3;13211:6;13129:95;:::i;:::-;13122:102;;13241:95;13332:3;13323:6;13241:95;:::i;:::-;13234:102;;13353:3;13346:10;;12927:435;;;;;:::o;13368:379::-;13552:3;13574:147;13717:3;13574:147;:::i;:::-;13567:154;;13738:3;13731:10;;13368:379;;;:::o;13753:222::-;13846:4;13884:2;13873:9;13869:18;13861:26;;13897:71;13965:1;13954:9;13950:17;13941:6;13897:71;:::i;:::-;13753:222;;;;:::o;13981:640::-;14176:4;14214:3;14203:9;14199:19;14191:27;;14228:71;14296:1;14285:9;14281:17;14272:6;14228:71;:::i;:::-;14309:72;14377:2;14366:9;14362:18;14353:6;14309:72;:::i;:::-;14391;14459:2;14448:9;14444:18;14435:6;14391:72;:::i;:::-;14510:9;14504:4;14500:20;14495:2;14484:9;14480:18;14473:48;14538:76;14609:4;14600:6;14538:76;:::i;:::-;14530:84;;13981:640;;;;;;;:::o;14627:210::-;14714:4;14752:2;14741:9;14737:18;14729:26;;14765:65;14827:1;14816:9;14812:17;14803:6;14765:65;:::i;:::-;14627:210;;;;:::o;14843:248::-;14949:4;14987:2;14976:9;14972:18;14964:26;;15000:84;15081:1;15070:9;15066:17;15057:6;15000:84;:::i;:::-;14843:248;;;;:::o;15097:313::-;15210:4;15248:2;15237:9;15233:18;15225:26;;15297:9;15291:4;15287:20;15283:1;15272:9;15268:17;15261:47;15325:78;15398:4;15389:6;15325:78;:::i;:::-;15317:86;;15097:313;;;;:::o;15416:419::-;15582:4;15620:2;15609:9;15605:18;15597:26;;15669:9;15663:4;15659:20;15655:1;15644:9;15640:17;15633:47;15697:131;15823:4;15697:131;:::i;:::-;15689:139;;15416:419;;;:::o;15841:::-;16007:4;16045:2;16034:9;16030:18;16022:26;;16094:9;16088:4;16084:20;16080:1;16069:9;16065:17;16058:47;16122:131;16248:4;16122:131;:::i;:::-;16114:139;;15841:419;;;:::o;16266:::-;16432:4;16470:2;16459:9;16455:18;16447:26;;16519:9;16513:4;16509:20;16505:1;16494:9;16490:17;16483:47;16547:131;16673:4;16547:131;:::i;:::-;16539:139;;16266:419;;;:::o;16691:::-;16857:4;16895:2;16884:9;16880:18;16872:26;;16944:9;16938:4;16934:20;16930:1;16919:9;16915:17;16908:47;16972:131;17098:4;16972:131;:::i;:::-;16964:139;;16691:419;;;:::o;17116:::-;17282:4;17320:2;17309:9;17305:18;17297:26;;17369:9;17363:4;17359:20;17355:1;17344:9;17340:17;17333:47;17397:131;17523:4;17397:131;:::i;:::-;17389:139;;17116:419;;;:::o;17541:::-;17707:4;17745:2;17734:9;17730:18;17722:26;;17794:9;17788:4;17784:20;17780:1;17769:9;17765:17;17758:47;17822:131;17948:4;17822:131;:::i;:::-;17814:139;;17541:419;;;:::o;17966:::-;18132:4;18170:2;18159:9;18155:18;18147:26;;18219:9;18213:4;18209:20;18205:1;18194:9;18190:17;18183:47;18247:131;18373:4;18247:131;:::i;:::-;18239:139;;17966:419;;;:::o;18391:::-;18557:4;18595:2;18584:9;18580:18;18572:26;;18644:9;18638:4;18634:20;18630:1;18619:9;18615:17;18608:47;18672:131;18798:4;18672:131;:::i;:::-;18664:139;;18391:419;;;:::o;18816:::-;18982:4;19020:2;19009:9;19005:18;18997:26;;19069:9;19063:4;19059:20;19055:1;19044:9;19040:17;19033:47;19097:131;19223:4;19097:131;:::i;:::-;19089:139;;18816:419;;;:::o;19241:::-;19407:4;19445:2;19434:9;19430:18;19422:26;;19494:9;19488:4;19484:20;19480:1;19469:9;19465:17;19458:47;19522:131;19648:4;19522:131;:::i;:::-;19514:139;;19241:419;;;:::o;19666:222::-;19759:4;19797:2;19786:9;19782:18;19774:26;;19810:71;19878:1;19867:9;19863:17;19854:6;19810:71;:::i;:::-;19666:222;;;;:::o;19894:129::-;19928:6;19955:20;;:::i;:::-;19945:30;;19984:33;20012:4;20004:6;19984:33;:::i;:::-;19894:129;;;:::o;20029:75::-;20062:6;20095:2;20089:9;20079:19;;20029:75;:::o;20110:307::-;20171:4;20261:18;20253:6;20250:30;20247:56;;;20283:18;;:::i;:::-;20247:56;20321:29;20343:6;20321:29;:::i;:::-;20313:37;;20405:4;20399;20395:15;20387:23;;20110:307;;;:::o;20423:308::-;20485:4;20575:18;20567:6;20564:30;20561:56;;;20597:18;;:::i;:::-;20561:56;20635:29;20657:6;20635:29;:::i;:::-;20627:37;;20719:4;20713;20709:15;20701:23;;20423:308;;;:::o;20737:98::-;20788:6;20822:5;20816:12;20806:22;;20737:98;;;:::o;20841:99::-;20893:6;20927:5;20921:12;20911:22;;20841:99;;;:::o;20946:168::-;21029:11;21063:6;21058:3;21051:19;21103:4;21098:3;21094:14;21079:29;;20946:168;;;;:::o;21120:147::-;21221:11;21258:3;21243:18;;21120:147;;;;:::o;21273:169::-;21357:11;21391:6;21386:3;21379:19;21431:4;21426:3;21422:14;21407:29;;21273:169;;;;:::o;21448:148::-;21550:11;21587:3;21572:18;;21448:148;;;;:::o;21602:305::-;21642:3;21661:20;21679:1;21661:20;:::i;:::-;21656:25;;21695:20;21713:1;21695:20;:::i;:::-;21690:25;;21849:1;21781:66;21777:74;21774:1;21771:81;21768:107;;;21855:18;;:::i;:::-;21768:107;21899:1;21896;21892:9;21885:16;;21602:305;;;;:::o;21913:185::-;21953:1;21970:20;21988:1;21970:20;:::i;:::-;21965:25;;22004:20;22022:1;22004:20;:::i;:::-;21999:25;;22043:1;22033:35;;22048:18;;:::i;:::-;22033:35;22090:1;22087;22083:9;22078:14;;21913:185;;;;:::o;22104:348::-;22144:7;22167:20;22185:1;22167:20;:::i;:::-;22162:25;;22201:20;22219:1;22201:20;:::i;:::-;22196:25;;22389:1;22321:66;22317:74;22314:1;22311:81;22306:1;22299:9;22292:17;22288:105;22285:131;;;22396:18;;:::i;:::-;22285:131;22444:1;22441;22437:9;22426:20;;22104:348;;;;:::o;22458:191::-;22498:4;22518:20;22536:1;22518:20;:::i;:::-;22513:25;;22552:20;22570:1;22552:20;:::i;:::-;22547:25;;22591:1;22588;22585:8;22582:34;;;22596:18;;:::i;:::-;22582:34;22641:1;22638;22634:9;22626:17;;22458:191;;;;:::o;22655:96::-;22692:7;22721:24;22739:5;22721:24;:::i;:::-;22710:35;;22655:96;;;:::o;22757:90::-;22791:7;22834:5;22827:13;22820:21;22809:32;;22757:90;;;:::o;22853:149::-;22889:7;22929:66;22922:5;22918:78;22907:89;;22853:149;;;:::o;23008:141::-;23060:7;23089:5;23078:16;;23095:48;23137:5;23095:48;:::i;:::-;23008:141;;;:::o;23155:126::-;23192:7;23232:42;23225:5;23221:54;23210:65;;23155:126;;;:::o;23287:77::-;23324:7;23353:5;23342:16;;23287:77;;;:::o;23370:141::-;23433:9;23466:39;23499:5;23466:39;:::i;:::-;23453:52;;23370:141;;;:::o;23517:154::-;23601:6;23596:3;23591;23578:30;23663:1;23654:6;23649:3;23645:16;23638:27;23517:154;;;:::o;23677:307::-;23745:1;23755:113;23769:6;23766:1;23763:13;23755:113;;;23854:1;23849:3;23845:11;23839:18;23835:1;23830:3;23826:11;23819:39;23791:2;23788:1;23784:10;23779:15;;23755:113;;;23886:6;23883:1;23880:13;23877:101;;;23966:1;23957:6;23952:3;23948:16;23941:27;23877:101;23726:258;23677:307;;;:::o;23990:320::-;24034:6;24071:1;24065:4;24061:12;24051:22;;24118:1;24112:4;24108:12;24139:18;24129:81;;24195:4;24187:6;24183:17;24173:27;;24129:81;24257:2;24249:6;24246:14;24226:18;24223:38;24220:84;;;24276:18;;:::i;:::-;24220:84;24041:269;23990:320;;;:::o;24316:281::-;24399:27;24421:4;24399:27;:::i;:::-;24391:6;24387:40;24529:6;24517:10;24514:22;24493:18;24481:10;24478:34;24475:62;24472:88;;;24540:18;;:::i;:::-;24472:88;24580:10;24576:2;24569:22;24359:238;24316:281;;:::o;24603:233::-;24642:3;24665:24;24683:5;24665:24;:::i;:::-;24656:33;;24711:66;24704:5;24701:77;24698:103;;;24781:18;;:::i;:::-;24698:103;24828:1;24821:5;24817:13;24810:20;;24603:233;;;:::o;24842:176::-;24874:1;24891:20;24909:1;24891:20;:::i;:::-;24886:25;;24925:20;24943:1;24925:20;:::i;:::-;24920:25;;24964:1;24954:35;;24969:18;;:::i;:::-;24954:35;25010:1;25007;25003:9;24998:14;;24842:176;;;;:::o;25024:180::-;25072:77;25069:1;25062:88;25169:4;25166:1;25159:15;25193:4;25190:1;25183:15;25210:180;25258:77;25255:1;25248:88;25355:4;25352:1;25345:15;25379:4;25376:1;25369:15;25396:180;25444:77;25441:1;25434:88;25541:4;25538:1;25531:15;25565:4;25562:1;25555:15;25582:180;25630:77;25627:1;25620:88;25727:4;25724:1;25717:15;25751:4;25748:1;25741:15;25768:180;25816:77;25813:1;25806:88;25913:4;25910:1;25903:15;25937:4;25934:1;25927:15;25954:180;26002:77;25999:1;25992:88;26099:4;26096:1;26089:15;26123:4;26120:1;26113:15;26140:117;26249:1;26246;26239:12;26263:117;26372:1;26369;26362:12;26386:117;26495:1;26492;26485:12;26509:117;26618:1;26615;26608:12;26632:102;26673:6;26724:2;26720:7;26715:2;26708:5;26704:14;26700:28;26690:38;;26632:102;;;:::o;26740:225::-;26880:34;26876:1;26868:6;26864:14;26857:58;26949:8;26944:2;26936:6;26932:15;26925:33;26740:225;:::o;26971:169::-;27111:21;27107:1;27099:6;27095:14;27088:45;26971:169;:::o;27146:174::-;27286:26;27282:1;27274:6;27270:14;27263:50;27146:174;:::o;27326:182::-;27466:34;27462:1;27454:6;27450:14;27443:58;27326:182;:::o;27514:234::-;27654:34;27650:1;27642:6;27638:14;27631:58;27723:17;27718:2;27710:6;27706:15;27699:42;27514:234;:::o;27754:171::-;27894:23;27890:1;27882:6;27878:14;27871:47;27754:171;:::o;27931:162::-;28071:14;28067:1;28059:6;28055:14;28048:38;27931:162;:::o;28099:114::-;;:::o;28219:225::-;28359:34;28355:1;28347:6;28343:14;28336:58;28428:8;28423:2;28415:6;28411:15;28404:33;28219:225;:::o;28450:240::-;28590:34;28586:1;28578:6;28574:14;28567:58;28659:23;28654:2;28646:6;28642:15;28635:48;28450:240;:::o;28696:251::-;28836:34;28832:1;28824:6;28820:14;28813:58;28905:34;28900:2;28892:6;28888:15;28881:59;28696:251;:::o;28953:120::-;29041:1;29034:5;29031:12;29021:46;;29047:18;;:::i;:::-;29021:46;28953:120;:::o;29079:122::-;29152:24;29170:5;29152:24;:::i;:::-;29145:5;29142:35;29132:63;;29191:1;29188;29181:12;29132:63;29079:122;:::o;29207:116::-;29277:21;29292:5;29277:21;:::i;:::-;29270:5;29267:32;29257:60;;29313:1;29310;29303:12;29257:60;29207:116;:::o;29329:120::-;29401:23;29418:5;29401:23;:::i;:::-;29394:5;29391:34;29381:62;;29439:1;29436;29429:12;29381:62;29329:120;:::o;29455:122::-;29528:24;29546:5;29528:24;:::i;:::-;29521:5;29518:35;29508:63;;29567:1;29564;29557:12;29508:63;29455:122;:::o

Swarm Source

ipfs://9f7c41fe79cc1fa9878d845b57b96bd0ccf568c33c04b54725778945410c9253
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.