ETH Price: $3,441.98 (+1.49%)
Gas: 5 Gwei

Token

Shiba Capital NFT (SHIBNFT)
 

Overview

Max Total Supply

113 SHIBNFT

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SHIBNFT
0xa1a08453352eaec251a5b15e9f9fb8b3cb327f4b
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:
shibaCapital

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ShibaCapital.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;






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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.09 ether;
  uint256 public wlcost = 0.03 ether;
  uint256 public maxSupply = 1000;
  uint256 public WlSupply = 100;
  uint256 public MaxperWallet = 5;
  uint256 public MaxperWalletWl = 2;
  uint256 public MaxperTxWl = 2;
  uint256 public maxpertx = 5 ; // max mint per tx
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = false;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0xdd5a659fd48a19d69fb634e9a478bdd581cbe9653a06a04e1ff27ac6bdb3808b;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Shiba Capital NFT", "SHIBNFT") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "SHIBNFT: oops contract is paused");
    require(publicSale, "SHIBNFT: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(tokens > 0, "SHIBNFT: need to mint at least 1 NFT");
    require(tokens <= maxpertx, "SHIBNFT: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "SHIBNFT: We Soldout");
    require(ownerTokenCount + tokens <= MaxperWallet, "SHIBNFT: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "SHIBNFT: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable  {
    require(!paused, "SHIBNFT: oops contract is paused");
    require(preSale, "SHIBNFT: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "SHIBNFT: You are not Whitelisted");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(ownerTokenCount + tokens <= MaxperWalletWl, "SHIBNFT: Max NFT Per Wallet exceeded");
    require(tokens > 0, "SHIBNFT: need to mint at least 1 NFT");
    require(tokens <= MaxperTxWl, "SHIBNFT: max mint per Tx exceeded");
    require(supply + tokens <= WlSupply, "SHIBNFT: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "SHIBNFT: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

  function setmaxpertx(uint256 _maxpertx) public onlyOwner {
    maxpertx = _maxpertx;
  }

    function setWLMaxpertx(uint256 _wlmaxpertx) public onlyOwner {
    MaxperTxWl = _wlmaxpertx;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpertx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlmaxpertx","type":"uint256"}],"name":"setWLMaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setmaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000274565b5067013fbe85edc90000600c55666a94d74f430000600d556103e8600e556064600f5560056010819055600260118190556012556013556014805463ffffffff191690557fdd5a659fd48a19d69fb634e9a478bdd581cbe9653a06a04e1ff27ac6bdb3808b6015553480156200009d57600080fd5b5060405162002e9338038062002e93833981016040819052620000c091620003d1565b604080518082018252601181527014da1a58984810d85c1a5d185b08139195607a1b60208083019182528351808501909452600784526614d2125093919560ca1b908401528151919291620001189160029162000274565b5080516200012e90600390602084019062000274565b505060016000555062000141336200015f565b6200014c82620001b1565b620001578162000219565b50506200048e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002005760405162461bcd60e51b8152602060048201819052602482015260008051602062002e7383398151915260448201526064015b60405180910390fd5b80516200021590600990602084019062000274565b5050565b6008546001600160a01b03163314620002645760405162461bcd60e51b8152602060048201819052602482015260008051602062002e738339815191526044820152606401620001f7565b80516200021590600b9060208401905b82805462000282906200043b565b90600052602060002090601f016020900481019282620002a65760008555620002f1565b82601f10620002c157805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f1578251825591602001919060010190620002d4565b50620002ff92915062000303565b5090565b5b80821115620002ff576000815560010162000304565b600082601f8301126200032c57600080fd5b81516001600160401b038082111562000349576200034962000478565b604051601f8301601f19908116603f0116810190828211818310171562000374576200037462000478565b816040528381526020925086838588010111156200039157600080fd5b600091505b83821015620003b5578582018301518183018401529082019062000396565b83821115620003c75760008385830101525b9695505050505050565b60008060408385031215620003e557600080fd5b82516001600160401b0380821115620003fd57600080fd5b6200040b868387016200031a565b935060208501519150808211156200042257600080fd5b5062000431858286016200031a565b9150509250929050565b600181811c908216806200045057607f821691505b602082108114156200047257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129d5806200049e6000396000f3fe6080604052600436106103195760003560e01c80636c2d3c4f116101ab578063c6682862116100f7578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e146108d9578063f2fde38b146108f9578063f3257cdd14610919578063fea0e0581461093957600080fd5b8063e985e9c51461085a578063eff60110146108a3578063f12f6d5d146108b957600080fd5b8063d5abeb01116100d1578063d5abeb01146107ee578063d8ed370c14610804578063da3ef23f1461081a578063e268e4d31461083a57600080fd5b8063c668286214610799578063c8151d02146107ae578063c87b56dd146107ce57600080fd5b8063940cd05b11610164578063a22cb4651161013e578063a22cb46514610723578063b88d4fde14610743578063bd7a199814610763578063bde0608a1461077957600080fd5b8063940cd05b146106db57806395d89b41146106fb578063a0712d681461071057600080fd5b80636c2d3c4f1461063257806370a0823114610648578063715018a6146106685780637cb647591461067d57806383a076be1461069d5780638da5cb5b146106bd57600080fd5b806323b872dd1161026a578063458c4f9e116102235780635a7adf7f116101fd5780635a7adf7f146105c35780635c975abb146105e35780636352211e146105fd5780636c0360eb1461061d57600080fd5b8063458c4f9e14610564578063518302271461058457806355f804b3146105a357600080fd5b806323b872dd146104c55780632eb4a7ab146104e557806333bc1c5c146104fb5780633ccfd60b1461051c57806342842e0e1461052457806344a0d68a1461054457600080fd5b8063081c8c44116102d757806313faede6116102b157806313faede614610451578063149835a01461046757806318160ddd146104875780631866756c146104a557600080fd5b8063081c8c4414610406578063095ea7b31461041b5780630bddb6131461043b57600080fd5b806277ec051461031e57806301ffc9a71461034757806302329a2914610377578063036e4cb51461039957806306fdde03146103ac578063081812fc146103ce575b600080fd5b34801561032a57600080fd5b5061033460115481565b6040519081526020015b60405180910390f35b34801561035357600080fd5b50610367610362366004612517565b610959565b604051901515815260200161033e565b34801561038357600080fd5b506103976103923660046124e3565b6109ab565b005b6103976103a73660046125bd565b6109f1565b3480156103b857600080fd5b506103c1610d0a565b60405161033e9190612769565b3480156103da57600080fd5b506103ee6103e93660046124fe565b610d9c565b6040516001600160a01b03909116815260200161033e565b34801561041257600080fd5b506103c1610de0565b34801561042757600080fd5b506103976104363660046124b9565b610e6e565b34801561044757600080fd5b50610334600f5481565b34801561045d57600080fd5b50610334600c5481565b34801561047357600080fd5b506103976104823660046124fe565b610efc565b34801561049357600080fd5b50610334600154600054036000190190565b3480156104b157600080fd5b506103976104c03660046124fe565b610f2b565b3480156104d157600080fd5b506103976104e03660046123d7565b610f5a565b3480156104f157600080fd5b5061033460155481565b34801561050757600080fd5b50601454610367906301000000900460ff1681565b610397610f65565b34801561053057600080fd5b5061039761053f3660046123d7565b610fe7565b34801561055057600080fd5b5061039761055f3660046124fe565b611002565b34801561057057600080fd5b5061039761057f3660046124fe565b611031565b34801561059057600080fd5b5060145461036790610100900460ff1681565b3480156105af57600080fd5b506103976105be366004612551565b611060565b3480156105cf57600080fd5b506014546103679062010000900460ff1681565b3480156105ef57600080fd5b506014546103679060ff1681565b34801561060957600080fd5b506103ee6106183660046124fe565b6110a1565b34801561062957600080fd5b506103c16110b3565b34801561063e57600080fd5b50610334600d5481565b34801561065457600080fd5b50610334610663366004612389565b6110c0565b34801561067457600080fd5b5061039761110f565b34801561068957600080fd5b506103976106983660046124fe565b611145565b3480156106a957600080fd5b506103976106b836600461259a565b611174565b3480156106c957600080fd5b506008546001600160a01b03166103ee565b3480156106e757600080fd5b506103976106f63660046124e3565b611262565b34801561070757600080fd5b506103c16112a6565b61039761071e3660046124fe565b6112b5565b34801561072f57600080fd5b5061039761073e36600461248f565b6114e9565b34801561074f57600080fd5b5061039761075e366004612413565b61157f565b34801561076f57600080fd5b5061033460105481565b34801561078557600080fd5b506103976107943660046124fe565b6115d0565b3480156107a557600080fd5b506103c16115ff565b3480156107ba57600080fd5b506103976107c93660046124fe565b61160c565b3480156107da57600080fd5b506103c16107e93660046124fe565b61163b565b3480156107fa57600080fd5b50610334600e5481565b34801561081057600080fd5b5061033460125481565b34801561082657600080fd5b50610397610835366004612551565b6117ab565b34801561084657600080fd5b506103976108553660046124fe565b6117e8565b34801561086657600080fd5b506103676108753660046123a4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108af57600080fd5b5061033460135481565b3480156108c557600080fd5b506103976108d43660046124fe565b611817565b3480156108e557600080fd5b506103976108f4366004612551565b611846565b34801561090557600080fd5b50610397610914366004612389565b611883565b34801561092557600080fd5b506103976109343660046124e3565b61191b565b34801561094557600080fd5b506103976109543660046124e3565b611963565b60006001600160e01b031982166380ac58cd60e01b148061098a57506001600160e01b03198216635b5e139f60e01b145b806109a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109de5760405162461bcd60e51b81526004016109d5906127c0565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610a445760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a206f6f707320636f6e74726163742069732070617573656460448201526064016109d5565b60145462010000900460ff16610aa85760405162461bcd60e51b815260206004820152602360248201527f534849424e46543a2050726573616c65204861736e27742073746172746564206044820152621e595d60ea1b60648201526084016109d5565b610b1d828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206119a9565b610b695760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a20596f7520617265206e6f742057686974656c697374656460448201526064016109d5565b6000610b7c600154600054036000190190565b90506000610b89336110c0565b601154909150610b998683612839565b1115610bb75760405162461bcd60e51b81526004016109d5906127f5565b60008511610bd75760405162461bcd60e51b81526004016109d59061277c565b601254851115610c335760405162461bcd60e51b815260206004820152602160248201527f534849424e46543a206d6178206d696e742070657220547820657863656564656044820152601960fa1b60648201526084016109d5565b600f54610c408684612839565b1115610c9c5760405162461bcd60e51b815260206004820152602560248201527f534849424e46543a2057686974656c697374204d6178537570706c7920657863604482015264195959195960da1b60648201526084016109d5565b84600d54610caa9190612865565b341015610cf95760405162461bcd60e51b815260206004820152601b60248201527f534849424e46543a20696e73756666696369656e742066756e6473000000000060448201526064016109d5565b610d0333866119bf565b5050505050565b606060028054610d19906128c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d45906128c7565b8015610d925780601f10610d6757610100808354040283529160200191610d92565b820191906000526020600020905b815481529060010190602001808311610d7557829003601f168201915b5050505050905090565b6000610da7826119d9565b610dc4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610ded906128c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e19906128c7565b8015610e665780601f10610e3b57610100808354040283529160200191610e66565b820191906000526020600020905b815481529060010190602001808311610e4957829003601f168201915b505050505081565b6000610e79826110a1565b9050806001600160a01b0316836001600160a01b03161415610eae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ece5750610ecc8133610875565b155b15610eec576040516367d9dca160e11b815260040160405180910390fd5b610ef7838383611a12565b505050565b6008546001600160a01b03163314610f265760405162461bcd60e51b81526004016109d5906127c0565b600e55565b6008546001600160a01b03163314610f555760405162461bcd60e51b81526004016109d5906127c0565b601255565b610ef7838383611a6e565b6008546001600160a01b03163314610f8f5760405162461bcd60e51b81526004016109d5906127c0565b604051600090339047908381818185875af1925050503d8060008114610fd1576040519150601f19603f3d011682016040523d82523d6000602084013e610fd6565b606091505b5050905080610fe457600080fd5b50565b610ef78383836040518060200160405280600081525061157f565b6008546001600160a01b0316331461102c5760405162461bcd60e51b81526004016109d5906127c0565b600c55565b6008546001600160a01b0316331461105b5760405162461bcd60e51b81526004016109d5906127c0565b600f55565b6008546001600160a01b0316331461108a5760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600990602084019061224e565b5050565b60006110ac82611c81565b5192915050565b60098054610ded906128c7565b60006001600160a01b0382166110e9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111395760405162461bcd60e51b81526004016109d5906127c0565b6111436000611daa565b565b6008546001600160a01b0316331461116f5760405162461bcd60e51b81526004016109d5906127c0565b601555565b6008546001600160a01b0316331461119e5760405162461bcd60e51b81526004016109d5906127c0565b600082116111ee5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109d5565b6000611201600154600054036000190190565b600e549091506112118483612839565b11156112585760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109d5565b610ef782846119bf565b6008546001600160a01b0316331461128c5760405162461bcd60e51b81526004016109d5906127c0565b601480549115156101000261ff0019909216919091179055565b606060038054610d19906128c7565b60145460ff16156113085760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a206f6f707320636f6e74726163742069732070617573656460448201526064016109d5565b6014546301000000900460ff166113615760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a2053616c65204861736e277420737461727465642079657460448201526064016109d5565b6000611374600154600054036000190190565b90506000611381336110c0565b9050600083116113a35760405162461bcd60e51b81526004016109d59061277c565b6013548311156114065760405162461bcd60e51b815260206004820152602860248201527f534849424e46543a206d6178206d696e7420616d6f756e742070657220747820604482015267195e18d95959195960c21b60648201526084016109d5565b600e546114138484612839565b11156114575760405162461bcd60e51b815260206004820152601360248201527214d212509391950e8815d94814dbdb191bdd5d606a1b60448201526064016109d5565b6010546114648483612839565b11156114825760405162461bcd60e51b81526004016109d5906127f5565b82600c546114909190612865565b3410156114df5760405162461bcd60e51b815260206004820152601b60248201527f534849424e46543a20696e73756666696369656e742066756e6473000000000060448201526064016109d5565b610ef733846119bf565b6001600160a01b0382163314156115135760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61158a848484611a6e565b6001600160a01b0383163b151580156115ac57506115aa84848484611dfc565b155b156115ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146115fa5760405162461bcd60e51b81526004016109d5906127c0565b601155565b600a8054610ded906128c7565b6008546001600160a01b031633146116365760405162461bcd60e51b81526004016109d5906127c0565b601355565b6060611646826119d9565b6116ab5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016109d5565b601454610100900460ff1661174c57600b80546116c7906128c7565b80601f01602080910402602001604051908101604052809291908181526020018280546116f3906128c7565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b6000611756611ef4565b9050600081511161177657604051806020016040528060008152506117a4565b8061178084611f03565b600a60405160200161179493929190612668565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117d55760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600a90602084019061224e565b6008546001600160a01b031633146118125760405162461bcd60e51b81526004016109d5906127c0565b601055565b6008546001600160a01b031633146118415760405162461bcd60e51b81526004016109d5906127c0565b600d55565b6008546001600160a01b031633146118705760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600b90602084019061224e565b6008546001600160a01b031633146118ad5760405162461bcd60e51b81526004016109d5906127c0565b6001600160a01b0381166119125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d5565b610fe481611daa565b6008546001600160a01b031633146119455760405162461bcd60e51b81526004016109d5906127c0565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b0316331461198d5760405162461bcd60e51b81526004016109d5906127c0565b60148054911515620100000262ff000019909216919091179055565b6000826119b68584612001565b14949350505050565b61109d828260405180602001604052806000815250612075565b6000816001111580156119ed575060005482105b80156109a5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a7982611c81565b80519091506000906001600160a01b0316336001600160a01b03161480611aa757508151611aa79033610875565b80611ac2575033611ab784610d9c565b6001600160a01b0316145b905080611ae257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611b175760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b3e57604051633a954ecd60e21b815260040160405180910390fd5b611b4e6000848460000151611a12565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611c3a57600054811015611c3a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d03565b60408051606081018252600080825260208201819052918101919091528180600111158015611cb1575060005481105b15611d9157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611d8f5780516001600160a01b031615611d25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611d8a579392505050565b611d25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e3190339089908890889060040161272c565b602060405180830381600087803b158015611e4b57600080fd5b505af1925050508015611e7b575060408051601f3d908101601f19168201909252611e7891810190612534565b60015b611ed6573d808015611ea9576040519150601f19603f3d011682016040523d82523d6000602084013e611eae565b606091505b508051611ece576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610d19906128c7565b606081611f275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f515780611f3b81612902565b9150611f4a9050600a83612851565b9150611f2b565b60008167ffffffffffffffff811115611f6c57611f6c612973565b6040519080825280601f01601f191660200182016040528015611f96576020820181803683370190505b5090505b8415611eec57611fab600183612884565b9150611fb8600a8661291d565b611fc3906030612839565b60f81b818381518110611fd857611fd861295d565b60200101906001600160f81b031916908160001a905350611ffa600a86612851565b9450611f9a565b600081815b845181101561206d5760008582815181106120235761202361295d565b60200260200101519050808311612049576000838152602082905260409020925061205a565b600081815260208490526040902092505b508061206581612902565b915050612006565b509392505050565b610ef783838360016000546001600160a01b0385166120a657604051622e076360e81b815260040160405180910390fd5b836120c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561217657506001600160a01b0387163b15155b156121ff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121c76000888480600101955088611dfc565b6121e4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561217c5782600054146121fa57600080fd5b612245565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612200575b50600055610d03565b82805461225a906128c7565b90600052602060002090601f01602090048101928261227c57600085556122c2565b82601f1061229557805160ff19168380011785556122c2565b828001600101855582156122c2579182015b828111156122c25782518255916020019190600101906122a7565b506122ce9291506122d2565b5090565b5b808211156122ce57600081556001016122d3565b600067ffffffffffffffff8084111561230257612302612973565b604051601f8501601f19908116603f0116810190828211818310171561232a5761232a612973565b8160405280935085815286868601111561234357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461237457600080fd5b919050565b8035801515811461237457600080fd5b60006020828403121561239b57600080fd5b6117a48261235d565b600080604083850312156123b757600080fd5b6123c08361235d565b91506123ce6020840161235d565b90509250929050565b6000806000606084860312156123ec57600080fd5b6123f58461235d565b92506124036020850161235d565b9150604084013590509250925092565b6000806000806080858703121561242957600080fd5b6124328561235d565b93506124406020860161235d565b925060408501359150606085013567ffffffffffffffff81111561246357600080fd5b8501601f8101871361247457600080fd5b612483878235602084016122e7565b91505092959194509250565b600080604083850312156124a257600080fd5b6124ab8361235d565b91506123ce60208401612379565b600080604083850312156124cc57600080fd5b6124d58361235d565b946020939093013593505050565b6000602082840312156124f557600080fd5b6117a482612379565b60006020828403121561251057600080fd5b5035919050565b60006020828403121561252957600080fd5b81356117a481612989565b60006020828403121561254657600080fd5b81516117a481612989565b60006020828403121561256357600080fd5b813567ffffffffffffffff81111561257a57600080fd5b8201601f8101841361258b57600080fd5b611eec848235602084016122e7565b600080604083850312156125ad57600080fd5b823591506123ce6020840161235d565b6000806000604084860312156125d257600080fd5b83359250602084013567ffffffffffffffff808211156125f157600080fd5b818601915086601f83011261260557600080fd5b81358181111561261457600080fd5b8760208260051b850101111561262957600080fd5b6020830194508093505050509250925092565b6000815180845261265481602086016020860161289b565b601f01601f19169290920160200192915050565b60008451602061267b8285838a0161289b565b85519184019161268e8184848a0161289b565b8554920191600090600181811c90808316806126ab57607f831692505b8583108114156126c957634e487b7160e01b85526022600452602485fd5b8080156126dd57600181146126ee5761271b565b60ff1985168852838801955061271b565b60008b81526020902060005b858110156127135781548a8201529084019088016126fa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275f9083018461263c565b9695505050505050565b6020815260006117a4602083018461263c565b60208082526024908201527f534849424e46543a206e65656420746f206d696e74206174206c6561737420316040820152630813919560e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f534849424e46543a204d6178204e4654205065722057616c6c657420657863656040820152631959195960e21b606082015260800190565b6000821982111561284c5761284c612931565b500190565b60008261286057612860612947565b500490565b600081600019048311821515161561287f5761287f612931565b500290565b60008282101561289657612896612931565b500390565b60005b838110156128b657818101518382015260200161289e565b838111156115ca5750506000910152565b600181811c908216806128db57607f821691505b602082108114156128fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291657612916612931565b5060010190565b60008261292c5761292c612947565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fe457600080fdfea2646970667358221220fcd6f26b9b59ba4d7cfb46ffcfcef068be6725df56799ef2b4cadcdcea7bd16664736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54365976555569484b4c39566a4b636352755746523175366375433679337942475a38445a6858583341454e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103195760003560e01c80636c2d3c4f116101ab578063c6682862116100f7578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e146108d9578063f2fde38b146108f9578063f3257cdd14610919578063fea0e0581461093957600080fd5b8063e985e9c51461085a578063eff60110146108a3578063f12f6d5d146108b957600080fd5b8063d5abeb01116100d1578063d5abeb01146107ee578063d8ed370c14610804578063da3ef23f1461081a578063e268e4d31461083a57600080fd5b8063c668286214610799578063c8151d02146107ae578063c87b56dd146107ce57600080fd5b8063940cd05b11610164578063a22cb4651161013e578063a22cb46514610723578063b88d4fde14610743578063bd7a199814610763578063bde0608a1461077957600080fd5b8063940cd05b146106db57806395d89b41146106fb578063a0712d681461071057600080fd5b80636c2d3c4f1461063257806370a0823114610648578063715018a6146106685780637cb647591461067d57806383a076be1461069d5780638da5cb5b146106bd57600080fd5b806323b872dd1161026a578063458c4f9e116102235780635a7adf7f116101fd5780635a7adf7f146105c35780635c975abb146105e35780636352211e146105fd5780636c0360eb1461061d57600080fd5b8063458c4f9e14610564578063518302271461058457806355f804b3146105a357600080fd5b806323b872dd146104c55780632eb4a7ab146104e557806333bc1c5c146104fb5780633ccfd60b1461051c57806342842e0e1461052457806344a0d68a1461054457600080fd5b8063081c8c44116102d757806313faede6116102b157806313faede614610451578063149835a01461046757806318160ddd146104875780631866756c146104a557600080fd5b8063081c8c4414610406578063095ea7b31461041b5780630bddb6131461043b57600080fd5b806277ec051461031e57806301ffc9a71461034757806302329a2914610377578063036e4cb51461039957806306fdde03146103ac578063081812fc146103ce575b600080fd5b34801561032a57600080fd5b5061033460115481565b6040519081526020015b60405180910390f35b34801561035357600080fd5b50610367610362366004612517565b610959565b604051901515815260200161033e565b34801561038357600080fd5b506103976103923660046124e3565b6109ab565b005b6103976103a73660046125bd565b6109f1565b3480156103b857600080fd5b506103c1610d0a565b60405161033e9190612769565b3480156103da57600080fd5b506103ee6103e93660046124fe565b610d9c565b6040516001600160a01b03909116815260200161033e565b34801561041257600080fd5b506103c1610de0565b34801561042757600080fd5b506103976104363660046124b9565b610e6e565b34801561044757600080fd5b50610334600f5481565b34801561045d57600080fd5b50610334600c5481565b34801561047357600080fd5b506103976104823660046124fe565b610efc565b34801561049357600080fd5b50610334600154600054036000190190565b3480156104b157600080fd5b506103976104c03660046124fe565b610f2b565b3480156104d157600080fd5b506103976104e03660046123d7565b610f5a565b3480156104f157600080fd5b5061033460155481565b34801561050757600080fd5b50601454610367906301000000900460ff1681565b610397610f65565b34801561053057600080fd5b5061039761053f3660046123d7565b610fe7565b34801561055057600080fd5b5061039761055f3660046124fe565b611002565b34801561057057600080fd5b5061039761057f3660046124fe565b611031565b34801561059057600080fd5b5060145461036790610100900460ff1681565b3480156105af57600080fd5b506103976105be366004612551565b611060565b3480156105cf57600080fd5b506014546103679062010000900460ff1681565b3480156105ef57600080fd5b506014546103679060ff1681565b34801561060957600080fd5b506103ee6106183660046124fe565b6110a1565b34801561062957600080fd5b506103c16110b3565b34801561063e57600080fd5b50610334600d5481565b34801561065457600080fd5b50610334610663366004612389565b6110c0565b34801561067457600080fd5b5061039761110f565b34801561068957600080fd5b506103976106983660046124fe565b611145565b3480156106a957600080fd5b506103976106b836600461259a565b611174565b3480156106c957600080fd5b506008546001600160a01b03166103ee565b3480156106e757600080fd5b506103976106f63660046124e3565b611262565b34801561070757600080fd5b506103c16112a6565b61039761071e3660046124fe565b6112b5565b34801561072f57600080fd5b5061039761073e36600461248f565b6114e9565b34801561074f57600080fd5b5061039761075e366004612413565b61157f565b34801561076f57600080fd5b5061033460105481565b34801561078557600080fd5b506103976107943660046124fe565b6115d0565b3480156107a557600080fd5b506103c16115ff565b3480156107ba57600080fd5b506103976107c93660046124fe565b61160c565b3480156107da57600080fd5b506103c16107e93660046124fe565b61163b565b3480156107fa57600080fd5b50610334600e5481565b34801561081057600080fd5b5061033460125481565b34801561082657600080fd5b50610397610835366004612551565b6117ab565b34801561084657600080fd5b506103976108553660046124fe565b6117e8565b34801561086657600080fd5b506103676108753660046123a4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108af57600080fd5b5061033460135481565b3480156108c557600080fd5b506103976108d43660046124fe565b611817565b3480156108e557600080fd5b506103976108f4366004612551565b611846565b34801561090557600080fd5b50610397610914366004612389565b611883565b34801561092557600080fd5b506103976109343660046124e3565b61191b565b34801561094557600080fd5b506103976109543660046124e3565b611963565b60006001600160e01b031982166380ac58cd60e01b148061098a57506001600160e01b03198216635b5e139f60e01b145b806109a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109de5760405162461bcd60e51b81526004016109d5906127c0565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610a445760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a206f6f707320636f6e74726163742069732070617573656460448201526064016109d5565b60145462010000900460ff16610aa85760405162461bcd60e51b815260206004820152602360248201527f534849424e46543a2050726573616c65204861736e27742073746172746564206044820152621e595d60ea1b60648201526084016109d5565b610b1d828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206119a9565b610b695760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a20596f7520617265206e6f742057686974656c697374656460448201526064016109d5565b6000610b7c600154600054036000190190565b90506000610b89336110c0565b601154909150610b998683612839565b1115610bb75760405162461bcd60e51b81526004016109d5906127f5565b60008511610bd75760405162461bcd60e51b81526004016109d59061277c565b601254851115610c335760405162461bcd60e51b815260206004820152602160248201527f534849424e46543a206d6178206d696e742070657220547820657863656564656044820152601960fa1b60648201526084016109d5565b600f54610c408684612839565b1115610c9c5760405162461bcd60e51b815260206004820152602560248201527f534849424e46543a2057686974656c697374204d6178537570706c7920657863604482015264195959195960da1b60648201526084016109d5565b84600d54610caa9190612865565b341015610cf95760405162461bcd60e51b815260206004820152601b60248201527f534849424e46543a20696e73756666696369656e742066756e6473000000000060448201526064016109d5565b610d0333866119bf565b5050505050565b606060028054610d19906128c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d45906128c7565b8015610d925780601f10610d6757610100808354040283529160200191610d92565b820191906000526020600020905b815481529060010190602001808311610d7557829003601f168201915b5050505050905090565b6000610da7826119d9565b610dc4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610ded906128c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e19906128c7565b8015610e665780601f10610e3b57610100808354040283529160200191610e66565b820191906000526020600020905b815481529060010190602001808311610e4957829003601f168201915b505050505081565b6000610e79826110a1565b9050806001600160a01b0316836001600160a01b03161415610eae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ece5750610ecc8133610875565b155b15610eec576040516367d9dca160e11b815260040160405180910390fd5b610ef7838383611a12565b505050565b6008546001600160a01b03163314610f265760405162461bcd60e51b81526004016109d5906127c0565b600e55565b6008546001600160a01b03163314610f555760405162461bcd60e51b81526004016109d5906127c0565b601255565b610ef7838383611a6e565b6008546001600160a01b03163314610f8f5760405162461bcd60e51b81526004016109d5906127c0565b604051600090339047908381818185875af1925050503d8060008114610fd1576040519150601f19603f3d011682016040523d82523d6000602084013e610fd6565b606091505b5050905080610fe457600080fd5b50565b610ef78383836040518060200160405280600081525061157f565b6008546001600160a01b0316331461102c5760405162461bcd60e51b81526004016109d5906127c0565b600c55565b6008546001600160a01b0316331461105b5760405162461bcd60e51b81526004016109d5906127c0565b600f55565b6008546001600160a01b0316331461108a5760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600990602084019061224e565b5050565b60006110ac82611c81565b5192915050565b60098054610ded906128c7565b60006001600160a01b0382166110e9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111395760405162461bcd60e51b81526004016109d5906127c0565b6111436000611daa565b565b6008546001600160a01b0316331461116f5760405162461bcd60e51b81526004016109d5906127c0565b601555565b6008546001600160a01b0316331461119e5760405162461bcd60e51b81526004016109d5906127c0565b600082116111ee5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109d5565b6000611201600154600054036000190190565b600e549091506112118483612839565b11156112585760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109d5565b610ef782846119bf565b6008546001600160a01b0316331461128c5760405162461bcd60e51b81526004016109d5906127c0565b601480549115156101000261ff0019909216919091179055565b606060038054610d19906128c7565b60145460ff16156113085760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a206f6f707320636f6e74726163742069732070617573656460448201526064016109d5565b6014546301000000900460ff166113615760405162461bcd60e51b815260206004820181905260248201527f534849424e46543a2053616c65204861736e277420737461727465642079657460448201526064016109d5565b6000611374600154600054036000190190565b90506000611381336110c0565b9050600083116113a35760405162461bcd60e51b81526004016109d59061277c565b6013548311156114065760405162461bcd60e51b815260206004820152602860248201527f534849424e46543a206d6178206d696e7420616d6f756e742070657220747820604482015267195e18d95959195960c21b60648201526084016109d5565b600e546114138484612839565b11156114575760405162461bcd60e51b815260206004820152601360248201527214d212509391950e8815d94814dbdb191bdd5d606a1b60448201526064016109d5565b6010546114648483612839565b11156114825760405162461bcd60e51b81526004016109d5906127f5565b82600c546114909190612865565b3410156114df5760405162461bcd60e51b815260206004820152601b60248201527f534849424e46543a20696e73756666696369656e742066756e6473000000000060448201526064016109d5565b610ef733846119bf565b6001600160a01b0382163314156115135760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61158a848484611a6e565b6001600160a01b0383163b151580156115ac57506115aa84848484611dfc565b155b156115ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146115fa5760405162461bcd60e51b81526004016109d5906127c0565b601155565b600a8054610ded906128c7565b6008546001600160a01b031633146116365760405162461bcd60e51b81526004016109d5906127c0565b601355565b6060611646826119d9565b6116ab5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016109d5565b601454610100900460ff1661174c57600b80546116c7906128c7565b80601f01602080910402602001604051908101604052809291908181526020018280546116f3906128c7565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b6000611756611ef4565b9050600081511161177657604051806020016040528060008152506117a4565b8061178084611f03565b600a60405160200161179493929190612668565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117d55760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600a90602084019061224e565b6008546001600160a01b031633146118125760405162461bcd60e51b81526004016109d5906127c0565b601055565b6008546001600160a01b031633146118415760405162461bcd60e51b81526004016109d5906127c0565b600d55565b6008546001600160a01b031633146118705760405162461bcd60e51b81526004016109d5906127c0565b805161109d90600b90602084019061224e565b6008546001600160a01b031633146118ad5760405162461bcd60e51b81526004016109d5906127c0565b6001600160a01b0381166119125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d5565b610fe481611daa565b6008546001600160a01b031633146119455760405162461bcd60e51b81526004016109d5906127c0565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b0316331461198d5760405162461bcd60e51b81526004016109d5906127c0565b60148054911515620100000262ff000019909216919091179055565b6000826119b68584612001565b14949350505050565b61109d828260405180602001604052806000815250612075565b6000816001111580156119ed575060005482105b80156109a5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a7982611c81565b80519091506000906001600160a01b0316336001600160a01b03161480611aa757508151611aa79033610875565b80611ac2575033611ab784610d9c565b6001600160a01b0316145b905080611ae257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611b175760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b3e57604051633a954ecd60e21b815260040160405180910390fd5b611b4e6000848460000151611a12565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611c3a57600054811015611c3a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d03565b60408051606081018252600080825260208201819052918101919091528180600111158015611cb1575060005481105b15611d9157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611d8f5780516001600160a01b031615611d25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611d8a579392505050565b611d25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e3190339089908890889060040161272c565b602060405180830381600087803b158015611e4b57600080fd5b505af1925050508015611e7b575060408051601f3d908101601f19168201909252611e7891810190612534565b60015b611ed6573d808015611ea9576040519150601f19603f3d011682016040523d82523d6000602084013e611eae565b606091505b508051611ece576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610d19906128c7565b606081611f275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f515780611f3b81612902565b9150611f4a9050600a83612851565b9150611f2b565b60008167ffffffffffffffff811115611f6c57611f6c612973565b6040519080825280601f01601f191660200182016040528015611f96576020820181803683370190505b5090505b8415611eec57611fab600183612884565b9150611fb8600a8661291d565b611fc3906030612839565b60f81b818381518110611fd857611fd861295d565b60200101906001600160f81b031916908160001a905350611ffa600a86612851565b9450611f9a565b600081815b845181101561206d5760008582815181106120235761202361295d565b60200260200101519050808311612049576000838152602082905260409020925061205a565b600081815260208490526040902092505b508061206581612902565b915050612006565b509392505050565b610ef783838360016000546001600160a01b0385166120a657604051622e076360e81b815260040160405180910390fd5b836120c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561217657506001600160a01b0387163b15155b156121ff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121c76000888480600101955088611dfc565b6121e4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561217c5782600054146121fa57600080fd5b612245565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612200575b50600055610d03565b82805461225a906128c7565b90600052602060002090601f01602090048101928261227c57600085556122c2565b82601f1061229557805160ff19168380011785556122c2565b828001600101855582156122c2579182015b828111156122c25782518255916020019190600101906122a7565b506122ce9291506122d2565b5090565b5b808211156122ce57600081556001016122d3565b600067ffffffffffffffff8084111561230257612302612973565b604051601f8501601f19908116603f0116810190828211818310171561232a5761232a612973565b8160405280935085815286868601111561234357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461237457600080fd5b919050565b8035801515811461237457600080fd5b60006020828403121561239b57600080fd5b6117a48261235d565b600080604083850312156123b757600080fd5b6123c08361235d565b91506123ce6020840161235d565b90509250929050565b6000806000606084860312156123ec57600080fd5b6123f58461235d565b92506124036020850161235d565b9150604084013590509250925092565b6000806000806080858703121561242957600080fd5b6124328561235d565b93506124406020860161235d565b925060408501359150606085013567ffffffffffffffff81111561246357600080fd5b8501601f8101871361247457600080fd5b612483878235602084016122e7565b91505092959194509250565b600080604083850312156124a257600080fd5b6124ab8361235d565b91506123ce60208401612379565b600080604083850312156124cc57600080fd5b6124d58361235d565b946020939093013593505050565b6000602082840312156124f557600080fd5b6117a482612379565b60006020828403121561251057600080fd5b5035919050565b60006020828403121561252957600080fd5b81356117a481612989565b60006020828403121561254657600080fd5b81516117a481612989565b60006020828403121561256357600080fd5b813567ffffffffffffffff81111561257a57600080fd5b8201601f8101841361258b57600080fd5b611eec848235602084016122e7565b600080604083850312156125ad57600080fd5b823591506123ce6020840161235d565b6000806000604084860312156125d257600080fd5b83359250602084013567ffffffffffffffff808211156125f157600080fd5b818601915086601f83011261260557600080fd5b81358181111561261457600080fd5b8760208260051b850101111561262957600080fd5b6020830194508093505050509250925092565b6000815180845261265481602086016020860161289b565b601f01601f19169290920160200192915050565b60008451602061267b8285838a0161289b565b85519184019161268e8184848a0161289b565b8554920191600090600181811c90808316806126ab57607f831692505b8583108114156126c957634e487b7160e01b85526022600452602485fd5b8080156126dd57600181146126ee5761271b565b60ff1985168852838801955061271b565b60008b81526020902060005b858110156127135781548a8201529084019088016126fa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275f9083018461263c565b9695505050505050565b6020815260006117a4602083018461263c565b60208082526024908201527f534849424e46543a206e65656420746f206d696e74206174206c6561737420316040820152630813919560e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f534849424e46543a204d6178204e4654205065722057616c6c657420657863656040820152631959195960e21b606082015260800190565b6000821982111561284c5761284c612931565b500190565b60008261286057612860612947565b500490565b600081600019048311821515161561287f5761287f612931565b500290565b60008282101561289657612896612931565b500390565b60005b838110156128b657818101518382015260200161289e565b838111156115ca5750506000910152565b600181811c908216806128db57607f821691505b602082108114156128fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291657612916612931565b5060010190565b60008261292c5761292c612947565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fe457600080fdfea2646970667358221220fcd6f26b9b59ba4d7cfb46ffcfcef068be6725df56799ef2b4cadcdcea7bd16664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54365976555569484b4c39566a4b636352755746523175366375433679337942475a38445a6858583341454e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmT6YvUUiHKL9VjKccRuWFR1u6cuC6y3yBGZ8DZhXX3AEN/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d54365976555569484b4c39566a4b636352755746523175
Arg [4] : 366375433679337942475a38445a6858583341454e2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55302:5507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55664:33;;;;;;;;;;;;;;;;;;;8709:25:1;;;8697:2;8682:18;55664:33:0;;;;;;;;37688:305;;;;;;;;;;-1:-1:-1;37688:305:0;;;;;:::i;:::-;;:::i;:::-;;;8536:14:1;;8529:22;8511:41;;8499:2;8484:18;37688:305:0;8371:187:1;60362:73:0;;;;;;;;;;-1:-1:-1;60362:73:0;;;;;:::i;:::-;;:::i;:::-;;57221:885;;;;;;:::i;:::-;;:::i;41073:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42576:204::-;;;;;;;;;;-1:-1:-1;42576:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7834:32:1;;;7816:51;;7804:2;7789:18;42576:204:0;7670:203:1;55449:28:0;;;;;;;;;;;;;:::i;42139:371::-;;;;;;;;;;-1:-1:-1;42139:371:0;;;;;:::i;:::-;;:::i;55594:29::-;;;;;;;;;;;;;;;;55482:32;;;;;;;;;;;;;;;;59802:94;;;;;;;;;;-1:-1:-1;59802:94:0;;;;;:::i;:::-;;:::i;36937:303::-;;;;;;;;;;;;56455:1;37191:12;36981:7;37175:13;:28;-1:-1:-1;;37175:46:0;;36937:303;59512:98;;;;;;;;;;-1:-1:-1;59512:98:0;;;;;:::i;:::-;;:::i;43433:170::-;;;;;;;;;;-1:-1:-1;43433:170:0;;;;;:::i;:::-;;:::i;55919:94::-;;;;;;;;;;;;;;;;55884:30;;;;;;;;;;-1:-1:-1;55884:30:0;;;;;;;;;;;60648:158;;;:::i;43674:185::-;;;;;;;;;;-1:-1:-1;43674:185:0;;;;;:::i;:::-;;:::i;59618:80::-;;;;;;;;;;-1:-1:-1;59618:80:0;;;;;:::i;:::-;;:::i;59904:92::-;;;;;;;;;;-1:-1:-1;59904:92:0;;;;;:::i;:::-;;:::i;55819:28::-;;;;;;;;;;-1:-1:-1;55819:28:0;;;;;;;;;;;60002:98;;;;;;;;;;-1:-1:-1;60002:98:0;;;;;:::i;:::-;;:::i;55852:27::-;;;;;;;;;;-1:-1:-1;55852:27:0;;;;;;;;;;;55788:26;;;;;;;;;;-1:-1:-1;55788:26:0;;;;;;;;40882:124;;;;;;;;;;-1:-1:-1;40882:124:0;;;;;:::i;:::-;;:::i;55381:21::-;;;;;;;;;;;;;:::i;55519:34::-;;;;;;;;;;;;;;;;38057:206;;;;;;;;;;-1:-1:-1;38057:206:0;;;;;:::i;:::-;;:::i;14146:103::-;;;;;;;;;;;;;:::i;59098:106::-;;;;;;;;;;-1:-1:-1;59098:106:0;;;;;:::i;:::-;;:::i;58175:305::-;;;;;;;;;;-1:-1:-1;58175:305:0;;;;;:::i;:::-;;:::i;13495:87::-;;;;;;;;;;-1:-1:-1;13568:6:0;;-1:-1:-1;;;;;13568:6:0;13495:87;;59014:78;;;;;;;;;;-1:-1:-1;59014:78:0;;;;;:::i;:::-;;:::i;41242:104::-;;;;;;;;;;;;;:::i;56483:693::-;;;;;;:::i;:::-;;:::i;42852:279::-;;;;;;;;;;-1:-1:-1;42852:279:0;;;;;:::i;:::-;;:::i;43930:369::-;;;;;;;;;;-1:-1:-1;43930:369:0;;;;;:::i;:::-;;:::i;55628:31::-;;;;;;;;;;;;;;;;59312:96;;;;;;;;;;-1:-1:-1;59312:96:0;;;;;:::i;:::-;;:::i;55407:37::-;;;;;;;;;;;;;:::i;59414:90::-;;;;;;;;;;-1:-1:-1;59414:90:0;;;;;:::i;:::-;;:::i;58494:498::-;;;;;;;;;;-1:-1:-1;58494:498:0;;;;;:::i;:::-;;:::i;55558:31::-;;;;;;;;;;;;;;;;55702:29;;;;;;;;;;;;;;;;60106:122;;;;;;;;;;-1:-1:-1;60106:122:0;;;;;:::i;:::-;;:::i;59212:92::-;;;;;;;;;;-1:-1:-1;59212:92:0;;;;;:::i;:::-;;:::i;43202:164::-;;;;;;;;;;-1:-1:-1;43202:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43323:25:0;;;43299:4;43323:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43202:164;55736:27;;;;;;;;;;;;;;;;59706:88;;;;;;;;;;-1:-1:-1;59706:88:0;;;;;:::i;:::-;;:::i;60236:120::-;;;;;;;;;;-1:-1:-1;60236:120:0;;;;;:::i;:::-;;:::i;14404:201::-;;;;;;;;;;-1:-1:-1;14404:201:0;;;;;:::i;:::-;;:::i;60541:96::-;;;;;;;;;;-1:-1:-1;60541:96:0;;;;;:::i;:::-;;:::i;60443:90::-;;;;;;;;;;-1:-1:-1;60443:90:0;;;;;:::i;:::-;;:::i;37688:305::-;37790:4;-1:-1:-1;;;;;;37827:40:0;;-1:-1:-1;;;37827:40:0;;:105;;-1:-1:-1;;;;;;;37884:48:0;;-1:-1:-1;;;37884:48:0;37827:105;:158;;;-1:-1:-1;;;;;;;;;;26388:40:0;;;37949:36;37807:178;37688:305;-1:-1:-1;;37688:305:0:o;60362:73::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;;;;;;;;;60414:6:::1;:15:::0;;-1:-1:-1;;60414:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60362:73::o;57221:885::-;57322:6;;;;57321:7;57313:52;;;;-1:-1:-1;;;57313:52:0;;11167:2:1;57313:52:0;;;11149:21:1;;;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11297:18;;57313:52:0;10965:356:1;57313:52:0;57380:7;;;;;;;57372:55;;;;-1:-1:-1;;;57372:55:0;;14116:2:1;57372:55:0;;;14098:21:1;14155:2;14135:18;;;14128:30;14194:34;14174:18;;;14167:62;-1:-1:-1;;;14245:18:1;;;14238:33;14288:19;;57372:55:0;13914:399:1;57372:55:0;57442:84;57461:11;;57442:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57474:10:0;;57496:28;;-1:-1:-1;;57513:10:0;5843:2:1;5839:15;5835:53;57496:28:0;;;5823:66:1;57474:10:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;57496:28:0;;;;;;;;;;;;57486:39;;;;;;57442:18;:84::i;:::-;57434:129;;;;-1:-1:-1;;;57434:129:0;;10401:2:1;57434:129:0;;;10383:21:1;;;10420:18;;;10413:30;10479:34;10459:18;;;10452:62;10531:18;;57434:129:0;10199:356:1;57434:129:0;57570:14;57587:13;56455:1;37191:12;36981:7;37175:13;:28;-1:-1:-1;;37175:46:0;;36937:303;57587:13;57570:30;-1:-1:-1;57607:23:0;57633;12299:10;38057:206;:::i;57633:23::-;57699:14;;57607:49;;-1:-1:-1;57671:24:0;57689:6;57607:49;57671:24;:::i;:::-;:42;;57663:91;;;;-1:-1:-1;;;57663:91:0;;;;;;;:::i;:::-;57778:1;57769:6;:10;57761:59;;;;-1:-1:-1;;;57761:59:0;;;;;;;:::i;:::-;57845:10;;57835:6;:20;;57827:66;;;;-1:-1:-1;;;57827:66:0;;12596:2:1;57827:66:0;;;12578:21:1;12635:2;12615:18;;;12608:30;12674:34;12654:18;;;12647:62;-1:-1:-1;;;12725:18:1;;;12718:31;12766:19;;57827:66:0;12394:397:1;57827:66:0;57927:8;;57908:15;57917:6;57908;:15;:::i;:::-;:27;;57900:77;;;;-1:-1:-1;;;57900:77:0;;9588:2:1;57900:77:0;;;9570:21:1;9627:2;9607:18;;;9600:30;9666:34;9646:18;;;9639:62;-1:-1:-1;;;9717:18:1;;;9710:35;9762:19;;57900:77:0;9386:401:1;57900:77:0;58014:6;58005;;:15;;;;:::i;:::-;57992:9;:28;;57984:68;;;;-1:-1:-1;;;57984:68:0;;11889:2:1;57984:68:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:29;11947:18;;;11940:57;12014:18;;57984:68:0;11687:351:1;57984:68:0;58063:31;12299:10;58087:6;58063:9;:31::i;:::-;57306:800;;57221:885;;;:::o;41073:100::-;41127:13;41160:5;41153:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41073:100;:::o;42576:204::-;42644:7;42669:16;42677:7;42669;:16::i;:::-;42664:64;;42694:34;;-1:-1:-1;;;42694:34:0;;;;;;;;;;;42664:64;-1:-1:-1;42748:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42748:24:0;;42576:204::o;55449:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42139:371::-;42212:13;42228:24;42244:7;42228:15;:24::i;:::-;42212:40;;42273:5;-1:-1:-1;;;;;42267:11:0;:2;-1:-1:-1;;;;;42267:11:0;;42263:48;;;42287:24;;-1:-1:-1;;;42287:24:0;;;;;;;;;;;42263:48;12299:10;-1:-1:-1;;;;;42328:21:0;;;;;;:63;;-1:-1:-1;42354:37:0;42371:5;12299:10;43202:164;:::i;42354:37::-;42353:38;42328:63;42324:138;;;42415:35;;-1:-1:-1;;;42415:35:0;;;;;;;;;;;42324:138;42474:28;42483:2;42487:7;42496:5;42474:8;:28::i;:::-;42201:309;42139:371;;:::o;59802:94::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59868:9:::1;:22:::0;59802:94::o;59512:98::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59580:10:::1;:24:::0;59512:98::o;43433:170::-;43567:28;43577:4;43583:2;43587:7;43567:9;:28::i;60648:158::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60719:58:::1;::::0;60701:12:::1;::::0;60727:10:::1;::::0;60751:21:::1;::::0;60701:12;60719:58;60701:12;60719:58;60751:21;60727:10;60719:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60700:77;;;60792:7;60784:16;;;::::0;::::1;;60693:113;60648:158::o:0;43674:185::-;43812:39;43829:4;43835:2;43839:7;43812:39;;;;;;;;;;;;:16;:39::i;59618:80::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59677:4:::1;:15:::0;59618:80::o;59904:92::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59969:8:::1;:21:::0;59904:92::o;60002:98::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60073:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60002:98:::0;:::o;40882:124::-;40946:7;40973:20;40985:7;40973:11;:20::i;:::-;:25;;40882:124;-1:-1:-1;;40882:124:0:o;55381:21::-;;;;;;;:::i;38057:206::-;38121:7;-1:-1:-1;;;;;38145:19:0;;38141:60;;38173:28;;-1:-1:-1;;;38173:28:0;;;;;;;;;;;38141:60;-1:-1:-1;;;;;;38227:19:0;;;;;:12;:19;;;;;:27;;;;38057:206::o;14146:103::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;14211:30:::1;14238:1;14211:18;:30::i;:::-;14146:103::o:0;59098:106::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59172:10:::1;:24:::0;59098:106::o;58175:305::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;58277:1:::1;58263:11;:15;58255:55;;;::::0;-1:-1:-1;;;58255:55:0;;14925:2:1;58255:55:0::1;::::0;::::1;14907:21:1::0;14964:2;14944:18;;;14937:30;15003:29;14983:18;;;14976:57;15050:18;;58255:55:0::1;14723:351:1::0;58255:55:0::1;58317:14;58334:13;56455:1:::0;37191:12;36981:7;37175:13;:28;-1:-1:-1;;37175:46:0;;36937:303;58334:13:::1;58386:9;::::0;58317:30;;-1:-1:-1;58362:20:0::1;58371:11:::0;58317:30;58362:20:::1;:::i;:::-;:33;;58354:68;;;::::0;-1:-1:-1;;;58354:68:0;;12245:2:1;58354:68:0::1;::::0;::::1;12227:21:1::0;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:52;12365:18;;58354:68:0::1;12043:346:1::0;58354:68:0::1;58433:35;58443:11;58456;58433:9;:35::i;59014:78::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59069:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;59069:17:0;;::::1;::::0;;;::::1;::::0;;59014:78::o;41242:104::-;41298:13;41331:7;41324:14;;;;;:::i;56483:693::-;56544:6;;;;56543:7;56535:52;;;;-1:-1:-1;;;56535:52:0;;11167:2:1;56535:52:0;;;11149:21:1;;;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11297:18;;56535:52:0;10965:356:1;56535:52:0;56602:10;;;;;;;56594:55;;;;-1:-1:-1;;;56594:55:0;;11528:2:1;56594:55:0;;;11510:21:1;;;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;11658:18;;56594:55:0;11326:356:1;56594:55:0;56656:14;56673:13;56455:1;37191:12;36981:7;37175:13;:28;-1:-1:-1;;37175:46:0;;36937:303;56673:13;56656:30;-1:-1:-1;56693:23:0;56719;12299:10;38057:206;:::i;56719:23::-;56693:49;;56766:1;56757:6;:10;56749:59;;;;-1:-1:-1;;;56749:59:0;;;;;;;:::i;:::-;56833:8;;56823:6;:18;;56815:71;;;;-1:-1:-1;;;56815:71:0;;12998:2:1;56815:71:0;;;12980:21:1;13037:2;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;-1:-1:-1;;;13127:18:1;;;13120:38;13175:19;;56815:71:0;12796:404:1;56815:71:0;56920:9;;56901:15;56910:6;56901;:15;:::i;:::-;:28;;56893:60;;;;-1:-1:-1;;;56893:60:0;;13768:2:1;56893:60:0;;;13750:21:1;13807:2;13787:18;;;13780:30;-1:-1:-1;;;13826:18:1;;;13819:49;13885:18;;56893:60:0;13566:343:1;56893:60:0;56996:12;;56968:24;56986:6;56968:15;:24;:::i;:::-;:40;;56960:89;;;;-1:-1:-1;;;56960:89:0;;;;;;;:::i;:::-;57084:6;57077:4;;:13;;;;:::i;:::-;57064:9;:26;;57056:66;;;;-1:-1:-1;;;57056:66:0;;11889:2:1;57056:66:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:29;11947:18;;;11940:57;12014:18;;57056:66:0;11687:351:1;57056:66:0;57133:31;12299:10;57157:6;57133:9;:31::i;42852:279::-;-1:-1:-1;;;;;42943:24:0;;12299:10;42943:24;42939:54;;;42976:17;;-1:-1:-1;;;42976:17:0;;;;;;;;;;;42939:54;12299:10;43006:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43006:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43006:53:0;;;;;;;;;;43075:48;;8511:41:1;;;43006:42:0;;12299:10;43075:48;;8484:18:1;43075:48:0;;;;;;;42852:279;;:::o;43930:369::-;44097:28;44107:4;44113:2;44117:7;44097:9;:28::i;:::-;-1:-1:-1;;;;;44140:13:0;;16491:19;:23;;44140:76;;;;;44160:56;44191:4;44197:2;44201:7;44210:5;44160:30;:56::i;:::-;44159:57;44140:76;44136:156;;;44240:40;;-1:-1:-1;;;44240:40:0;;;;;;;;;;;44136:156;43930:369;;;;:::o;59312:96::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59379:14:::1;:23:::0;59312:96::o;55407:37::-;;;;;;;:::i;59414:90::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59478:8:::1;:20:::0;59414:90::o;58494:498::-;58592:13;58633:16;58641:7;58633;:16::i;:::-;58617:98;;;;-1:-1:-1;;;58617:98:0;;9171:2:1;58617:98:0;;;9153:21:1;9210:2;9190:18;;;9183:30;9249:34;9229:18;;;9222:62;-1:-1:-1;;;9300:18:1;;;9293:46;9356:19;;58617:98:0;8969:412:1;58617:98:0;58731:8;;;;;;;58728:62;;58768:14;58761:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58494:498;;;:::o;58728:62::-;58798:28;58829:10;:8;:10::i;:::-;58798:41;;58884:1;58859:14;58853:28;:32;:133;;;;;;;;;;;;;;;;;58921:14;58937:18;:7;:16;:18::i;:::-;58957:13;58904:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58853:133;58846:140;58494:498;-1:-1:-1;;;58494:498:0:o;60106:122::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60189:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;59212:92::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59277:12:::1;:21:::0;59212:92::o;59706:88::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;59769:6:::1;:19:::0;59706:88::o;60236:120::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60318:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14404:201::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14493:22:0;::::1;14485:73;;;::::0;-1:-1:-1;;;14485:73:0;;9994:2:1;14485:73:0::1;::::0;::::1;9976:21:1::0;10033:2;10013:18;;;10006:30;10072:34;10052:18;;;10045:62;-1:-1:-1;;;10123:18:1;;;10116:36;10169:19;;14485:73:0::1;9792:402:1::0;14485:73:0::1;14569:28;14588:8;14569:18;:28::i;60541:96::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60610:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;60610:19:0;;::::1;::::0;;;::::1;::::0;;60541:96::o;60443:90::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;60509:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;60509:16:0;;::::1;::::0;;;::::1;::::0;;60443:90::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;44749:104::-;44818:27;44828:2;44832:8;44818:27;;;;;;;;;;;;:9;:27::i;44554:187::-;44611:4;44654:7;56455:1;44635:26;;:53;;;;;44675:13;;44665:7;:23;44635:53;:98;;;;-1:-1:-1;;44706:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44706:27:0;;;;44705:28;;44554:187::o;52165:196::-;52280:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52280:29:0;-1:-1:-1;;;;;52280:29:0;;;;;;;;;52325:28;;52280:24;;52325:28;;;;;;;52165:196;;;:::o;47667:2112::-;47782:35;47820:20;47832:7;47820:11;:20::i;:::-;47895:18;;47782:58;;-1:-1:-1;47853:22:0;;-1:-1:-1;;;;;47879:34:0;12299:10;-1:-1:-1;;;;;47879:34:0;;:101;;;-1:-1:-1;47947:18:0;;47930:50;;12299:10;43202:164;:::i;47930:50::-;47879:154;;;-1:-1:-1;12299:10:0;47997:20;48009:7;47997:11;:20::i;:::-;-1:-1:-1;;;;;47997:36:0;;47879:154;47853:181;;48052:17;48047:66;;48078:35;;-1:-1:-1;;;48078:35:0;;;;;;;;;;;48047:66;48150:4;-1:-1:-1;;;;;48128:26:0;:13;:18;;;-1:-1:-1;;;;;48128:26:0;;48124:67;;48163:28;;-1:-1:-1;;;48163:28:0;;;;;;;;;;;48124:67;-1:-1:-1;;;;;48206:16:0;;48202:52;;48231:23;;-1:-1:-1;;;48231:23:0;;;;;;;;;;;48202:52;48375:49;48392:1;48396:7;48405:13;:18;;;48375:8;:49::i;:::-;-1:-1:-1;;;;;48720:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48720:31:0;;;;;;;-1:-1:-1;;48720:31:0;;;;;;;48766:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48766:29:0;;;;;;;;;;;48812:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48857:61:0;;;;-1:-1:-1;;;48902:15:0;48857:61;;;;;;;;;;;49192:11;;;49222:24;;;;;:29;49192:11;;49222:29;49218:445;;49447:13;;49433:11;:27;49429:219;;;49517:18;;;49485:24;;;:11;:24;;;;;;;;:50;;49600:28;;;;49558:70;;-1:-1:-1;;;49558:70:0;-1:-1:-1;;;;;;49558:70:0;;;-1:-1:-1;;;;;49485:50:0;;;49558:70;;;;;;;49429:219;48695:979;49710:7;49706:2;-1:-1:-1;;;;;49691:27:0;49700:4;-1:-1:-1;;;;;49691:27:0;;;;;;;;;;;49729:42;43930:369;39712:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39822:7:0;;56455:1;39871:23;;:47;;;;;39905:13;;39898:4;:20;39871:47;39867:886;;;39939:31;39973:17;;;:11;:17;;;;;;;;;39939:51;;;;;;;;;-1:-1:-1;;;;;39939:51:0;;;;-1:-1:-1;;;39939:51:0;;;;;;;;;;;-1:-1:-1;;;39939:51:0;;;;;;;;;;;;;;40009:729;;40059:14;;-1:-1:-1;;;;;40059:28:0;;40055:101;;40123:9;39712:1108;-1:-1:-1;;;39712:1108:0:o;40055:101::-;-1:-1:-1;;;40498:6:0;40543:17;;;;:11;:17;;;;;;;;;40531:29;;;;;;;;;-1:-1:-1;;;;;40531:29:0;;;;;-1:-1:-1;;;40531:29:0;;;;;;;;;;;-1:-1:-1;;;40531:29:0;;;;;;;;;;;;;40591:28;40587:109;;40659:9;39712:1108;-1:-1:-1;;;39712:1108:0:o;40587:109::-;40458:261;;;39920:833;39867:886;40781:31;;-1:-1:-1;;;40781:31:0;;;;;;;;;;;14765:191;14858:6;;;-1:-1:-1;;;;;14875:17:0;;;-1:-1:-1;;;;;;14875:17:0;;;;;;;14908:40;;14858:6;;;14875:17;14858:6;;14908:40;;14839:16;;14908:40;14828:128;14765:191;:::o;52853:667::-;53037:72;;-1:-1:-1;;;53037:72:0;;53016:4;;-1:-1:-1;;;;;53037:36:0;;;;;:72;;12299:10;;53088:4;;53094:7;;53103:5;;53037:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53037:72:0;;;;;;;;-1:-1:-1;;53037:72:0;;;;;;;;;;;;:::i;:::-;;;53033:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53271:13:0;;53267:235;;53317:40;;-1:-1:-1;;;53317:40:0;;;;;;;;;;;53267:235;53460:6;53454:13;53445:6;53441:2;53437:15;53430:38;53033:480;-1:-1:-1;;;;;;53156:55:0;-1:-1:-1;;;53156:55:0;;-1:-1:-1;53033:480:0;52853:667;;;;;;:::o;56253:102::-;56313:13;56342:7;56335:14;;;;;:::i;9781:723::-;9837:13;10058:10;10054:53;;-1:-1:-1;;10085:10:0;;;;;;;;;;;;-1:-1:-1;;;10085:10:0;;;;;9781:723::o;10054:53::-;10132:5;10117:12;10173:78;10180:9;;10173:78;;10206:8;;;;:::i;:::-;;-1:-1:-1;10229:10:0;;-1:-1:-1;10237:2:0;10229:10;;:::i;:::-;;;10173:78;;;10261:19;10293:6;10283:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10283:17:0;;10261:39;;10311:154;10318:10;;10311:154;;10345:11;10355:1;10345:11;;:::i;:::-;;-1:-1:-1;10414:10:0;10422:2;10414:5;:10;:::i;:::-;10401:24;;:2;:24;:::i;:::-;10388:39;;10371:6;10378;10371:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10371:56:0;;;;;;;;-1:-1:-1;10442:11:0;10451:2;10442:11;;:::i;:::-;;;10311:154;;1475:675;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;45216:163::-;45339:32;45345:2;45349:8;45359:5;45366:4;45777:20;45800:13;-1:-1:-1;;;;;45828:16:0;;45824:48;;45853:19;;-1:-1:-1;;;45853:19:0;;;;;;;;;;;45824:48;45887:13;45883:44;;45909:18;;-1:-1:-1;;;45909:18:0;;;;;;;;;;;45883:44;-1:-1:-1;;;;;46278:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;46337:49:0;;46278:44;;;;;;;;46337:49;;;;-1:-1:-1;;46278:44:0;;;;;;46337:49;;;;;;;;;;;;;;;;46403:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46453:66:0;;;;-1:-1:-1;;;46503:15:0;46453:66;;;;;;;;;;46403:25;46600:23;;;46644:4;:23;;;;-1:-1:-1;;;;;;46652:13:0;;16491:19;:23;;46652:15;46640:641;;;46688:314;46719:38;;46744:12;;-1:-1:-1;;;;;46719:38:0;;;46736:1;;46719:38;;46736:1;;46719:38;46785:69;46824:1;46828:2;46832:14;;;;;;46848:5;46785:30;:69::i;:::-;46780:174;;46890:40;;-1:-1:-1;;;46890:40:0;;;;;;;;;;;46780:174;46997:3;46981:12;:19;;46688:314;;47083:12;47066:13;;:29;47062:43;;47097:8;;;47062:43;46640:641;;;47146:120;47177:40;;47202:14;;;;;-1:-1:-1;;;;;47177:40:0;;;47194:1;;47177:40;;47194:1;;47177:40;47261:3;47245:12;:19;;47146:120;;46640:641;-1:-1:-1;47295:13:0;:28;47345:60;43930:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:52;;;4924:1;4921;4914:12;4876:52;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4744:683;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5928:1527::-;6152:3;6190:6;6184:13;6216:4;6229:51;6273:6;6268:3;6263:2;6255:6;6251:15;6229:51;:::i;:::-;6343:13;;6302:16;;;;6365:55;6343:13;6302:16;6387:15;;;6365:55;:::i;:::-;6509:13;;6442:20;;;6482:1;;6569;6591:18;;;;6644;;;;6671:93;;6749:4;6739:8;6735:19;6723:31;;6671:93;6812:2;6802:8;6799:16;6779:18;6776:40;6773:167;;;-1:-1:-1;;;6839:33:1;;6895:4;6892:1;6885:15;6925:4;6846:3;6913:17;6773:167;6956:18;6983:110;;;;7107:1;7102:328;;;;6949:481;;6983:110;-1:-1:-1;;7018:24:1;;7004:39;;7063:20;;;;-1:-1:-1;6983:110:1;;7102:328;15334:1;15327:14;;;15371:4;15358:18;;7197:1;7211:169;7225:8;7222:1;7219:15;7211:169;;;7307:14;;7292:13;;;7285:37;7350:16;;;;7242:10;;7211:169;;;7215:3;;7411:8;7404:5;7400:20;7393:27;;6949:481;-1:-1:-1;7446:3:1;;5928:1527;-1:-1:-1;;;;;;;;;;;5928:1527:1:o;7878:488::-;-1:-1:-1;;;;;8147:15:1;;;8129:34;;8199:15;;8194:2;8179:18;;8172:43;8246:2;8231:18;;8224:34;;;8294:3;8289:2;8274:18;;8267:31;;;8072:4;;8315:45;;8340:19;;8332:6;8315:45;:::i;:::-;8307:53;7878:488;-1:-1:-1;;;;;;7878:488:1:o;8745:219::-;8894:2;8883:9;8876:21;8857:4;8914:44;8954:2;8943:9;8939:18;8931:6;8914:44;:::i;10560:400::-;10762:2;10744:21;;;10801:2;10781:18;;;10774:30;10840:34;10835:2;10820:18;;10813:62;-1:-1:-1;;;10906:2:1;10891:18;;10884:34;10950:3;10935:19;;10560:400::o;13205:356::-;13407:2;13389:21;;;13426:18;;;13419:30;13485:34;13480:2;13465:18;;13458:62;13552:2;13537:18;;13205:356::o;14318:400::-;14520:2;14502:21;;;14559:2;14539:18;;;14532:30;14598:34;14593:2;14578:18;;14571:62;-1:-1:-1;;;14664:2:1;14649:18;;14642:34;14708:3;14693:19;;14318:400::o;15387:128::-;15427:3;15458:1;15454:6;15451:1;15448:13;15445:39;;;15464:18;;:::i;:::-;-1:-1:-1;15500:9:1;;15387:128::o;15520:120::-;15560:1;15586;15576:35;;15591:18;;:::i;:::-;-1:-1:-1;15625:9:1;;15520:120::o;15645:168::-;15685:7;15751:1;15747;15743:6;15739:14;15736:1;15733:21;15728:1;15721:9;15714:17;15710:45;15707:71;;;15758:18;;:::i;:::-;-1:-1:-1;15798:9:1;;15645:168::o;15818:125::-;15858:4;15886:1;15883;15880:8;15877:34;;;15891:18;;:::i;:::-;-1:-1:-1;15928:9:1;;15818:125::o;15948:258::-;16020:1;16030:113;16044:6;16041:1;16038:13;16030:113;;;16120:11;;;16114:18;16101:11;;;16094:39;16066:2;16059:10;16030:113;;;16161:6;16158:1;16155:13;16152:48;;;-1:-1:-1;;16196:1:1;16178:16;;16171:27;15948:258::o;16211:380::-;16290:1;16286:12;;;;16333;;;16354:61;;16408:4;16400:6;16396:17;16386:27;;16354:61;16461:2;16453:6;16450:14;16430:18;16427:38;16424:161;;;16507:10;16502:3;16498:20;16495:1;16488:31;16542:4;16539:1;16532:15;16570:4;16567:1;16560:15;16424:161;;16211:380;;;:::o;16596:135::-;16635:3;-1:-1:-1;;16656:17:1;;16653:43;;;16676:18;;:::i;:::-;-1:-1:-1;16723:1:1;16712:13;;16596:135::o;16736:112::-;16768:1;16794;16784:35;;16799:18;;:::i;:::-;-1:-1:-1;16833:9:1;;16736:112::o;16853:127::-;16914:10;16909:3;16905:20;16902:1;16895:31;16945:4;16942:1;16935:15;16969:4;16966:1;16959:15;16985:127;17046:10;17041:3;17037:20;17034:1;17027:31;17077:4;17074:1;17067:15;17101:4;17098:1;17091:15;17117:127;17178:10;17173:3;17169:20;17166:1;17159:31;17209:4;17206:1;17199:15;17233:4;17230:1;17223:15;17249:127;17310:10;17305:3;17301:20;17298:1;17291:31;17341:4;17338:1;17331:15;17365:4;17362:1;17355:15;17381:131;-1:-1:-1;;;;;;17455:32:1;;17445:43;;17435:71;;17502:1;17499;17492:12

Swarm Source

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