ETH Price: $3,299.57 (+1.53%)
Gas: 2 Gwei

Token

0xTastyBones Official (0XTBNFT)
 

Overview

Max Total Supply

2,578 0XTBNFT

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 0XTBNFT
0xa3c0d3ee15dcb3c515b91165db07b8c23b21e69d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XTastyBones

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: TastyBonesNFT.sol



pragma solidity >=0.7.0 <0.9.0;




contract XTastyBones is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI = "ipfs://QmWKH4KNQat2pScZ8mzMzgSfbrNfVrEUQFYbwfPgrQj89S/";
  string public baseExtension = ".json";

  uint256 public cost = .01 ether;
  uint256 public maxSupply = 10000;

  bool public preSales = true;

  uint256 public freeMintMaxSupply = 0;

  uint256 private maxMintAmount = 20;
  
  bool public paused = true;

  uint256 public nftPerAddressLimit = 200;
  mapping(address => uint256) public addressMintedBalance;

  address[] public whitelistedAddresses;
  bool public enableWhitelist = false;

  bool public reveal = false;

  constructor(
    string memory _name,
    string memory _symbol
  ) ERC721A(_name, _symbol, maxMintAmount) {
  }

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

  modifier isSafeMint(uint256 _mintAmount){
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");

    uint256 supply = totalSupply();

    if(owner() != msg.sender){
      require(!paused, "the contract is paused");
      if(preSales){
        if(enableWhitelist){
          require(isWhitelisted(msg.sender), "user is not whitelisted");
        }
        require(supply + _mintAmount <= freeMintMaxSupply, "max FREE NFT limit exceeded");

        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
      }else{
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
      }
    }else{
      require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    }
    
    _;
  }

  // public
  function mint(uint256 _mintAmount) public payable isSafeMint(_mintAmount) {
    addressMintedBalance[msg.sender]+=_mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function setPreSales(bool _preSales) public onlyOwner{
    preSales = _preSales;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
  
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }
    
  function setFreeMintMaxSupply(uint256 _freeMintMaxSupply) public onlyOwner {
    freeMintMaxSupply = _freeMintMaxSupply;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setEnableWhitelist(bool _enableWhitelist) public onlyOwner{
    enableWhitelist = _enableWhitelist;
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function setReveal(bool _reveal) public onlyOwner {
    reveal = _reveal;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

    string memory currentBaseURI = _baseURI();

    if(reveal==false){
      return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, "hidden", baseExtension))
        : "";
    }
    
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enableWhitelist","type":"bool"}],"name":"setEnableWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMaxSupply","type":"uint256"}],"name":"setFreeMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSales","type":"bool"}],"name":"setPreSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000808055600755610100604052603660a0818152906200307260c03980516200003291600991602090910190620001db565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006191600a91620001db565b50662386f26fc10000600b55612710600c55600d8054600160ff1991821681179092556000600e556014600f81905560108054909216909217905560c8601155805461ffff19169055348015620000b757600080fd5b50604051620030a8380380620030a8833981016040819052620000da9162000338565b8181600f5460008111620001445760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b825162000159906001906020860190620001db565b5081516200016f906002906020850190620001db565b50608052506200018190503362000189565b5050620003f5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e990620003a2565b90600052602060002090601f0160209004810192826200020d576000855562000258565b82601f106200022857805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002585782518255916020019190600101906200023b565b50620002669291506200026a565b5090565b5b808211156200026657600081556001016200026b565b600082601f8301126200029357600080fd5b81516001600160401b0380821115620002b057620002b0620003df565b604051601f8301601f19908116603f01168101908282118183101715620002db57620002db620003df565b81604052838152602092508683858801011115620002f857600080fd5b600091505b838210156200031c5785820183015181830184015290820190620002fd565b838211156200032e5760008385830101525b9695505050505050565b600080604083850312156200034c57600080fd5b82516001600160401b03808211156200036457600080fd5b620003728683870162000281565b935060208501519150808211156200038957600080fd5b50620003988582860162000281565b9150509250929050565b600181811c90821680620003b757607f821691505b60208210811415620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612c536200041f60003960008181611d3e01528181611d6801526121aa0152612c536000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063ba4e5c49116100c1578063d5abeb011161007a578063d5abeb0114610777578063d7224ba01461078d578063da3ef23f146107a3578063e985e9c5146107c3578063edec5f271461080c578063f2fde38b1461082c57600080fd5b8063ba4e5c49146106d2578063ba7d2c76146106f2578063c668286214610708578063c87b56dd1461071d578063cdfb2b4e1461073d578063d0eb26b01461075757600080fd5b80639580585911610113578063958058591461063157806395d89b411461064b578063a0712d6814610660578063a22cb46514610673578063a475b5dd14610693578063b88d4fde146106b257600080fd5b8063715018a61461058857806376896d8c1461059d57806378f9ccf2146105bd5780637ac3ad7d146105dd5780638da5cb5b146105f357806391e58c781461061157600080fd5b80633af32abf116101fe57806355f804b3116101b757806355f804b3146104d95780635c975abb146104f95780636352211e146105135780636c0360eb146105335780636f8b44b01461054857806370a082311461056857600080fd5b80633af32abf146104245780633ccfd60b1461044457806342842e0e1461044c578063438b63001461046c57806344a0d68a146104995780634f6ccce7146104b957600080fd5b806313faede61161025057806313faede61461035e57806318160ddd1461038257806318cae2691461039757806323b872dd146103c45780632a3f300c146103e45780632f745c591461040457600080fd5b806301ffc9a71461028d57806302329a29146102c257806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461275a565b61084c565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461273f565b6108b9565b005b3480156102f057600080fd5b506102f96108ff565b6040516102b991906129b2565b34801561031257600080fd5b506103266103213660046127dd565b610991565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e26103593660046126a0565b610a1c565b34801561036a57600080fd5b50610374600b5481565b6040519081526020016102b9565b34801561038e57600080fd5b50600054610374565b3480156103a357600080fd5b506103746103b2366004612570565b60126020526000908152604090205481565b3480156103d057600080fd5b506102e26103df3660046125be565b610b34565b3480156103f057600080fd5b506102e26103ff36600461273f565b610b3f565b34801561041057600080fd5b5061037461041f3660046126a0565b610b83565b34801561043057600080fd5b506102ad61043f366004612570565b610cf1565b6102e2610d5b565b34801561045857600080fd5b506102e26104673660046125be565b610df9565b34801561047857600080fd5b5061048c610487366004612570565b610e14565b6040516102b9919061296e565b3480156104a557600080fd5b506102e26104b43660046127dd565b610eb6565b3480156104c557600080fd5b506103746104d43660046127dd565b610ee5565b3480156104e557600080fd5b506102e26104f4366004612794565b610f47565b34801561050557600080fd5b506010546102ad9060ff1681565b34801561051f57600080fd5b5061032661052e3660046127dd565b610f88565b34801561053f57600080fd5b506102f9610f9a565b34801561055457600080fd5b506102e26105633660046127dd565b611028565b34801561057457600080fd5b50610374610583366004612570565b611057565b34801561059457600080fd5b506102e26110e8565b3480156105a957600080fd5b506102e26105b83660046127dd565b61111e565b3480156105c957600080fd5b506102e26105d836600461273f565b61114d565b3480156105e957600080fd5b50610374600e5481565b3480156105ff57600080fd5b506008546001600160a01b0316610326565b34801561061d57600080fd5b506102e261062c36600461273f565b61118a565b34801561063d57600080fd5b50600d546102ad9060ff1681565b34801561065757600080fd5b506102f96111c7565b6102e261066e3660046127dd565b6111d6565b34801561067f57600080fd5b506102e261068e366004612676565b61154b565b34801561069f57600080fd5b506014546102ad90610100900460ff1681565b3480156106be57600080fd5b506102e26106cd3660046125fa565b611610565b3480156106de57600080fd5b506103266106ed3660046127dd565b611649565b3480156106fe57600080fd5b5061037460115481565b34801561071457600080fd5b506102f9611673565b34801561072957600080fd5b506102f96107383660046127dd565b611680565b34801561074957600080fd5b506014546102ad9060ff1681565b34801561076357600080fd5b506102e26107723660046127dd565b611792565b34801561078357600080fd5b50610374600c5481565b34801561079957600080fd5b5061037460075481565b3480156107af57600080fd5b506102e26107be366004612794565b6117c1565b3480156107cf57600080fd5b506102ad6107de36600461258b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081857600080fd5b506102e26108273660046126ca565b6117fe565b34801561083857600080fd5b506102e2610847366004612570565b611840565b60006001600160e01b031982166380ac58cd60e01b148061087d57506001600160e01b03198216635b5e139f60e01b145b8061089857506001600160e01b0319821663780e9d6360e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ec5760405162461bcd60e51b81526004016108e3906129c5565b60405180910390fd5b6010805460ff1916911515919091179055565b60606001805461090e90612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612b45565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099e826000541190565b610a005760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108e3565b506000908152600560205260409020546001600160a01b031690565b6000610a2782610f88565b9050806001600160a01b0316836001600160a01b03161415610a965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108e3565b336001600160a01b0382161480610ab25750610ab281336107de565b610b245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108e3565b610b2f8383836118d8565b505050565b610b2f838383611934565b6008546001600160a01b03163314610b695760405162461bcd60e51b81526004016108e3906129c5565b601480549115156101000261ff0019909216919091179055565b6000610b8e83611057565b8210610be75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108e3565b600080549080805b83811015610c91576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c4257805192505b876001600160a01b0316836001600160a01b03161415610c7e5786841415610c70575093506108b392505050565b83610c7a81612b80565b9450505b5080610c8981612b80565b915050610bef565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108e3565b6000805b601354811015610d5257826001600160a01b031660138281548110610d1c57610d1c612bdb565b6000918252602090912001546001600160a01b03161415610d405750600192915050565b80610d4a81612b80565b915050610cf5565b50600092915050565b6008546001600160a01b03163314610d855760405162461bcd60e51b81526004016108e3906129c5565b6000610d996008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de3576040519150601f19603f3d011682016040523d82523d6000602084013e610de8565b606091505b5050905080610df657600080fd5b50565b610b2f83838360405180602001604052806000815250611610565b60606000610e2183611057565b905060008167ffffffffffffffff811115610e3e57610e3e612bf1565b604051908082528060200260200182016040528015610e67578160200160208202803683370190505b50905060005b82811015610eae57610e7f8582610b83565b828281518110610e9157610e91612bdb565b602090810291909101015280610ea681612b80565b915050610e6d565b509392505050565b6008546001600160a01b03163314610ee05760405162461bcd60e51b81526004016108e3906129c5565b600b55565b600080548210610f435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108e3565b5090565b6008546001600160a01b03163314610f715760405162461bcd60e51b81526004016108e3906129c5565b8051610f849060099060208401906123c8565b5050565b6000610f9382611cbc565b5192915050565b60098054610fa790612b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390612b45565b80156110205780601f10610ff557610100808354040283529160200191611020565b820191906000526020600020905b81548152906001019060200180831161100357829003601f168201915b505050505081565b6008546001600160a01b031633146110525760405162461bcd60e51b81526004016108e3906129c5565b600c55565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108e3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111125760405162461bcd60e51b81526004016108e3906129c5565b61111c6000611e66565b565b6008546001600160a01b031633146111485760405162461bcd60e51b81526004016108e3906129c5565b600e55565b6008546001600160a01b031633146111775760405162461bcd60e51b81526004016108e3906129c5565b6014805460ff1916911515919091179055565b6008546001600160a01b031633146111b45760405162461bcd60e51b81526004016108e3906129c5565b600d805460ff1916911515919091179055565b60606002805461090e90612b45565b80600081116112275760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108e3565b600f548111156112855760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108e3565b6000546008546001600160a01b031633146114c85760105460ff16156112e65760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108e3565b600d5460ff161561141d5760145460ff16156113515761130533610cf1565b6113515760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108e3565b600e5461135e8383612a78565b11156113ac5760405162461bcd60e51b815260206004820152601b60248201527f6d61782046524545204e4654206c696d6974206578636565646564000000000060448201526064016108e3565b336000908152601260205260409020546011546113c98483612a78565b11156114175760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108e3565b5061151c565b600c5461142a8383612a78565b11156114715760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108e3565b81600b5461147f9190612aa4565b3410156114c35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108e3565b61151c565b600c546114d58383612a78565b111561151c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108e3565b336000908152601260205260408120805485929061153b908490612a78565b90915550610b2f90503384611eb8565b6001600160a01b0382163314156115a45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108e3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61161b848484611934565b61162784848484611ed2565b6116435760405162461bcd60e51b81526004016108e3906129fa565b50505050565b6013818154811061165957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a8054610fa790612b45565b606061168d826000541190565b6116f15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e3565b60006116fb611fe0565b601454909150610100900460ff1661175657600081511161172b576040518060200160405280600081525061174f565b80600a60405160200161173f9291906128f9565b6040516020818303038152906040525b9392505050565b6000815111611774576040518060200160405280600081525061174f565b8061177e84611fef565b600a60405160200161173f939291906128bc565b6008546001600160a01b031633146117bc5760405162461bcd60e51b81526004016108e3906129c5565b601155565b6008546001600160a01b031633146117eb5760405162461bcd60e51b81526004016108e3906129c5565b8051610f8490600a9060208401906123c8565b6008546001600160a01b031633146118285760405162461bcd60e51b81526004016108e3906129c5565b61183460136000612448565b610b2f60138383612466565b6008546001600160a01b0316331461186a5760405162461bcd60e51b81526004016108e3906129c5565b6001600160a01b0381166118cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b610df681611e66565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061193f82611cbc565b80519091506000906001600160a01b0316336001600160a01b0316148061197657503361196b84610991565b6001600160a01b0316145b806119885750815161198890336107de565b9050806119f25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108e3565b846001600160a01b031682600001516001600160a01b031614611a665760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108e3565b6001600160a01b038416611aca5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108e3565b611ada60008484600001516118d8565b6001600160a01b0385166000908152600460205260408120805460019290611b0c9084906001600160801b0316612ac3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b5891859116612a4d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611be0846001612a78565b6000818152600360205260409020549091506001600160a01b0316611c7257611c0a816000541190565b15611c725760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611cdb826000541190565b611d3a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108e3565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d9b57611d8d7f000000000000000000000000000000000000000000000000000000000000000084612aeb565b611d98906001612a78565b90505b825b818110611e05576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611df257949350505050565b5080611dfd81612b2e565b915050611d9d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f848282604051806020016040528060008152506120ed565b60006001600160a01b0384163b15611fd457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f16903390899088908890600401612931565b602060405180830381600087803b158015611f3057600080fd5b505af1925050508015611f60575060408051601f3d908101601f19168201909252611f5d91810190612777565b60015b611fba573d808015611f8e576040519150601f19603f3d011682016040523d82523d6000602084013e611f93565b606091505b508051611fb25760405162461bcd60e51b81526004016108e3906129fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd8565b5060015b949350505050565b60606009805461090e90612b45565b6060816120135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203d578061202781612b80565b91506120369050600a83612a90565b9150612017565b60008167ffffffffffffffff81111561205857612058612bf1565b6040519080825280601f01601f191660200182016040528015612082576020820181803683370190505b5090505b8415611fd857612097600183612aeb565b91506120a4600a86612b9b565b6120af906030612a78565b60f81b8183815181106120c4576120c4612bdb565b60200101906001600160f81b031916908160001a9053506120e6600a86612a90565b9450612086565b6000546001600160a01b0384166121505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108e3565b61215b816000541190565b156121a85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108e3565b7f00000000000000000000000000000000000000000000000000000000000000008311156122235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108e3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061227f908790612a4d565b6001600160801b0316815260200185836020015161229d9190612a4d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123bd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123816000888488611ed2565b61239d5760405162461bcd60e51b81526004016108e3906129fa565b816123a781612b80565b92505080806123b590612b80565b915050612334565b506000819055611cb4565b8280546123d490612b45565b90600052602060002090601f0160209004810192826123f6576000855561243c565b82601f1061240f57805160ff191683800117855561243c565b8280016001018555821561243c579182015b8281111561243c578251825591602001919060010190612421565b50610f439291506124b9565b5080546000825590600052602060002090810190610df691906124b9565b82805482825590600052602060002090810192821561243c579160200282015b8281111561243c5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612486565b5b80821115610f4357600081556001016124ba565b600067ffffffffffffffff808411156124e9576124e9612bf1565b604051601f8501601f19908116603f0116810190828211818310171561251157612511612bf1565b8160405280935085815286868601111561252a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255b57600080fd5b919050565b8035801515811461255b57600080fd5b60006020828403121561258257600080fd5b61174f82612544565b6000806040838503121561259e57600080fd5b6125a783612544565b91506125b560208401612544565b90509250929050565b6000806000606084860312156125d357600080fd5b6125dc84612544565b92506125ea60208501612544565b9150604084013590509250925092565b6000806000806080858703121561261057600080fd5b61261985612544565b935061262760208601612544565b925060408501359150606085013567ffffffffffffffff81111561264a57600080fd5b8501601f8101871361265b57600080fd5b61266a878235602084016124ce565b91505092959194509250565b6000806040838503121561268957600080fd5b61269283612544565b91506125b560208401612560565b600080604083850312156126b357600080fd5b6126bc83612544565b946020939093013593505050565b600080602083850312156126dd57600080fd5b823567ffffffffffffffff808211156126f557600080fd5b818501915085601f83011261270957600080fd5b81358181111561271857600080fd5b8660208260051b850101111561272d57600080fd5b60209290920196919550909350505050565b60006020828403121561275157600080fd5b61174f82612560565b60006020828403121561276c57600080fd5b813561174f81612c07565b60006020828403121561278957600080fd5b815161174f81612c07565b6000602082840312156127a657600080fd5b813567ffffffffffffffff8111156127bd57600080fd5b8201601f810184136127ce57600080fd5b611fd8848235602084016124ce565b6000602082840312156127ef57600080fd5b5035919050565b6000815180845261280e816020860160208601612b02565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061283c57607f831692505b602080841082141561285e57634e487b7160e01b600052602260045260246000fd5b8180156128725760018114612883576128b0565b60ff198616895284890196506128b0565b60008881526020902060005b868110156128a85781548b82015290850190830161288f565b505084890196505b50505050505092915050565b600084516128ce818460208901612b02565b8451908301906128e2818360208901612b02565b6128ee81830186612822565b979650505050505050565b6000835161290b818460208801612b02565b653434b23232b760d11b9083019081526129286006820185612822565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612964908301846127f6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129a65783518352928401929184019160010161298a565b50909695505050505050565b60208152600061174f60208301846127f6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a6f57612a6f612baf565b01949350505050565b60008219821115612a8b57612a8b612baf565b500190565b600082612a9f57612a9f612bc5565b500490565b6000816000190483118215151615612abe57612abe612baf565b500290565b60006001600160801b0383811690831681811015612ae357612ae3612baf565b039392505050565b600082821015612afd57612afd612baf565b500390565b60005b83811015612b1d578181015183820152602001612b05565b838111156116435750506000910152565b600081612b3d57612b3d612baf565b506000190190565b600181811c90821680612b5957607f821691505b60208210811415612b7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9457612b94612baf565b5060010190565b600082612baa57612baa612bc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df657600080fdfea264697066735822122037d479dab1b41be1bffc058da0694457f74b595f57377a650db2c896ece3a03464736f6c63430008070033697066733a2f2f516d574b48344b4e516174327053635a386d7a4d7a67536662724e6656724555514659627766506772516a3839532f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001530785461737479426f6e6573204f6666696369616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000007305854424e465400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063ba4e5c49116100c1578063d5abeb011161007a578063d5abeb0114610777578063d7224ba01461078d578063da3ef23f146107a3578063e985e9c5146107c3578063edec5f271461080c578063f2fde38b1461082c57600080fd5b8063ba4e5c49146106d2578063ba7d2c76146106f2578063c668286214610708578063c87b56dd1461071d578063cdfb2b4e1461073d578063d0eb26b01461075757600080fd5b80639580585911610113578063958058591461063157806395d89b411461064b578063a0712d6814610660578063a22cb46514610673578063a475b5dd14610693578063b88d4fde146106b257600080fd5b8063715018a61461058857806376896d8c1461059d57806378f9ccf2146105bd5780637ac3ad7d146105dd5780638da5cb5b146105f357806391e58c781461061157600080fd5b80633af32abf116101fe57806355f804b3116101b757806355f804b3146104d95780635c975abb146104f95780636352211e146105135780636c0360eb146105335780636f8b44b01461054857806370a082311461056857600080fd5b80633af32abf146104245780633ccfd60b1461044457806342842e0e1461044c578063438b63001461046c57806344a0d68a146104995780634f6ccce7146104b957600080fd5b806313faede61161025057806313faede61461035e57806318160ddd1461038257806318cae2691461039757806323b872dd146103c45780632a3f300c146103e45780632f745c591461040457600080fd5b806301ffc9a71461028d57806302329a29146102c257806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461275a565b61084c565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461273f565b6108b9565b005b3480156102f057600080fd5b506102f96108ff565b6040516102b991906129b2565b34801561031257600080fd5b506103266103213660046127dd565b610991565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e26103593660046126a0565b610a1c565b34801561036a57600080fd5b50610374600b5481565b6040519081526020016102b9565b34801561038e57600080fd5b50600054610374565b3480156103a357600080fd5b506103746103b2366004612570565b60126020526000908152604090205481565b3480156103d057600080fd5b506102e26103df3660046125be565b610b34565b3480156103f057600080fd5b506102e26103ff36600461273f565b610b3f565b34801561041057600080fd5b5061037461041f3660046126a0565b610b83565b34801561043057600080fd5b506102ad61043f366004612570565b610cf1565b6102e2610d5b565b34801561045857600080fd5b506102e26104673660046125be565b610df9565b34801561047857600080fd5b5061048c610487366004612570565b610e14565b6040516102b9919061296e565b3480156104a557600080fd5b506102e26104b43660046127dd565b610eb6565b3480156104c557600080fd5b506103746104d43660046127dd565b610ee5565b3480156104e557600080fd5b506102e26104f4366004612794565b610f47565b34801561050557600080fd5b506010546102ad9060ff1681565b34801561051f57600080fd5b5061032661052e3660046127dd565b610f88565b34801561053f57600080fd5b506102f9610f9a565b34801561055457600080fd5b506102e26105633660046127dd565b611028565b34801561057457600080fd5b50610374610583366004612570565b611057565b34801561059457600080fd5b506102e26110e8565b3480156105a957600080fd5b506102e26105b83660046127dd565b61111e565b3480156105c957600080fd5b506102e26105d836600461273f565b61114d565b3480156105e957600080fd5b50610374600e5481565b3480156105ff57600080fd5b506008546001600160a01b0316610326565b34801561061d57600080fd5b506102e261062c36600461273f565b61118a565b34801561063d57600080fd5b50600d546102ad9060ff1681565b34801561065757600080fd5b506102f96111c7565b6102e261066e3660046127dd565b6111d6565b34801561067f57600080fd5b506102e261068e366004612676565b61154b565b34801561069f57600080fd5b506014546102ad90610100900460ff1681565b3480156106be57600080fd5b506102e26106cd3660046125fa565b611610565b3480156106de57600080fd5b506103266106ed3660046127dd565b611649565b3480156106fe57600080fd5b5061037460115481565b34801561071457600080fd5b506102f9611673565b34801561072957600080fd5b506102f96107383660046127dd565b611680565b34801561074957600080fd5b506014546102ad9060ff1681565b34801561076357600080fd5b506102e26107723660046127dd565b611792565b34801561078357600080fd5b50610374600c5481565b34801561079957600080fd5b5061037460075481565b3480156107af57600080fd5b506102e26107be366004612794565b6117c1565b3480156107cf57600080fd5b506102ad6107de36600461258b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081857600080fd5b506102e26108273660046126ca565b6117fe565b34801561083857600080fd5b506102e2610847366004612570565b611840565b60006001600160e01b031982166380ac58cd60e01b148061087d57506001600160e01b03198216635b5e139f60e01b145b8061089857506001600160e01b0319821663780e9d6360e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ec5760405162461bcd60e51b81526004016108e3906129c5565b60405180910390fd5b6010805460ff1916911515919091179055565b60606001805461090e90612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612b45565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099e826000541190565b610a005760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108e3565b506000908152600560205260409020546001600160a01b031690565b6000610a2782610f88565b9050806001600160a01b0316836001600160a01b03161415610a965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108e3565b336001600160a01b0382161480610ab25750610ab281336107de565b610b245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108e3565b610b2f8383836118d8565b505050565b610b2f838383611934565b6008546001600160a01b03163314610b695760405162461bcd60e51b81526004016108e3906129c5565b601480549115156101000261ff0019909216919091179055565b6000610b8e83611057565b8210610be75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108e3565b600080549080805b83811015610c91576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c4257805192505b876001600160a01b0316836001600160a01b03161415610c7e5786841415610c70575093506108b392505050565b83610c7a81612b80565b9450505b5080610c8981612b80565b915050610bef565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108e3565b6000805b601354811015610d5257826001600160a01b031660138281548110610d1c57610d1c612bdb565b6000918252602090912001546001600160a01b03161415610d405750600192915050565b80610d4a81612b80565b915050610cf5565b50600092915050565b6008546001600160a01b03163314610d855760405162461bcd60e51b81526004016108e3906129c5565b6000610d996008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de3576040519150601f19603f3d011682016040523d82523d6000602084013e610de8565b606091505b5050905080610df657600080fd5b50565b610b2f83838360405180602001604052806000815250611610565b60606000610e2183611057565b905060008167ffffffffffffffff811115610e3e57610e3e612bf1565b604051908082528060200260200182016040528015610e67578160200160208202803683370190505b50905060005b82811015610eae57610e7f8582610b83565b828281518110610e9157610e91612bdb565b602090810291909101015280610ea681612b80565b915050610e6d565b509392505050565b6008546001600160a01b03163314610ee05760405162461bcd60e51b81526004016108e3906129c5565b600b55565b600080548210610f435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108e3565b5090565b6008546001600160a01b03163314610f715760405162461bcd60e51b81526004016108e3906129c5565b8051610f849060099060208401906123c8565b5050565b6000610f9382611cbc565b5192915050565b60098054610fa790612b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390612b45565b80156110205780601f10610ff557610100808354040283529160200191611020565b820191906000526020600020905b81548152906001019060200180831161100357829003601f168201915b505050505081565b6008546001600160a01b031633146110525760405162461bcd60e51b81526004016108e3906129c5565b600c55565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108e3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111125760405162461bcd60e51b81526004016108e3906129c5565b61111c6000611e66565b565b6008546001600160a01b031633146111485760405162461bcd60e51b81526004016108e3906129c5565b600e55565b6008546001600160a01b031633146111775760405162461bcd60e51b81526004016108e3906129c5565b6014805460ff1916911515919091179055565b6008546001600160a01b031633146111b45760405162461bcd60e51b81526004016108e3906129c5565b600d805460ff1916911515919091179055565b60606002805461090e90612b45565b80600081116112275760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108e3565b600f548111156112855760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108e3565b6000546008546001600160a01b031633146114c85760105460ff16156112e65760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108e3565b600d5460ff161561141d5760145460ff16156113515761130533610cf1565b6113515760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108e3565b600e5461135e8383612a78565b11156113ac5760405162461bcd60e51b815260206004820152601b60248201527f6d61782046524545204e4654206c696d6974206578636565646564000000000060448201526064016108e3565b336000908152601260205260409020546011546113c98483612a78565b11156114175760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108e3565b5061151c565b600c5461142a8383612a78565b11156114715760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108e3565b81600b5461147f9190612aa4565b3410156114c35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108e3565b61151c565b600c546114d58383612a78565b111561151c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108e3565b336000908152601260205260408120805485929061153b908490612a78565b90915550610b2f90503384611eb8565b6001600160a01b0382163314156115a45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108e3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61161b848484611934565b61162784848484611ed2565b6116435760405162461bcd60e51b81526004016108e3906129fa565b50505050565b6013818154811061165957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a8054610fa790612b45565b606061168d826000541190565b6116f15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e3565b60006116fb611fe0565b601454909150610100900460ff1661175657600081511161172b576040518060200160405280600081525061174f565b80600a60405160200161173f9291906128f9565b6040516020818303038152906040525b9392505050565b6000815111611774576040518060200160405280600081525061174f565b8061177e84611fef565b600a60405160200161173f939291906128bc565b6008546001600160a01b031633146117bc5760405162461bcd60e51b81526004016108e3906129c5565b601155565b6008546001600160a01b031633146117eb5760405162461bcd60e51b81526004016108e3906129c5565b8051610f8490600a9060208401906123c8565b6008546001600160a01b031633146118285760405162461bcd60e51b81526004016108e3906129c5565b61183460136000612448565b610b2f60138383612466565b6008546001600160a01b0316331461186a5760405162461bcd60e51b81526004016108e3906129c5565b6001600160a01b0381166118cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b610df681611e66565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061193f82611cbc565b80519091506000906001600160a01b0316336001600160a01b0316148061197657503361196b84610991565b6001600160a01b0316145b806119885750815161198890336107de565b9050806119f25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108e3565b846001600160a01b031682600001516001600160a01b031614611a665760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108e3565b6001600160a01b038416611aca5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108e3565b611ada60008484600001516118d8565b6001600160a01b0385166000908152600460205260408120805460019290611b0c9084906001600160801b0316612ac3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b5891859116612a4d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611be0846001612a78565b6000818152600360205260409020549091506001600160a01b0316611c7257611c0a816000541190565b15611c725760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611cdb826000541190565b611d3a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108e3565b60007f00000000000000000000000000000000000000000000000000000000000000148310611d9b57611d8d7f000000000000000000000000000000000000000000000000000000000000001484612aeb565b611d98906001612a78565b90505b825b818110611e05576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611df257949350505050565b5080611dfd81612b2e565b915050611d9d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f848282604051806020016040528060008152506120ed565b60006001600160a01b0384163b15611fd457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f16903390899088908890600401612931565b602060405180830381600087803b158015611f3057600080fd5b505af1925050508015611f60575060408051601f3d908101601f19168201909252611f5d91810190612777565b60015b611fba573d808015611f8e576040519150601f19603f3d011682016040523d82523d6000602084013e611f93565b606091505b508051611fb25760405162461bcd60e51b81526004016108e3906129fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd8565b5060015b949350505050565b60606009805461090e90612b45565b6060816120135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203d578061202781612b80565b91506120369050600a83612a90565b9150612017565b60008167ffffffffffffffff81111561205857612058612bf1565b6040519080825280601f01601f191660200182016040528015612082576020820181803683370190505b5090505b8415611fd857612097600183612aeb565b91506120a4600a86612b9b565b6120af906030612a78565b60f81b8183815181106120c4576120c4612bdb565b60200101906001600160f81b031916908160001a9053506120e6600a86612a90565b9450612086565b6000546001600160a01b0384166121505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108e3565b61215b816000541190565b156121a85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108e3565b7f00000000000000000000000000000000000000000000000000000000000000148311156122235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108e3565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061227f908790612a4d565b6001600160801b0316815260200185836020015161229d9190612a4d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123bd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123816000888488611ed2565b61239d5760405162461bcd60e51b81526004016108e3906129fa565b816123a781612b80565b92505080806123b590612b80565b915050612334565b506000819055611cb4565b8280546123d490612b45565b90600052602060002090601f0160209004810192826123f6576000855561243c565b82601f1061240f57805160ff191683800117855561243c565b8280016001018555821561243c579182015b8281111561243c578251825591602001919060010190612421565b50610f439291506124b9565b5080546000825590600052602060002090810190610df691906124b9565b82805482825590600052602060002090810192821561243c579160200282015b8281111561243c5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612486565b5b80821115610f4357600081556001016124ba565b600067ffffffffffffffff808411156124e9576124e9612bf1565b604051601f8501601f19908116603f0116810190828211818310171561251157612511612bf1565b8160405280935085815286868601111561252a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255b57600080fd5b919050565b8035801515811461255b57600080fd5b60006020828403121561258257600080fd5b61174f82612544565b6000806040838503121561259e57600080fd5b6125a783612544565b91506125b560208401612544565b90509250929050565b6000806000606084860312156125d357600080fd5b6125dc84612544565b92506125ea60208501612544565b9150604084013590509250925092565b6000806000806080858703121561261057600080fd5b61261985612544565b935061262760208601612544565b925060408501359150606085013567ffffffffffffffff81111561264a57600080fd5b8501601f8101871361265b57600080fd5b61266a878235602084016124ce565b91505092959194509250565b6000806040838503121561268957600080fd5b61269283612544565b91506125b560208401612560565b600080604083850312156126b357600080fd5b6126bc83612544565b946020939093013593505050565b600080602083850312156126dd57600080fd5b823567ffffffffffffffff808211156126f557600080fd5b818501915085601f83011261270957600080fd5b81358181111561271857600080fd5b8660208260051b850101111561272d57600080fd5b60209290920196919550909350505050565b60006020828403121561275157600080fd5b61174f82612560565b60006020828403121561276c57600080fd5b813561174f81612c07565b60006020828403121561278957600080fd5b815161174f81612c07565b6000602082840312156127a657600080fd5b813567ffffffffffffffff8111156127bd57600080fd5b8201601f810184136127ce57600080fd5b611fd8848235602084016124ce565b6000602082840312156127ef57600080fd5b5035919050565b6000815180845261280e816020860160208601612b02565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061283c57607f831692505b602080841082141561285e57634e487b7160e01b600052602260045260246000fd5b8180156128725760018114612883576128b0565b60ff198616895284890196506128b0565b60008881526020902060005b868110156128a85781548b82015290850190830161288f565b505084890196505b50505050505092915050565b600084516128ce818460208901612b02565b8451908301906128e2818360208901612b02565b6128ee81830186612822565b979650505050505050565b6000835161290b818460208801612b02565b653434b23232b760d11b9083019081526129286006820185612822565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612964908301846127f6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129a65783518352928401929184019160010161298a565b50909695505050505050565b60208152600061174f60208301846127f6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a6f57612a6f612baf565b01949350505050565b60008219821115612a8b57612a8b612baf565b500190565b600082612a9f57612a9f612bc5565b500490565b6000816000190483118215151615612abe57612abe612baf565b500290565b60006001600160801b0383811690831681811015612ae357612ae3612baf565b039392505050565b600082821015612afd57612afd612baf565b500390565b60005b83811015612b1d578181015183820152602001612b05565b838111156116435750506000910152565b600081612b3d57612b3d612baf565b506000190190565b600181811c90821680612b5957607f821691505b60208210811415612b7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9457612b94612baf565b5060010190565b600082612baa57612baa612bc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df657600080fdfea264697066735822122037d479dab1b41be1bffc058da0694457f74b595f57377a650db2c896ece3a03464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001530785461737479426f6e6573204f6666696369616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000007305854424e465400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 0xTastyBones Official
Arg [1] : _symbol (string): 0XTBNFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [3] : 30785461737479426f6e6573204f6666696369616c0000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 305854424e465400000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62175:4709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27405:372;;;;;;;;;;-1:-1:-1;27405:372:0;;;;;:::i;:::-;;:::i;:::-;;;8957:14:1;;8950:22;8932:41;;8920:2;8905:18;27405:372:0;;;;;;;;65392:73;;;;;;;;;;-1:-1:-1;65392:73:0;;;;;:::i;:::-;;:::i;:::-;;29210:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30771:214::-;;;;;;;;;;-1:-1:-1;30771:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7618:32:1;;;7600:51;;7588:2;7573:18;30771:214:0;7454:203:1;30292:413:0;;;;;;;;;;-1:-1:-1;30292:413:0;;;;;:::i;:::-;;:::i;62382:31::-;;;;;;;;;;;;;;;;;;;20287:25:1;;;20275:2;20260:18;62382:31:0;20141:177:1;25846:100:0;;;;;;;;;;-1:-1:-1;25899:7:0;25926:12;25846:100;;62653:55;;;;;;;;;;-1:-1:-1;62653:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;31647:162;;;;;;;;;;-1:-1:-1;31647:162:0;;;;;:::i;:::-;;:::i;65986:79::-;;;;;;;;;;-1:-1:-1;65986:79:0;;;;;:::i;:::-;;:::i;26510:823::-;;;;;;;;;;-1:-1:-1;26510:823:0;;;;;:::i;:::-;;:::i;65591:239::-;;;;;;;;;;-1:-1:-1;65591:239:0;;;;;:::i;:::-;;:::i;66072:145::-;;;:::i;31880:177::-;;;;;;;;;;-1:-1:-1;31880:177:0;;;;;:::i;:::-;;:::i;64372:348::-;;;;;;;;;;-1:-1:-1;64372:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65076:80::-;;;;;;;;;;-1:-1:-1;65076:80:0;;;;;:::i;:::-;;:::i;26023:187::-;;;;;;;;;;-1:-1:-1;26023:187:0;;;;;:::i;:::-;;:::i;65162:98::-;;;;;;;;;;-1:-1:-1;65162:98:0;;;;;:::i;:::-;;:::i;62577:25::-;;;;;;;;;;-1:-1:-1;62577:25:0;;;;;;;;29019:124;;;;;;;;;;-1:-1:-1;29019:124:0;;;;;:::i;:::-;;:::i;62253:80::-;;;;;;;;;;;;;:::i;64728:94::-;;;;;;;;;;-1:-1:-1;64728:94:0;;;;;:::i;:::-;;:::i;27841:221::-;;;;;;;;;;-1:-1:-1;27841:221:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;64832:126::-;;;;;;;;;;-1:-1:-1;64832:126:0;;;;;:::i;:::-;;:::i;65471:114::-;;;;;;;;;;-1:-1:-1;65471:114:0;;;;;:::i;:::-;;:::i;62491:36::-;;;;;;;;;;;;;;;;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;64280:86;;;;;;;;;;-1:-1:-1;64280:86:0;;;;;:::i;:::-;;:::i;62457:27::-;;;;;;;;;;-1:-1:-1;62457:27:0;;;;;;;;29379:104;;;;;;;;;;;;;:::i;64101:173::-;;;;;;:::i;:::-;;:::i;31057:288::-;;;;;;;;;;-1:-1:-1;31057:288:0;;;;;:::i;:::-;;:::i;62799:26::-;;;;;;;;;;-1:-1:-1;62799:26:0;;;;;;;;;;;32128:355;;;;;;;;;;-1:-1:-1;32128:355:0;;;;;:::i;:::-;;:::i;62715:37::-;;;;;;;;;;-1:-1:-1;62715:37:0;;;;;:::i;:::-;;:::i;62609:39::-;;;;;;;;;;;;;;;;62338:37;;;;;;;;;;;;;:::i;66280:601::-;;;;;;;;;;-1:-1:-1;66280:601:0;;;;;:::i;:::-;;:::i;62757:35::-;;;;;;;;;;-1:-1:-1;62757:35:0;;;;;;;;64964:104;;;;;;;;;;-1:-1:-1;64964:104:0;;;;;:::i;:::-;;:::i;62418:32::-;;;;;;;;;;;;;;;;36788:43;;;;;;;;;;;;;;;;65266:122;;;;;;;;;;-1:-1:-1;65266:122:0;;;;;:::i;:::-;;:::i;31416:164::-;;;;;;;;;;-1:-1:-1;31416:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31537:25:0;;;31513:4;31537:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31416:164;65836:144;;;;;;;;;;-1:-1:-1;65836:144:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;27405:372::-;27507:4;-1:-1:-1;;;;;;27544:40:0;;-1:-1:-1;;;27544:40:0;;:105;;-1:-1:-1;;;;;;;27601:48:0;;-1:-1:-1;;;27601:48:0;27544:105;:172;;;-1:-1:-1;;;;;;;27666:50:0;;-1:-1:-1;;;27666:50:0;27544:172;:225;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27733:36;27524:245;27405:372;-1:-1:-1;;27405:372:0:o;65392:73::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;65444:6:::1;:15:::0;;-1:-1:-1;;65444:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65392:73::o;29210:100::-;29264:13;29297:5;29290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29210:100;:::o;30771:214::-;30839:7;30867:16;30875:7;32795:4;32829:12;-1:-1:-1;32819:22:0;32738:111;30867:16;30859:74;;;;-1:-1:-1;;;30859:74:0;;19170:2:1;30859:74:0;;;19152:21:1;19209:2;19189:18;;;19182:30;19248:34;19228:18;;;19221:62;-1:-1:-1;;;19299:18:1;;;19292:43;19352:19;;30859:74:0;18968:409:1;30859:74:0;-1:-1:-1;30953:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30953:24:0;;30771:214::o;30292:413::-;30365:13;30381:24;30397:7;30381:15;:24::i;:::-;30365:40;;30430:5;-1:-1:-1;;;;;30424:11:0;:2;-1:-1:-1;;;;;30424:11:0;;;30416:58;;;;-1:-1:-1;;;30416:58:0;;16057:2:1;30416:58:0;;;16039:21:1;16096:2;16076:18;;;16069:30;16135:34;16115:18;;;16108:62;-1:-1:-1;;;16186:18:1;;;16179:32;16228:19;;30416:58:0;15855:398:1;30416:58:0;2916:10;-1:-1:-1;;;;;30509:21:0;;;;:62;;-1:-1:-1;30534:37:0;30551:5;2916:10;31416:164;:::i;30534:37::-;30487:169;;;;-1:-1:-1;;;30487:169:0;;12154:2:1;30487:169:0;;;12136:21:1;12193:2;12173:18;;;12166:30;12232:34;12212:18;;;12205:62;12303:27;12283:18;;;12276:55;12348:19;;30487:169:0;11952:421:1;30487:169:0;30669:28;30678:2;30682:7;30691:5;30669:8;:28::i;:::-;30354:351;30292:413;;:::o;31647:162::-;31773:28;31783:4;31789:2;31793:7;31773:9;:28::i;65986:79::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;66043:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;66043:16:0;;::::1;::::0;;;::::1;::::0;;65986:79::o;26510:823::-;26599:7;26635:16;26645:5;26635:9;:16::i;:::-;26627:5;:24;26619:71;;;;-1:-1:-1;;;26619:71:0;;9410:2:1;26619:71:0;;;9392:21:1;9449:2;9429:18;;;9422:30;9488:34;9468:18;;;9461:62;-1:-1:-1;;;9539:18:1;;;9532:32;9581:19;;26619:71:0;9208:398:1;26619:71:0;26701:22;25926:12;;;26701:22;;26833:426;26857:14;26853:1;:18;26833:426;;;26893:31;26927:14;;;:11;:14;;;;;;;;;26893:48;;;;;;;;;-1:-1:-1;;;;;26893:48:0;;;;;-1:-1:-1;;;26893:48:0;;;;;;;;;;;;26960:28;26956:103;;27029:14;;;-1:-1:-1;26956:103:0;27098:5;-1:-1:-1;;;;;27077:26:0;:17;-1:-1:-1;;;;;27077:26:0;;27073:175;;;27143:5;27128:11;:20;27124:77;;;-1:-1:-1;27180:1:0;-1:-1:-1;27173:8:0;;-1:-1:-1;;;27173:8:0;27124:77;27219:13;;;;:::i;:::-;;;;27073:175;-1:-1:-1;26873:3:0;;;;:::i;:::-;;;;26833:426;;;-1:-1:-1;27269:56:0;;-1:-1:-1;;;27269:56:0;;17987:2:1;27269:56:0;;;17969:21:1;18026:2;18006:18;;;17999:30;18065:34;18045:18;;;18038:62;-1:-1:-1;;;18116:18:1;;;18109:44;18170:19;;27269:56:0;17785:410:1;65591:239:0;65650:4;;65663:143;65684:20;:27;65680:31;;65663:143;;;65758:5;-1:-1:-1;;;;;65731:32:0;:20;65752:1;65731:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;65731:23:0;:32;65727:72;;;-1:-1:-1;65785:4:0;;65591:239;-1:-1:-1;;65591:239:0:o;65727:72::-;65713:3;;;;:::i;:::-;;;;65663:143;;;-1:-1:-1;65819:5:0;;65591:239;-1:-1:-1;;65591:239:0:o;66072:145::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;66125:7:::1;66146;4185:6:::0;;-1:-1:-1;;;;;4185:6:0;;4112:87;66146:7:::1;-1:-1:-1::0;;;;;66138:21:0::1;66167;66138:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66124:69;;;66208:2;66200:11;;;::::0;::::1;;66117:100;66072:145::o:0;31880:177::-;32010:39;32027:4;32033:2;32037:7;32010:39;;;;;;;;;;;;:16;:39::i;64372:348::-;64447:16;64475:23;64501:17;64511:6;64501:9;:17::i;:::-;64475:43;;64525:25;64567:15;64553:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64553:30:0;;64525:58;;64595:9;64590:103;64610:15;64606:1;:19;64590:103;;;64655:30;64675:6;64683:1;64655:19;:30::i;:::-;64641:8;64650:1;64641:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;64627:3;;;;:::i;:::-;;;;64590:103;;;-1:-1:-1;64706:8:0;64372:348;-1:-1:-1;;;64372:348:0:o;65076:80::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65135:4:::1;:15:::0;65076:80::o;26023:187::-;26090:7;25926:12;;26118:5;:21;26110:69;;;;-1:-1:-1;;;26110:69:0;;11344:2:1;26110:69:0;;;11326:21:1;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:33;11516:19;;26110:69:0;11142:399:1;26110:69:0;-1:-1:-1;26197:5:0;26023:187::o;65162:98::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65233:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65162:98:::0;:::o;29019:124::-;29083:7;29110:20;29122:7;29110:11;:20::i;:::-;:25;;29019:124;-1:-1:-1;;29019:124:0:o;62253:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64728:94::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;64794:9:::1;:22:::0;64728:94::o;27841:221::-;27905:7;-1:-1:-1;;;;;27933:19:0;;27925:75;;;;-1:-1:-1;;;27925:75:0;;13336:2:1;27925:75:0;;;13318:21:1;13375:2;13355:18;;;13348:30;13414:34;13394:18;;;13387:62;-1:-1:-1;;;13465:18:1;;;13458:41;13516:19;;27925:75:0;13134:407:1;27925:75:0;-1:-1:-1;;;;;;28026:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28026:27:0;;27841:221::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;64832:126::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;64914:17:::1;:38:::0;64832:126::o;65471:114::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65545:15:::1;:34:::0;;-1:-1:-1;;65545:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65471:114::o;64280:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;64340:8:::1;:20:::0;;-1:-1:-1;;64340:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64280:86::o;29379:104::-;29435:13;29468:7;29461:14;;;;;:::i;64101:173::-;64162:11;63146:1;63132:11;:15;63124:55;;;;-1:-1:-1;;;63124:55:0;;19584:2:1;63124:55:0;;;19566:21:1;19623:2;19603:18;;;19596:30;19662:29;19642:18;;;19635:57;19709:18;;63124:55:0;19382:351:1;63124:55:0;63209:13;;63194:11;:28;;63186:77;;;;-1:-1:-1;;;63186:77:0;;12931:2:1;63186:77:0;;;12913:21:1;12970:2;12950:18;;;12943:30;13009:34;12989:18;;;12982:62;-1:-1:-1;;;13060:18:1;;;13053:34;13104:19;;63186:77:0;12729:400:1;63186:77:0;63272:14;25926:12;4185:6;;-1:-1:-1;;;;;4185:6:0;63325:10;63314:21;63311:752;;63354:6;;;;63353:7;63345:42;;;;-1:-1:-1;;;63345:42:0;;14516:2:1;63345:42:0;;;14498:21:1;14555:2;14535:18;;;14528:30;-1:-1:-1;;;14574:18:1;;;14567:52;14636:18;;63345:42:0;14314:346:1;63345:42:0;63399:8;;;;63396:571;;;63422:15;;;;63419:105;;;63459:25;63473:10;63459:13;:25::i;:::-;63451:61;;;;-1:-1:-1;;;63451:61:0;;18402:2:1;63451:61:0;;;18384:21:1;18441:2;18421:18;;;18414:30;18480:25;18460:18;;;18453:53;18523:18;;63451:61:0;18200:347:1;63451:61:0;63566:17;;63542:20;63551:11;63542:6;:20;:::i;:::-;:41;;63534:81;;;;-1:-1:-1;;;63534:81:0;;10631:2:1;63534:81:0;;;10613:21:1;10670:2;10650:18;;;10643:30;10709:29;10689:18;;;10682:57;10756:18;;63534:81:0;10429:351:1;63534:81:0;63676:10;63628:24;63655:32;;;:20;:32;;;;;;63740:18;;63706:30;63725:11;63655:32;63706:30;:::i;:::-;:52;;63698:93;;;;-1:-1:-1;;;63698:93:0;;10987:2:1;63698:93:0;;;10969:21:1;11026:2;11006:18;;;10999:30;11065;11045:18;;;11038:58;11113:18;;63698:93:0;10785:352:1;63698:93:0;63408:393;63311:752;;63396:571;63848:9;;63824:20;63833:11;63824:6;:20;:::i;:::-;:33;;63816:68;;;;-1:-1:-1;;;63816:68:0;;12580:2:1;63816:68:0;;;12562:21:1;12619:2;12599:18;;;12592:30;-1:-1:-1;;;12638:18:1;;;12631:52;12700:18;;63816:68:0;12378:346:1;63816:68:0;63923:11;63916:4;;:18;;;;:::i;:::-;63903:9;:31;;63895:62;;;;-1:-1:-1;;;63895:62:0;;16460:2:1;63895:62:0;;;16442:21:1;16499:2;16479:18;;;16472:30;-1:-1:-1;;;16518:18:1;;;16511:48;16576:18;;63895:62:0;16258:342:1;63895:62:0;63311:752;;;64019:9;;63995:20;64004:11;63995:6;:20;:::i;:::-;:33;;63987:68;;;;-1:-1:-1;;;63987:68:0;;12580:2:1;63987:68:0;;;12562:21:1;12619:2;12599:18;;;12592:30;-1:-1:-1;;;12638:18:1;;;12631:52;12700:18;;63987:68:0;12378:346:1;63987:68:0;64203:10:::1;64182:32;::::0;;;:20:::1;:32;::::0;;;;:45;;64216:11;;64182:32;:45:::1;::::0;64216:11;;64182:45:::1;:::i;:::-;::::0;;;-1:-1:-1;64234:34:0::1;::::0;-1:-1:-1;64244:10:0::1;64256:11:::0;64234:9:::1;:34::i;31057:288::-:0;-1:-1:-1;;;;;31152:24:0;;2916:10;31152:24;;31144:63;;;;-1:-1:-1;;;31144:63:0;;15283:2:1;31144:63:0;;;15265:21:1;15322:2;15302:18;;;15295:30;15361:28;15341:18;;;15334:56;15407:18;;31144:63:0;15081:350:1;31144:63:0;2916:10;31220:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31220:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31220:53:0;;;;;;;;;;31289:48;;8932:41:1;;;31220:42:0;;2916:10;31289:48;;8905:18:1;31289:48:0;;;;;;;31057:288;;:::o;32128:355::-;32287:28;32297:4;32303:2;32307:7;32287:9;:28::i;:::-;32348:48;32371:4;32377:2;32381:7;32390:5;32348:22;:48::i;:::-;32326:149;;;;-1:-1:-1;;;32326:149:0;;;;;;;:::i;:::-;32128:355;;;;:::o;62715:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62715:37:0;;-1:-1:-1;62715:37:0;:::o;62338:::-;;;;;;;:::i;66280:601::-;66378:13;66419:16;66427:7;32795:4;32829:12;-1:-1:-1;32819:22:0;32738:111;66419:16;66403:97;;;;-1:-1:-1;;;66403:97:0;;14867:2:1;66403:97:0;;;14849:21:1;14906:2;14886:18;;;14879:30;14945:34;14925:18;;;14918:62;-1:-1:-1;;;14996:18:1;;;14989:45;15051:19;;66403:97:0;14665:411:1;66403:97:0;66509:28;66540:10;:8;:10::i;:::-;66562:6;;66509:41;;-1:-1:-1;66562:6:0;;;;;66559:164;;66623:1;66598:14;66592:28;:32;:123;;;;;;;;;;;;;;;;;66660:14;66686:13;66643:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66592:123;66585:130;66280:601;-1:-1:-1;;;66280:601:0:o;66559:164::-;66773:1;66748:14;66742:28;:32;:133;;;;;;;;;;;;;;;;;66810:14;66826:18;:7;:16;:18::i;:::-;66846:13;66793:67;;;;;;;;;;:::i;64964:104::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65035:18:::1;:27:::0;64964:104::o;65266:122::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65349:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;65836:144::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;65911:27:::1;65918:20;;65911:27;:::i;:::-;65945:29;:20;65968:6:::0;;65945:29:::1;:::i;5021:201::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;9813:2:1;5102:73:0::1;::::0;::::1;9795:21:1::0;9852:2;9832:18;;;9825:30;9891:34;9871:18;;;9864:62;-1:-1:-1;;;9942:18:1;;;9935:36;9988:19;;5102:73:0::1;9611:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;36584:196::-:0;36699:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36699:29:0;-1:-1:-1;;;;;36699:29:0;;;;;;;;;36744:28;;36699:24;;36744:28;;;;;;;36584:196;;;:::o;34892:1574::-;35007:35;35045:20;35057:7;35045:11;:20::i;:::-;35120:18;;35007:58;;-1:-1:-1;35078:22:0;;-1:-1:-1;;;;;35104:34:0;2916:10;-1:-1:-1;;;;;35104:34:0;;:87;;;-1:-1:-1;2916:10:0;35155:20;35167:7;35155:11;:20::i;:::-;-1:-1:-1;;;;;35155:36:0;;35104:87;:154;;;-1:-1:-1;35225:18:0;;35208:50;;2916:10;31416:164;:::i;35208:50::-;35078:181;;35280:17;35272:80;;;;-1:-1:-1;;;35272:80:0;;15638:2:1;35272:80:0;;;15620:21:1;15677:2;15657:18;;;15650:30;15716:34;15696:18;;;15689:62;-1:-1:-1;;;15767:18:1;;;15760:48;15825:19;;35272:80:0;15436:414:1;35272:80:0;35395:4;-1:-1:-1;;;;;35373:26:0;:13;:18;;;-1:-1:-1;;;;;35373:26:0;;35365:77;;;;-1:-1:-1;;;35365:77:0;;13748:2:1;35365:77:0;;;13730:21:1;13787:2;13767:18;;;13760:30;13826:34;13806:18;;;13799:62;-1:-1:-1;;;13877:18:1;;;13870:36;13923:19;;35365:77:0;13546:402:1;35365:77:0;-1:-1:-1;;;;;35461:16:0;;35453:66;;;;-1:-1:-1;;;35453:66:0;;11748:2:1;35453:66:0;;;11730:21:1;11787:2;11767:18;;;11760:30;11826:34;11806:18;;;11799:62;-1:-1:-1;;;11877:18:1;;;11870:35;11922:19;;35453:66:0;11546:401:1;35453:66:0;35640:49;35657:1;35661:7;35670:13;:18;;;35640:8;:49::i;:::-;-1:-1:-1;;;;;35702:18:0;;;;;;:12;:18;;;;;:31;;35732:1;;35702:18;:31;;35732:1;;-1:-1:-1;;;;;35702:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35702:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35744:16:0;;-1:-1:-1;35744:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35744:16:0;;:29;;-1:-1:-1;;35744:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35744:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35807:43:0;;;;;;;;-1:-1:-1;;;;;35807:43:0;;;;;;35833:15;35807:43;;;;;;;;;-1:-1:-1;35784:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35784:66:0;-1:-1:-1;;;;;;35784:66:0;;;;;;;;;;;36112:11;35796:7;-1:-1:-1;36112:11:0;:::i;:::-;36179:1;36138:24;;;:11;:24;;;;;:29;36090:33;;-1:-1:-1;;;;;;36138:29:0;36134:227;;36202:20;36210:11;32795:4;32829:12;-1:-1:-1;32819:22:0;32738:111;36202:20;36198:152;;;36270:64;;;;;;;;36285:18;;-1:-1:-1;;;;;36270:64:0;;;;;;36305:28;;;;36270:64;;;;;;;;;;-1:-1:-1;36243:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36243:91:0;-1:-1:-1;;;;;;36243:91:0;;;;;;;;;;;;36198:152;36397:7;36393:2;-1:-1:-1;;;;;36378:27:0;36387:4;-1:-1:-1;;;;;36378:27:0;;;;;;;;;;;36416:42;34996:1470;;;34892:1574;;;:::o;28307:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;28410:16:0;28418:7;32795:4;32829:12;-1:-1:-1;32819:22:0;32738:111;28410:16;28402:71;;;;-1:-1:-1;;;28402:71:0;;10220:2:1;28402:71:0;;;10202:21:1;10259:2;10239:18;;;10232:30;10298:34;10278:18;;;10271:62;-1:-1:-1;;;10349:18:1;;;10342:40;10399:19;;28402:71:0;10018:406:1;28402:71:0;28486:26;28538:12;28527:7;:23;28523:103;;28588:22;28598:12;28588:7;:22;:::i;:::-;:26;;28613:1;28588:26;:::i;:::-;28567:47;;28523:103;28658:7;28638:242;28675:18;28667:4;:26;28638:242;;28718:31;28752:17;;;:11;:17;;;;;;;;;28718:51;;;;;;;;;-1:-1:-1;;;;;28718:51:0;;;;;-1:-1:-1;;;28718:51:0;;;;;;;;;;;;28788:28;28784:85;;28844:9;28307:650;-1:-1:-1;;;;28307:650:0:o;28784:85::-;-1:-1:-1;28695:6:0;;;;:::i;:::-;;;;28638:242;;;-1:-1:-1;28892:57:0;;-1:-1:-1;;;28892:57:0;;18754:2:1;28892:57:0;;;18736:21:1;18793:2;18773:18;;;18766:30;18832:34;18812:18;;;18805:62;-1:-1:-1;;;18883:18:1;;;18876:45;18938:19;;28892:57:0;18552:411:1;5382:191:0;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;32857:104::-;32926:27;32936:2;32940:8;32926:27;;;;;;;;;;;;:9;:27::i;38394:804::-;38549:4;-1:-1:-1;;;;;38570:13:0;;7108:19;:23;38566:625;;38606:72;;-1:-1:-1;;;38606:72:0;;-1:-1:-1;;;;;38606:36:0;;;;;:72;;2916:10;;38657:4;;38663:7;;38672:5;;38606:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38606:72:0;;;;;;;;-1:-1:-1;;38606:72:0;;;;;;;;;;;;:::i;:::-;;;38602:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38852:13:0;;38848:273;;38895:61;;-1:-1:-1;;;38895:61:0;;;;;;;:::i;38848:273::-;39071:6;39065:13;39056:6;39052:2;39048:15;39041:38;38602:534;-1:-1:-1;;;;;;38729:55:0;-1:-1:-1;;;38729:55:0;;-1:-1:-1;38722:62:0;;38566:625;-1:-1:-1;39175:4:0;38566:625;38394:804;;;;;;:::o;62969:102::-;63029:13;63058:7;63051:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;33238:1400;33361:20;33384:12;-1:-1:-1;;;;;33415:16:0;;33407:62;;;;-1:-1:-1;;;33407:62:0;;17585:2:1;33407:62:0;;;17567:21:1;17624:2;17604:18;;;17597:30;17663:34;17643:18;;;17636:62;-1:-1:-1;;;17714:18:1;;;17707:31;17755:19;;33407:62:0;17383:397:1;33407:62:0;33614:21;33622:12;32795:4;32829:12;-1:-1:-1;32819:22:0;32738:111;33614:21;33613:22;33605:64;;;;-1:-1:-1;;;33605:64:0;;17227:2:1;33605:64:0;;;17209:21:1;17266:2;17246:18;;;17239:30;17305:31;17285:18;;;17278:59;17354:18;;33605:64:0;17025:353:1;33605:64:0;33700:12;33688:8;:24;;33680:71;;;;-1:-1:-1;;;33680:71:0;;19940:2:1;33680:71:0;;;19922:21:1;19979:2;19959:18;;;19952:30;20018:34;19998:18;;;19991:62;-1:-1:-1;;;20069:18:1;;;20062:32;20111:19;;33680:71:0;19738:398:1;33680:71:0;-1:-1:-1;;;;;33871:16:0;;33838:30;33871:16;;;:12;:16;;;;;;;;;33838:49;;;;;;;;;-1:-1:-1;;;;;33838:49:0;;;;;-1:-1:-1;;;33838:49:0;;;;;;;;;;;33917:135;;;;;;;;33943:19;;33838:49;;33917:135;;;33943:39;;33973:8;;33943:39;:::i;:::-;-1:-1:-1;;;;;33917:135:0;;;;;34032:8;33997:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33917:135:0;;;;;;-1:-1:-1;;;;;33898:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33898:154:0;;;;;;;;;;;;34091:43;;;;;;;;;;;34117:15;34091:43;;;;;;;;34063:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34063:71:0;-1:-1:-1;;;;;;34063:71:0;;;;;;;;;;;;;;;;;;34075:12;;34195:325;34219:8;34215:1;:12;34195:325;;;34254:38;;34279:12;;-1:-1:-1;;;;;34254:38:0;;;34271:1;;34254:38;;34271:1;;34254:38;34333:59;34364:1;34368:2;34372:12;34386:5;34333:22;:59::i;:::-;34307:172;;;;-1:-1:-1;;;34307:172:0;;;;;;;:::i;:::-;34494:14;;;;:::i;:::-;;;;34229:3;;;;;:::i;:::-;;;;34195:325;;;-1:-1:-1;34532:12:0;:27;;;34570:60;32128:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:973::-;5267:12;;5232:3;;5322:1;5342:18;;;;5395;;;;5422:61;;5476:4;5468:6;5464:17;5454:27;;5422:61;5502:2;5550;5542:6;5539:14;5519:18;5516:38;5513:161;;;5596:10;5591:3;5587:20;5584:1;5577:31;5631:4;5628:1;5621:15;5659:4;5656:1;5649:15;5513:161;5690:18;5717:104;;;;5835:1;5830:319;;;;5683:466;;5717:104;-1:-1:-1;;5750:24:1;;5738:37;;5795:16;;;;-1:-1:-1;5717:104:1;;5830:319;20396:1;20389:14;;;20433:4;20420:18;;5924:1;5938:165;5952:6;5949:1;5946:13;5938:165;;;6030:14;;6017:11;;;6010:35;6073:16;;;;5967:10;;5938:165;;;5942:3;;6132:6;6127:3;6123:16;6116:23;;5683:466;;;;;;;5182:973;;;;:::o;6160:550::-;6384:3;6422:6;6416:13;6438:53;6484:6;6479:3;6472:4;6464:6;6460:17;6438:53;:::i;:::-;6554:13;;6513:16;;;;6576:57;6554:13;6513:16;6610:4;6598:17;;6576:57;:::i;:::-;6649:55;6694:8;6687:5;6683:20;6675:6;6649:55;:::i;:::-;6642:62;6160:550;-1:-1:-1;;;;;;;6160:550:1:o;6715:524::-;6992:3;7030:6;7024:13;7046:53;7092:6;7087:3;7080:4;7072:6;7068:17;7046:53;:::i;:::-;-1:-1:-1;;;7121:16:1;;;7146:23;;;7185:48;7230:1;7219:13;;7211:6;7185:48;:::i;:::-;7178:55;6715:524;-1:-1:-1;;;;;6715:524:1:o;7662:488::-;-1:-1:-1;;;;;7931:15:1;;;7913:34;;7983:15;;7978:2;7963:18;;7956:43;8030:2;8015:18;;8008:34;;;8078:3;8073:2;8058:18;;8051:31;;;7856:4;;8099:45;;8124:19;;8116:6;8099:45;:::i;:::-;8091:53;7662:488;-1:-1:-1;;;;;;7662:488:1:o;8155:632::-;8326:2;8378:21;;;8448:13;;8351:18;;;8470:22;;;8297:4;;8326:2;8549:15;;;;8523:2;8508:18;;;8297:4;8592:169;8606:6;8603:1;8600:13;8592:169;;;8667:13;;8655:26;;8736:15;;;;8701:12;;;;8628:1;8621:9;8592:169;;;-1:-1:-1;8778:3:1;;8155:632;-1:-1:-1;;;;;;8155:632:1:o;8984:219::-;9133:2;9122:9;9115:21;9096:4;9153:44;9193:2;9182:9;9178:18;9170:6;9153:44;:::i;13953:356::-;14155:2;14137:21;;;14174:18;;;14167:30;14233:34;14228:2;14213:18;;14206:62;14300:2;14285:18;;13953:356::o;16605:415::-;16807:2;16789:21;;;16846:2;16826:18;;;16819:30;16885:34;16880:2;16865:18;;16858:62;-1:-1:-1;;;16951:2:1;16936:18;;16929:49;17010:3;16995:19;;16605:415::o;20449:253::-;20489:3;-1:-1:-1;;;;;20578:2:1;20575:1;20571:10;20608:2;20605:1;20601:10;20639:3;20635:2;20631:12;20626:3;20623:21;20620:47;;;20647:18;;:::i;:::-;20683:13;;20449:253;-1:-1:-1;;;;20449:253:1:o;20707:128::-;20747:3;20778:1;20774:6;20771:1;20768:13;20765:39;;;20784:18;;:::i;:::-;-1:-1:-1;20820:9:1;;20707:128::o;20840:120::-;20880:1;20906;20896:35;;20911:18;;:::i;:::-;-1:-1:-1;20945:9:1;;20840:120::o;20965:168::-;21005:7;21071:1;21067;21063:6;21059:14;21056:1;21053:21;21048:1;21041:9;21034:17;21030:45;21027:71;;;21078:18;;:::i;:::-;-1:-1:-1;21118:9:1;;20965:168::o;21138:246::-;21178:4;-1:-1:-1;;;;;21291:10:1;;;;21261;;21313:12;;;21310:38;;;21328:18;;:::i;:::-;21365:13;;21138:246;-1:-1:-1;;;21138:246:1:o;21389:125::-;21429:4;21457:1;21454;21451:8;21448:34;;;21462:18;;:::i;:::-;-1:-1:-1;21499:9:1;;21389:125::o;21519:258::-;21591:1;21601:113;21615:6;21612:1;21609:13;21601:113;;;21691:11;;;21685:18;21672:11;;;21665:39;21637:2;21630:10;21601:113;;;21732:6;21729:1;21726:13;21723:48;;;-1:-1:-1;;21767:1:1;21749:16;;21742:27;21519:258::o;21782:136::-;21821:3;21849:5;21839:39;;21858:18;;:::i;:::-;-1:-1:-1;;;21894:18:1;;21782:136::o;21923:380::-;22002:1;21998:12;;;;22045;;;22066:61;;22120:4;22112:6;22108:17;22098:27;;22066:61;22173:2;22165:6;22162:14;22142:18;22139:38;22136:161;;;22219:10;22214:3;22210:20;22207:1;22200:31;22254:4;22251:1;22244:15;22282:4;22279:1;22272:15;22136:161;;21923:380;;;:::o;22308:135::-;22347:3;-1:-1:-1;;22368:17:1;;22365:43;;;22388:18;;:::i;:::-;-1:-1:-1;22435:1:1;22424:13;;22308:135::o;22448:112::-;22480:1;22506;22496:35;;22511:18;;:::i;:::-;-1:-1:-1;22545:9:1;;22448:112::o;22565:127::-;22626:10;22621:3;22617:20;22614:1;22607:31;22657:4;22654:1;22647:15;22681:4;22678:1;22671:15;22697:127;22758:10;22753:3;22749:20;22746:1;22739:31;22789:4;22786:1;22779:15;22813:4;22810:1;22803:15;22829:127;22890:10;22885:3;22881:20;22878:1;22871:31;22921:4;22918:1;22911:15;22945:4;22942:1;22935:15;22961:127;23022:10;23017:3;23013:20;23010:1;23003:31;23053:4;23050:1;23043:15;23077:4;23074:1;23067:15;23093:131;-1:-1:-1;;;;;;23167:32:1;;23157:43;;23147:71;;23214:1;23211;23204:12

Swarm Source

ipfs://37d479dab1b41be1bffc058da0694457f74b595f57377a650db2c896ece3a034
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.