ETH Price: $2,895.61 (-5.02%)
Gas: 4 Gwei

Token

The Cure (CURE)
 

Overview

Max Total Supply

1,412 CURE

Holders

283

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CURE
0x3027358eb5d3fb271eeb8f46b99e2b8d748179cb
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:
TheCure

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-20
*/

// SPDX-License-Identifier: MIT



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/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/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: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 1;
    }

    /**
     * @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) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr && 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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}


    pragma solidity ^0.8.13;
    
    contract TheCure  is ERC721A, Ownable,  OperatorFilterer {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeiegkeq7fvboic5ipounkeva6cmxes3yzfhtwbqwxjga7ngjuyscje/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  uint256 public cost = 0.002 ether;
 
  

  uint16 public maxSupply = 5911;
  uint8 public maxMintAmountPerTx = 10;
   uint8 public maxMintAmountPerWallet = 20;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 5911;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function Mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner  {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002a6760a039600990620000239082620002a1565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004f9082620002a1565b5066071afd498d0000600c55600d805464ffffffffff19166401140a17171790556000600e55611717600f556010805462ffff001916620101001790553480156200009957600080fd5b5060405162002aaa38038062002aaa833981016040819052620000bc916200041c565b81816002620000cc8382620002a1565b506003620000db8282620002a1565b5050600160005550620000ee336200010d565b620000f86200015f565b50506010805460ff1916600117905562000486565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000180733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000182565b565b6001600160a01b0390911690637d3e3dbe81620001b25782620001ab5750634420e486620001b2565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f2578060005160e01c03620001f257600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029c57600081815260208120601f850160051c81016020861015620002775750805b601f850160051c820191505b81811015620002985782815560010162000283565b5050505b505050565b81516001600160401b03811115620002bd57620002bd620001fc565b620002d581620002ce845462000212565b846200024e565b602080601f8311600181146200030d5760008415620002f45750858301515b600019600386901b1c1916600185901b17855562000298565b600085815260208120601f198616915b828110156200033e578886015182559484019460019091019084016200031d565b50858210156200035d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200037f57600080fd5b81516001600160401b03808211156200039c576200039c620001fc565b604051601f8301601f19908116603f01168101908282118183101715620003c757620003c7620001fc565b81604052838152602092508683858801011115620003e457600080fd5b600091505b83821015620004085785820183015181830184015290820190620003e9565b600093810190920192909252949350505050565b600080604083850312156200043057600080fd5b82516001600160401b03808211156200044857600080fd5b62000456868387016200036d565b935060208501519150808211156200046d57600080fd5b506200047c858286016200036d565b9150509250929050565b6125d180620004966000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b1461072f578063f8bf51721461074f578063fb796e6c1461077157600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806394354fd0116100fd57806394354fd01461058357806395d89b41146105b5578063982d669e146105ca578063a22cb465146105e0578063a475b5dd1461060057600080fd5b80636352211e146104f057806370a0823114610510578063715018a6146105305780637ec4a659146105455780638da5cb5b1461056557600080fd5b8063193ad7b4116101d25780633bd64968116101965780633bd64968146104475780633ccfd60b1461045c57806342842e0e1461047157806344a0d68a146104915780634d9c1848146104b15780635c975abb146104d157600080fd5b8063193ad7b4146103bc57806323b872dd146103d25780632f6f98e1146103f2578063305ae7751461041257806337a66d851461043257600080fd5b8063095ea7b311610219578063095ea7b31461031a5780630a00ae831461033a5780631067fcc71461035a57806313faede61461037a57806318160ddd1461039e57600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad57806307883703146102cf578063081812fc146102e2575b600080fd5b34801561026257600080fd5b50610276610271366004611dfe565b61078b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e32565b6107dd565b005b3480156102b957600080fd5b506102c2610828565b6040516102829190611e9d565b6102ab6102dd366004611eb0565b6108ba565b3480156102ee57600080fd5b506103026102fd366004611eb0565b610baa565b6040516001600160a01b039091168152602001610282565b34801561032657600080fd5b506102ab610335366004611ee0565b610bee565b34801561034657600080fd5b506102ab610355366004611eb0565b610c7b565b34801561036657600080fd5b506102ab610375366004611f96565b610caa565b34801561038657600080fd5b50610390600c5481565b604051908152602001610282565b3480156103aa57600080fd5b50610390600154600054036000190190565b3480156103c857600080fd5b50610390600e5481565b3480156103de57600080fd5b506102ab6103ed366004611fdf565b610ce4565b3480156103fe57600080fd5b506102ab61040d36600461201b565b610d1a565b34801561041e57600080fd5b506102ab61042d366004611f96565b610dc1565b34801561043e57600080fd5b506102ab610df7565b34801561045357600080fd5b506102ab610e3e565b34801561046857600080fd5b506102ab610e87565b34801561047d57600080fd5b506102ab61048c366004611fdf565b610f22565b34801561049d57600080fd5b506102ab6104ac366004611eb0565b610f52565b3480156104bd57600080fd5b506102ab6104cc36600461205f565b610f81565b3480156104dd57600080fd5b5060105461027690610100900460ff1681565b3480156104fc57600080fd5b5061030261050b366004611eb0565b610fcd565b34801561051c57600080fd5b5061039061052b36600461207a565b610fdf565b34801561053c57600080fd5b506102ab61102e565b34801561055157600080fd5b506102ab610560366004611f96565b611064565b34801561057157600080fd5b506008546001600160a01b0316610302565b34801561058f57600080fd5b50600d546105a39062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105c157600080fd5b506102c261109a565b3480156105d657600080fd5b50610390600f5481565b3480156105ec57600080fd5b506102ab6105fb3660046120a5565b6110a9565b34801561060c57600080fd5b506010546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b36600461205f565b61113e565b34801561064c57600080fd5b506102ab61065b3660046120cf565b611186565b34801561066c57600080fd5b506102ab61067b3660046120ea565b6111c3565b34801561068c57600080fd5b50600d546105a3906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611eb0565b6111fb565b3480156106cd57600080fd5b506102ab6106dc366004612166565b611370565b3480156106ed57600080fd5b50600d546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a3660046121ec565b611474565b34801561073b57600080fd5b506102ab61074a36600461207a565b6114a2565b34801561075b57600080fd5b50600d546105a390640100000000900460ff1681565b34801561077d57600080fd5b506010546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107bc57506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108105760405162461bcd60e51b815260040161080790612208565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546108379061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061223d565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b3233146109095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610807565b601054610100900460ff16156109615760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610807565b600d546109739061ffff16600161228d565b61ffff1681610989600154600054036000190190565b61099391906122af565b106109ca5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610807565b600d546301000000900460ff16816109e133610fdf565b6109eb91906122af565b1115610a395760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610807565b600f5481600e54610a4a91906122af565b1115610aad573481600c54610a5f91906122c2565b1115610aa85760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b610b9d565b600d54640100000000900460ff1681610ac533610fdf565b610acf91906122af565b1115610b58573481600c54610ae491906122c2565b1115610b2d5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b600d5462010000900460ff16811115610aa85760405162461bcd60e51b8152600401610807906122d9565b600d54640100000000900460ff16811115610b855760405162461bcd60e51b8152600401610807906122d9565b80600e6000828254610b9791906122af565b90915550505b610ba7338261153a565b50565b6000610bb582611554565b610bd2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bf982610fcd565b9050806001600160a01b0316836001600160a01b031603610c2d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c4d5750610c4b8133611474565b155b15610c6b576040516367d9dca160e11b815260040160405180910390fd5b610c7683838361158d565b505050565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260040161080790612208565b600f55565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161080790612208565b600b610ce08282612361565b5050565b826001600160a01b0381163314610d095760105460ff1615610d0957610d09336115e9565b610d1484848461162d565b50505050565b6008546001600160a01b03163314610d445760405162461bcd60e51b815260040161080790612208565b6000610d57600154600054036000190190565b600d5490915061ffff16610d6b848361228d565b61ffff161115610db35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b610c76828461ffff1661153a565b6008546001600160a01b03163314610deb5760405162461bcd60e51b815260040161080790612208565b600a610ce08282612361565b6008546001600160a01b03163314610e215760405162461bcd60e51b815260040161080790612208565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610e685760405162461bcd60e51b815260040161080790612208565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161080790612208565b6000610ec56008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f0f576040519150601f19603f3d011682016040523d82523d6000602084013e610f14565b606091505b5050905080610ba757600080fd5b826001600160a01b0381163314610f475760105460ff1615610f4757610f47336115e9565b610d14848484611638565b6008546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161080790612208565b600c55565b6008546001600160a01b03163314610fab5760405162461bcd60e51b815260040161080790612208565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610fd882611653565b5192915050565b60006001600160a01b038216611008576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110585760405162461bcd60e51b815260040161080790612208565b611062600061177c565b565b6008546001600160a01b0316331461108e5760405162461bcd60e51b815260040161080790612208565b6009610ce08282612361565b6060600380546108379061223d565b336001600160a01b038316036110d25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111685760405162461bcd60e51b815260040161080790612208565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b031633146111b05760405162461bcd60e51b815260040161080790612208565b6010805460ff1916911515919091179055565b836001600160a01b03811633146111e85760105460ff16156111e8576111e8336115e9565b6111f4858585856117ce565b5050505050565b606061120682611554565b61126a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b60105462010000900460ff16151560000361131157600b805461128c9061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546112b89061223d565b80156113055780601f106112da57610100808354040283529160200191611305565b820191906000526020600020905b8154815290600101906020018083116112e857829003601f168201915b50505050509050919050565b600061131b611819565b9050600081511161133b5760405180602001604052806000815250611369565b8061134584611828565b600a60405160200161135993929190612421565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139a5760405162461bcd60e51b815260040161080790612208565b60006113ad600154600054036000190190565b905060006113be8360ff87166122c2565b600d5490915061ffff908116906113d890839085166122af565b111561141c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b60005b8381101561146c5761145a85858381811061143c5761143c6124c1565b9050602002016020810190611451919061207a565b8760ff1661153a565b80611464816124d7565b91505061141f565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146114cc5760405162461bcd60e51b815260040161080790612208565b6001600160a01b0381166115315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610ba78161177c565b610ce0828260405180602001604052806000815250611931565b600081600111158015611568575060005482105b80156107d7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611625573d6000803e3d6000fd5b6000603a5250565b610c7683838361193e565b610c76838383604051806020016040528060008152506111c3565b60408051606081018252600080825260208201819052918101919091528180600111158015611683575060005481105b1561176357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117615780516001600160a01b0316156116f7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561175c579392505050565b6116f7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d984848461193e565b6001600160a01b0383163b151580156117fb57506117f984848484611b2b565b155b15610d14576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546108379061223d565b60608160000361184f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118795780611863816124d7565b91506118729050600a83612506565b9150611853565b60008167ffffffffffffffff81111561189457611894611f0a565b6040519080825280601f01601f1916602001820160405280156118be576020820181803683370190505b5090505b8415611929576118d360018361251a565b91506118e0600a8661252d565b6118eb9060306122af565b60f81b818381518110611900576119006124c1565b60200101906001600160f81b031916908160001a905350611922600a86612506565b94506118c2565b949350505050565b610c768383836001611c16565b600061194982611653565b9050836001600160a01b031681600001516001600160a01b0316146119805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061199e575061199e8533611474565b806119b95750336119ae84610baa565b6001600160a01b0316145b9050806119d957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a0057604051633a954ecd60e21b815260040160405180910390fd5b611a0c6000848761158d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ae2576000548214611ae2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111f4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b60903390899088908890600401612541565b6020604051808303816000875af1925050508015611b9b575060408051601f3d908101601f19168201909252611b989181019061257e565b60015b611bf9573d808015611bc9576040519150601f19603f3d011682016040523d82523d6000602084013e611bce565b606091505b508051600003611bf1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c3f57604051622e076360e81b815260040160405180910390fd5b83600003611c605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d1257506001600160a01b0387163b15155b15611d9a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d636000888480600101955088611b2b565b611d80576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d18578260005414611d9557600080fd5b611ddf565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d9b575b506000556111f4565b6001600160e01b031981168114610ba757600080fd5b600060208284031215611e1057600080fd5b813561136981611de8565b803561ffff81168114611e2d57600080fd5b919050565b600060208284031215611e4457600080fd5b61136982611e1b565b60005b83811015611e68578181015183820152602001611e50565b50506000910152565b60008151808452611e89816020860160208601611e4d565b601f01601f19169290920160200192915050565b6020815260006113696020830184611e71565b600060208284031215611ec257600080fd5b5035919050565b80356001600160a01b0381168114611e2d57600080fd5b60008060408385031215611ef357600080fd5b611efc83611ec9565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f3b57611f3b611f0a565b604051601f8501601f19908116603f01168101908282118183101715611f6357611f63611f0a565b81604052809350858152868686011115611f7c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fa857600080fd5b813567ffffffffffffffff811115611fbf57600080fd5b8201601f81018413611fd057600080fd5b61192984823560208401611f20565b600080600060608486031215611ff457600080fd5b611ffd84611ec9565b925061200b60208501611ec9565b9150604084013590509250925092565b6000806040838503121561202e57600080fd5b61203783611e1b565b915061204560208401611ec9565b90509250929050565b803560ff81168114611e2d57600080fd5b60006020828403121561207157600080fd5b6113698261204e565b60006020828403121561208c57600080fd5b61136982611ec9565b80358015158114611e2d57600080fd5b600080604083850312156120b857600080fd5b6120c183611ec9565b915061204560208401612095565b6000602082840312156120e157600080fd5b61136982612095565b6000806000806080858703121561210057600080fd5b61210985611ec9565b935061211760208601611ec9565b925060408501359150606085013567ffffffffffffffff81111561213a57600080fd5b8501601f8101871361214b57600080fd5b61215a87823560208401611f20565b91505092959194509250565b60008060006040848603121561217b57600080fd5b6121848461204e565b9250602084013567ffffffffffffffff808211156121a157600080fd5b818601915086601f8301126121b557600080fd5b8135818111156121c457600080fd5b8760208260051b85010111156121d957600080fd5b6020830194508093505050509250925092565b600080604083850312156121ff57600080fd5b61203783611ec9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225157607f821691505b60208210810361227157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156122a8576122a8612277565b5092915050565b808201808211156107d7576107d7612277565b80820281158282048414176107d7576107d7612277565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b601f821115610c7657600081815260208120601f850160051c810160208610156123425750805b601f850160051c820191505b8181101561146c5782815560010161234e565b815167ffffffffffffffff81111561237b5761237b611f0a565b61238f81612389845461223d565b8461231b565b602080601f8311600181146123c457600084156123ac5750858301515b600019600386901b1c1916600185901b17855561146c565b600085815260208120601f198616915b828110156123f3578886015182559484019460019091019084016123d4565b50858210156124115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206124348285838a01611e4d565b8551918401916124478184848a01611e4d565b85549201916000906124588161223d565b600182811680156124705760018114612485576124b1565b60ff19841687528215158302870194506124b1565b896000528560002060005b848110156124a957815489820152908301908701612490565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124e9576124e9612277565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612515576125156124f0565b500490565b818103818111156107d7576107d7612277565b60008261253c5761253c6124f0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257490830184611e71565b9695505050505050565b60006020828403121561259057600080fd5b815161136981611de856fea26469706673582212201e9150a3978e2a097b5cccae4f49841a74520e8989e2628c5a922e0aff62fb8364736f6c63430008110033697066733a2f2f6261667962656965676b6571376676626f69633569706f756e6b65766136636d78657333797a66687477627177786a6761376e676a757973636a652f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008546865204375726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044355524500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b1461072f578063f8bf51721461074f578063fb796e6c1461077157600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806394354fd0116100fd57806394354fd01461058357806395d89b41146105b5578063982d669e146105ca578063a22cb465146105e0578063a475b5dd1461060057600080fd5b80636352211e146104f057806370a0823114610510578063715018a6146105305780637ec4a659146105455780638da5cb5b1461056557600080fd5b8063193ad7b4116101d25780633bd64968116101965780633bd64968146104475780633ccfd60b1461045c57806342842e0e1461047157806344a0d68a146104915780634d9c1848146104b15780635c975abb146104d157600080fd5b8063193ad7b4146103bc57806323b872dd146103d25780632f6f98e1146103f2578063305ae7751461041257806337a66d851461043257600080fd5b8063095ea7b311610219578063095ea7b31461031a5780630a00ae831461033a5780631067fcc71461035a57806313faede61461037a57806318160ddd1461039e57600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad57806307883703146102cf578063081812fc146102e2575b600080fd5b34801561026257600080fd5b50610276610271366004611dfe565b61078b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e32565b6107dd565b005b3480156102b957600080fd5b506102c2610828565b6040516102829190611e9d565b6102ab6102dd366004611eb0565b6108ba565b3480156102ee57600080fd5b506103026102fd366004611eb0565b610baa565b6040516001600160a01b039091168152602001610282565b34801561032657600080fd5b506102ab610335366004611ee0565b610bee565b34801561034657600080fd5b506102ab610355366004611eb0565b610c7b565b34801561036657600080fd5b506102ab610375366004611f96565b610caa565b34801561038657600080fd5b50610390600c5481565b604051908152602001610282565b3480156103aa57600080fd5b50610390600154600054036000190190565b3480156103c857600080fd5b50610390600e5481565b3480156103de57600080fd5b506102ab6103ed366004611fdf565b610ce4565b3480156103fe57600080fd5b506102ab61040d36600461201b565b610d1a565b34801561041e57600080fd5b506102ab61042d366004611f96565b610dc1565b34801561043e57600080fd5b506102ab610df7565b34801561045357600080fd5b506102ab610e3e565b34801561046857600080fd5b506102ab610e87565b34801561047d57600080fd5b506102ab61048c366004611fdf565b610f22565b34801561049d57600080fd5b506102ab6104ac366004611eb0565b610f52565b3480156104bd57600080fd5b506102ab6104cc36600461205f565b610f81565b3480156104dd57600080fd5b5060105461027690610100900460ff1681565b3480156104fc57600080fd5b5061030261050b366004611eb0565b610fcd565b34801561051c57600080fd5b5061039061052b36600461207a565b610fdf565b34801561053c57600080fd5b506102ab61102e565b34801561055157600080fd5b506102ab610560366004611f96565b611064565b34801561057157600080fd5b506008546001600160a01b0316610302565b34801561058f57600080fd5b50600d546105a39062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105c157600080fd5b506102c261109a565b3480156105d657600080fd5b50610390600f5481565b3480156105ec57600080fd5b506102ab6105fb3660046120a5565b6110a9565b34801561060c57600080fd5b506010546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b36600461205f565b61113e565b34801561064c57600080fd5b506102ab61065b3660046120cf565b611186565b34801561066c57600080fd5b506102ab61067b3660046120ea565b6111c3565b34801561068c57600080fd5b50600d546105a3906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611eb0565b6111fb565b3480156106cd57600080fd5b506102ab6106dc366004612166565b611370565b3480156106ed57600080fd5b50600d546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a3660046121ec565b611474565b34801561073b57600080fd5b506102ab61074a36600461207a565b6114a2565b34801561075b57600080fd5b50600d546105a390640100000000900460ff1681565b34801561077d57600080fd5b506010546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107bc57506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108105760405162461bcd60e51b815260040161080790612208565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546108379061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061223d565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b3233146109095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610807565b601054610100900460ff16156109615760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610807565b600d546109739061ffff16600161228d565b61ffff1681610989600154600054036000190190565b61099391906122af565b106109ca5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610807565b600d546301000000900460ff16816109e133610fdf565b6109eb91906122af565b1115610a395760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610807565b600f5481600e54610a4a91906122af565b1115610aad573481600c54610a5f91906122c2565b1115610aa85760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b610b9d565b600d54640100000000900460ff1681610ac533610fdf565b610acf91906122af565b1115610b58573481600c54610ae491906122c2565b1115610b2d5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b600d5462010000900460ff16811115610aa85760405162461bcd60e51b8152600401610807906122d9565b600d54640100000000900460ff16811115610b855760405162461bcd60e51b8152600401610807906122d9565b80600e6000828254610b9791906122af565b90915550505b610ba7338261153a565b50565b6000610bb582611554565b610bd2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bf982610fcd565b9050806001600160a01b0316836001600160a01b031603610c2d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c4d5750610c4b8133611474565b155b15610c6b576040516367d9dca160e11b815260040160405180910390fd5b610c7683838361158d565b505050565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260040161080790612208565b600f55565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161080790612208565b600b610ce08282612361565b5050565b826001600160a01b0381163314610d095760105460ff1615610d0957610d09336115e9565b610d1484848461162d565b50505050565b6008546001600160a01b03163314610d445760405162461bcd60e51b815260040161080790612208565b6000610d57600154600054036000190190565b600d5490915061ffff16610d6b848361228d565b61ffff161115610db35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b610c76828461ffff1661153a565b6008546001600160a01b03163314610deb5760405162461bcd60e51b815260040161080790612208565b600a610ce08282612361565b6008546001600160a01b03163314610e215760405162461bcd60e51b815260040161080790612208565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610e685760405162461bcd60e51b815260040161080790612208565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161080790612208565b6000610ec56008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f0f576040519150601f19603f3d011682016040523d82523d6000602084013e610f14565b606091505b5050905080610ba757600080fd5b826001600160a01b0381163314610f475760105460ff1615610f4757610f47336115e9565b610d14848484611638565b6008546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161080790612208565b600c55565b6008546001600160a01b03163314610fab5760405162461bcd60e51b815260040161080790612208565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610fd882611653565b5192915050565b60006001600160a01b038216611008576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110585760405162461bcd60e51b815260040161080790612208565b611062600061177c565b565b6008546001600160a01b0316331461108e5760405162461bcd60e51b815260040161080790612208565b6009610ce08282612361565b6060600380546108379061223d565b336001600160a01b038316036110d25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111685760405162461bcd60e51b815260040161080790612208565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b031633146111b05760405162461bcd60e51b815260040161080790612208565b6010805460ff1916911515919091179055565b836001600160a01b03811633146111e85760105460ff16156111e8576111e8336115e9565b6111f4858585856117ce565b5050505050565b606061120682611554565b61126a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b60105462010000900460ff16151560000361131157600b805461128c9061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546112b89061223d565b80156113055780601f106112da57610100808354040283529160200191611305565b820191906000526020600020905b8154815290600101906020018083116112e857829003601f168201915b50505050509050919050565b600061131b611819565b9050600081511161133b5760405180602001604052806000815250611369565b8061134584611828565b600a60405160200161135993929190612421565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139a5760405162461bcd60e51b815260040161080790612208565b60006113ad600154600054036000190190565b905060006113be8360ff87166122c2565b600d5490915061ffff908116906113d890839085166122af565b111561141c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b60005b8381101561146c5761145a85858381811061143c5761143c6124c1565b9050602002016020810190611451919061207a565b8760ff1661153a565b80611464816124d7565b91505061141f565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146114cc5760405162461bcd60e51b815260040161080790612208565b6001600160a01b0381166115315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610ba78161177c565b610ce0828260405180602001604052806000815250611931565b600081600111158015611568575060005482105b80156107d7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611625573d6000803e3d6000fd5b6000603a5250565b610c7683838361193e565b610c76838383604051806020016040528060008152506111c3565b60408051606081018252600080825260208201819052918101919091528180600111158015611683575060005481105b1561176357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117615780516001600160a01b0316156116f7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561175c579392505050565b6116f7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d984848461193e565b6001600160a01b0383163b151580156117fb57506117f984848484611b2b565b155b15610d14576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546108379061223d565b60608160000361184f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118795780611863816124d7565b91506118729050600a83612506565b9150611853565b60008167ffffffffffffffff81111561189457611894611f0a565b6040519080825280601f01601f1916602001820160405280156118be576020820181803683370190505b5090505b8415611929576118d360018361251a565b91506118e0600a8661252d565b6118eb9060306122af565b60f81b818381518110611900576119006124c1565b60200101906001600160f81b031916908160001a905350611922600a86612506565b94506118c2565b949350505050565b610c768383836001611c16565b600061194982611653565b9050836001600160a01b031681600001516001600160a01b0316146119805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061199e575061199e8533611474565b806119b95750336119ae84610baa565b6001600160a01b0316145b9050806119d957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a0057604051633a954ecd60e21b815260040160405180910390fd5b611a0c6000848761158d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611ae2576000548214611ae2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111f4565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b60903390899088908890600401612541565b6020604051808303816000875af1925050508015611b9b575060408051601f3d908101601f19168201909252611b989181019061257e565b60015b611bf9573d808015611bc9576040519150601f19603f3d011682016040523d82523d6000602084013e611bce565b606091505b508051600003611bf1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c3f57604051622e076360e81b815260040160405180910390fd5b83600003611c605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d1257506001600160a01b0387163b15155b15611d9a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d636000888480600101955088611b2b565b611d80576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d18578260005414611d9557600080fd5b611ddf565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d9b575b506000556111f4565b6001600160e01b031981168114610ba757600080fd5b600060208284031215611e1057600080fd5b813561136981611de8565b803561ffff81168114611e2d57600080fd5b919050565b600060208284031215611e4457600080fd5b61136982611e1b565b60005b83811015611e68578181015183820152602001611e50565b50506000910152565b60008151808452611e89816020860160208601611e4d565b601f01601f19169290920160200192915050565b6020815260006113696020830184611e71565b600060208284031215611ec257600080fd5b5035919050565b80356001600160a01b0381168114611e2d57600080fd5b60008060408385031215611ef357600080fd5b611efc83611ec9565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f3b57611f3b611f0a565b604051601f8501601f19908116603f01168101908282118183101715611f6357611f63611f0a565b81604052809350858152868686011115611f7c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fa857600080fd5b813567ffffffffffffffff811115611fbf57600080fd5b8201601f81018413611fd057600080fd5b61192984823560208401611f20565b600080600060608486031215611ff457600080fd5b611ffd84611ec9565b925061200b60208501611ec9565b9150604084013590509250925092565b6000806040838503121561202e57600080fd5b61203783611e1b565b915061204560208401611ec9565b90509250929050565b803560ff81168114611e2d57600080fd5b60006020828403121561207157600080fd5b6113698261204e565b60006020828403121561208c57600080fd5b61136982611ec9565b80358015158114611e2d57600080fd5b600080604083850312156120b857600080fd5b6120c183611ec9565b915061204560208401612095565b6000602082840312156120e157600080fd5b61136982612095565b6000806000806080858703121561210057600080fd5b61210985611ec9565b935061211760208601611ec9565b925060408501359150606085013567ffffffffffffffff81111561213a57600080fd5b8501601f8101871361214b57600080fd5b61215a87823560208401611f20565b91505092959194509250565b60008060006040848603121561217b57600080fd5b6121848461204e565b9250602084013567ffffffffffffffff808211156121a157600080fd5b818601915086601f8301126121b557600080fd5b8135818111156121c457600080fd5b8760208260051b85010111156121d957600080fd5b6020830194508093505050509250925092565b600080604083850312156121ff57600080fd5b61203783611ec9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225157607f821691505b60208210810361227157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156122a8576122a8612277565b5092915050565b808201808211156107d7576107d7612277565b80820281158282048414176107d7576107d7612277565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b601f821115610c7657600081815260208120601f850160051c810160208610156123425750805b601f850160051c820191505b8181101561146c5782815560010161234e565b815167ffffffffffffffff81111561237b5761237b611f0a565b61238f81612389845461223d565b8461231b565b602080601f8311600181146123c457600084156123ac5750858301515b600019600386901b1c1916600185901b17855561146c565b600085815260208120601f198616915b828110156123f3578886015182559484019460019091019084016123d4565b50858210156124115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206124348285838a01611e4d565b8551918401916124478184848a01611e4d565b85549201916000906124588161223d565b600182811680156124705760018114612485576124b1565b60ff19841687528215158302870194506124b1565b896000528560002060005b848110156124a957815489820152908301908701612490565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124e9576124e9612277565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612515576125156124f0565b500490565b818103818111156107d7576107d7612277565b60008261253c5761253c6124f0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257490830184611e71565b9695505050505050565b60006020828403121561259057600080fd5b815161136981611de856fea26469706673582212201e9150a3978e2a097b5cccae4f49841a74520e8989e2628c5a922e0aff62fb8364736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008546865204375726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044355524500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Cure
Arg [1] : _tokenSymbol (string): CURE

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 5468652043757265000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4355524500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49882:6031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;52967:97;;;;;;;;;;-1:-1:-1;52967:97:0;;;;;:::i;:::-;;:::i;:::-;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51006:1140::-;;;;;;:::i;:::-;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;29061:204:0;1886:203:1;28624:371:0;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;54044:129::-;;;;;;;;;;-1:-1:-1;54044:129:0;;;;;:::i;:::-;;:::i;53940:102::-;;;;;;;;;;-1:-1:-1;53940:102:0;;;;;:::i;:::-;;:::i;50161:33::-;;;;;;;;;;;;;;;;;;;3902:25:1;;;3890:2;3875:18;50161:33:0;3756:177:1;23694:303:0;;;;;;;;;;;;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;50382:39;;;;;;;;;;;;;;;;55105:159;;;;;;;;;;-1:-1:-1;55105:159:0;;;;;:::i;:::-;;:::i;52152:326::-;;;;;;;;;;-1:-1:-1;52152:326:0;;;;;:::i;:::-;;:::i;53723:102::-;;;;;;;;;;-1:-1:-1;53723:102:0;;;;;:::i;:::-;;:::i;54179:71::-;;;;;;;;;;;;;:::i;54337:70::-;;;;;;;;;;;;;:::i;54531:463::-;;;;;;;;;;;;;:::i;55270:167::-;;;;;;;;;;-1:-1:-1;55270:167:0;;;;;:::i;:::-;;:::i;54256:76::-;;;;;;;;;;-1:-1:-1;54256:76:0;;;;;:::i;:::-;;:::i;53576:134::-;;;;;;;;;;-1:-1:-1;53576:134:0;;;;;:::i;:::-;;:::i;50581:25::-;;;;;;;;;;-1:-1:-1;50581:25:0;;;;;;;;;;;27366:125;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;43267:103::-;;;;;;;;;;;;;:::i;53833:102::-;;;;;;;;;;-1:-1:-1;53833:102:0;;;;;:::i;:::-;;:::i;42615:87::-;;;;;;;;;;-1:-1:-1;42688:6:0;;-1:-1:-1;;;;;42688:6:0;42615:87;;50243:36;;;;;;;;;;-1:-1:-1;50243:36:0;;;;;;;;;;;;;;5245:4:1;5233:17;;;5215:36;;5203:2;5188:18;50243:36:0;5073:184:1;27727:104:0;;;;;;;;;;;;;:::i;50429:37::-;;;;;;;;;;;;;;;;29337:287;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;50611:25::-;;;;;;;;;;-1:-1:-1;50611:25:0;;;;;;;;;;;54413:107;;;;;;;;;;-1:-1:-1;54413:107:0;;;;;:::i;:::-;;:::i;55660:117::-;;;;;;;;;;-1:-1:-1;55660:117:0;;;;;:::i;:::-;;:::i;55443:210::-;;;;;;;;;;-1:-1:-1;55443:210:0;;;;;:::i;:::-;;:::i;50285:40::-;;;;;;;;;;-1:-1:-1;50285:40:0;;;;;;;;;;;53079:490;;;;;;;;;;-1:-1:-1;53079:490:0;;;;;:::i;:::-;;:::i;52484:472::-;;;;;;;;;;-1:-1:-1;52484:472:0;;;;;:::i;:::-;;:::i;50208:30::-;;;;;;;;;;-1:-1:-1;50208:30:0;;;;;;;;;;;7407:6:1;7395:19;;;7377:38;;7365:2;7350:18;50208:30:0;7233:188:1;29695:164:0;;;;;;;;;;-1:-1:-1;29695:164:0;;;;;:::i;:::-;;:::i;43525:201::-;;;;;;;;;;-1:-1:-1;43525:201:0;;;;;:::i;:::-;;:::i;50332:43::-;;;;;;;;;;-1:-1:-1;50332:43:0;;;;;;;;;;;50474:36;;;;;;;;;;-1:-1:-1;50474:36:0;;;;;;;;24445:305;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;52967:97::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;;;;;;;;;53036:9:::1;:22:::0;;-1:-1:-1;;53036:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52967:97::o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;51006:1140::-;50920:9;50933:10;50920:23;50912:66;;;;-1:-1:-1;;;50912:66:0;;8639:2:1;50912:66:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:32;8697:18;;;8690:60;8767:18;;50912:66:0;8437:354:1;50912:66:0;51111:6:::1;::::0;::::1;::::0;::::1;;;51110:7;51102:43;;;::::0;-1:-1:-1;;;51102:43:0;;8998:2:1;51102:43:0::1;::::0;::::1;8980:21:1::0;9037:2;9017:18;;;9010:30;9076:25;9056:18;;;9049:53;9119:18;;51102:43:0::1;8796:347:1::0;51102:43:0::1;51190:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;51160:43;;51176:11;51160:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;51160:13:::1;:27;;;;:::i;:::-;:43;51152:63;;;::::0;-1:-1:-1;;;51152:63:0;;9785:2:1;51152:63:0::1;::::0;::::1;9767:21:1::0;9824:1;9804:18;;;9797:29;-1:-1:-1;;;9842:18:1;;;9835:37;9889:18;;51152:63:0::1;9583:330:1::0;51152:63:0::1;51271:22;::::0;;;::::1;;;51256:11:::0;51232:21:::1;51242:10;51232:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;51223:103;;;::::0;-1:-1:-1;;;51223:103:0;;10120:2:1;51223:103:0::1;::::0;::::1;10102:21:1::0;10159:2;10139:18;;;10132:30;10198;10178:18;;;10171:58;10246:18;;51223:103:0::1;9918:352:1::0;51223:103:0::1;51381:14;;51367:11;51344:20;;:34;;;;:::i;:::-;:51;51341:759;;;51453:9;51437:11;51430:4;;:18;;;;:::i;:::-;51429:33;;51407:107;;;::::0;-1:-1:-1;;;51407:107:0;;10650:2:1;51407:107:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:54;10772:18;;51407:107:0::1;10448:348:1::0;51407:107:0::1;51341:759;;;51587:26;::::0;;;::::1;;;51573:11:::0;51549:21:::1;51559:10;51549:9;:21::i;:::-;:35;;;;:::i;:::-;:64;51545:548;;;51672:9;51656:11;51649:4;;:18;;;;:::i;:::-;51648:33;;51626:107;;;::::0;-1:-1:-1;;;51626:107:0;;10650:2:1;51626:107:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;-1:-1:-1;;;10708:18:1;;;10701:54;10772:18;;51626:107:0::1;10448:348:1::0;51626:107:0::1;51781:18;::::0;;;::::1;;;51766:33:::0;::::1;;51744:117;;;;-1:-1:-1::0;;;51744:117:0::1;;;;;;;:::i;51545:548::-;51935:26;::::0;;;::::1;;;51920:41:::0;::::1;;51894:137;;;;-1:-1:-1::0;;;51894:137:0::1;;;;;;;:::i;:::-;52070:11;52046:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;51545:548:0::1;52106:34;52116:10;52128:11;52106:9;:34::i;:::-;51006:1140:::0;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;54044:129::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54137:14:::1;:30:::0;54044:129::o;53940:102::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54014:9:::1;:22;54026:10:::0;54014:9;:22:::1;:::i;:::-;;53940:102:::0;:::o;55105:159::-;55206:4;-1:-1:-1;;;;;47313:18:0;;47321:10;47313:18;47309:184;;55878:24;;;;47405:61;;;47438:28;47455:10;47438:16;:28::i;:::-;55219:39:::1;55240:4;55246:2;55250:7;55219:20;:39::i;:::-;55105:159:::0;;;;:::o;52152:326::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;52235:18:::1;52263:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;52263:13:::1;52321:9;::::0;52235:42;;-1:-1:-1;52321:9:0::1;;52292:25;52306:11:::0;52235:42;52292:25:::1;:::i;:::-;:38;;;;52284:70;;;::::0;-1:-1:-1;;;52284:70:0;;13610:2:1;52284:70:0::1;::::0;::::1;13592:21:1::0;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;52284:70:0::1;13408:343:1::0;52284:70:0::1;52362:34;52372:9;52384:11;52362:34;;:9;:34::i;53723:102::-:0;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;53797:9:::1;:22;53809:10:::0;53797:9;:22:::1;:::i;54179:71::-:0;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54236:6:::1;::::0;;-1:-1:-1;;54226:16:0;::::1;54236:6;::::0;;;::::1;;;54235:7;54226:16:::0;;::::1;;::::0;;54179:71::o;54337:70::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54396:6:::1;::::0;;-1:-1:-1;;54386:16:0;::::1;54396:6:::0;;;;::::1;;;54395:7;54386:16:::0;;::::1;;::::0;;54337:70::o;54531:463::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54816:7:::1;54837;42688:6:::0;;-1:-1:-1;;;;;42688:6:0;;42615:87;54837:7:::1;-1:-1:-1::0;;;;;54829:21:0::1;54858;54829:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54815:69;;;54899:2;54891:11;;;::::0;::::1;55270:167:::0;55375:4;-1:-1:-1;;;;;47313:18:0;;47321:10;47313:18;47309:184;;55878:24;;;;47405:61;;;47438:28;47455:10;47438:16;:28::i;:::-;55388:43:::1;55413:4;55419:2;55423:7;55388:24;:43::i;54256:76::-:0;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54312:4:::1;:12:::0;54256:76::o;53576:134::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;53650:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;53650:35:0;;::::1;::::0;;;::::1;::::0;;53576:134::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;43267:103::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;43332:30:::1;43359:1;43332:18;:30::i;:::-;43267:103::o:0;53833:102::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;53907:9:::1;:22;53919:10:::0;53907:9;:22:::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;54413:107::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;54485:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54485:27:0;;::::1;::::0;;;::::1;::::0;;54413:107::o;55660:117::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;55737:24:::1;:32:::0;;-1:-1:-1;;55737:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55660:117::o;55443:210::-;55582:4;-1:-1:-1;;;;;47313:18:0;;47321:10;47313:18;47309:184;;55878:24;;;;47405:61;;;47438:28;47455:10;47438:16;:28::i;:::-;55598:49:::1;55623:4;55629:2;55633:7;55642:4;55598:24;:49::i;:::-;55443:210:::0;;;;;:::o;53079:490::-;53178:13;53219:17;53227:8;53219:7;:17::i;:::-;53203:98;;;;-1:-1:-1;;;53203:98:0;;14168:2:1;53203:98:0;;;14150:21:1;14207:2;14187:18;;;14180:30;14246:34;14226:18;;;14219:62;-1:-1:-1;;;14297:18:1;;;14290:45;14352:19;;53203:98:0;13966:411:1;53203:98:0;53319:6;;;;;;;:15;;53329:5;53319:15;53314:50;;53351:9;53344:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53079:490;;;:::o;53314:50::-;53378:28;53409:10;:8;:10::i;:::-;53378:41;;53464:1;53439:14;53433:28;:32;:130;;;;;;;;;;;;;;;;;53501:14;53517:19;:8;:17;:19::i;:::-;53538:9;53484:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53433:130;53426:137;53079:490;-1:-1:-1;;;53079:490:0:o;52484:472::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;52583:18:::1;52611:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;52611:13:::1;52583:42:::0;-1:-1:-1;52633:16:0::1;52654:36;52674:9:::0;52654:36:::1;::::0;::::1;;:::i;:::-;52734:9;::::0;52633:57;;-1:-1:-1;52734:9:0::1;::::0;;::::1;::::0;52705:25:::1;::::0;52633:57;;52705:25;::::1;;:::i;:::-;:38;;52697:70;;;::::0;-1:-1:-1;;;52697:70:0;;13610:2:1;52697:70:0::1;::::0;::::1;13592:21:1::0;13649:2;13629:18;;;13622:30;-1:-1:-1;;;13668:18:1;;;13661:49;13727:18;;52697:70:0::1;13408:343:1::0;52697:70:0::1;52780:9;52775:116;52795:20:::0;;::::1;52775:116;;;52837:42;52847:9;;52857:1;52847:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52861:17;52837:42;;:9;:42::i;:::-;52817:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52775:116;;;-1:-1:-1::0;;;;;;52484:472:0:o;29695:164::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164::o;43525:201::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43614:22:0;::::1;43606:73;;;::::0;-1:-1:-1;;;43606:73:0;;16117:2:1;43606:73:0::1;::::0;::::1;16099:21:1::0;16156:2;16136:18;;;16129:30;16195:34;16175:18;;;16168:62;-1:-1:-1;;;16246:18:1;;;16239:36;16292:19;;43606:73:0::1;15915:402:1::0;43606:73:0::1;43690:28;43709:8;43690:18;:28::i;31242:104::-:0;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;31047:187::-;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;47911:1359::-;48304:22;48298:4;48291:36;48397:9;48391:4;48384:23;48472:8;48466:4;48459:22;48649:4;48643;48637;48631;48604:25;48597:5;48586:68;48576:274;;48770:16;48764:4;48758;48743:44;48818:16;48812:4;48805:30;48576:274;49250:1;49244:4;49237:15;47911:1359;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;43886:191;43979:6;;;-1:-1:-1;;;;;43996:17:0;;;-1:-1:-1;;;;;;43996:17:0;;;;;;;44029:40;;43979:6;;;43996:17;43979:6;;44029:40;;43960:16;;44029:40;43949:128;43886:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;55002:97;55055:13;55084:9;55077:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;;1110:6;402:723;-1:-1:-1;;;;402:723:0:o;31709:163::-;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;29695:164;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;;;;;;;;;;;36240:42;55105:159;39905:667;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40323:6;:13;40340:1;40323:18;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;39905:667:0;;;;;;:::o;32131:1775::-;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:8;32392:1;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;33212:38;;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;33670:40;;33687:1;;33670:40;33754:3;33738:12;:19;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;55105:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2272:254;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:127::-;2592:10;2587:3;2583:20;2580:1;2573:31;2623:4;2620:1;2613:15;2647:4;2644:1;2637:15;2663:632;2728:5;2758:18;2799:2;2791:6;2788:14;2785:40;;;2805:18;;:::i;:::-;2880:2;2874:9;2848:2;2934:15;;-1:-1:-1;;2930:24:1;;;2956:2;2926:33;2922:42;2910:55;;;2980:18;;;3000:22;;;2977:46;2974:72;;;3026:18;;:::i;:::-;3066:10;3062:2;3055:22;3095:6;3086:15;;3125:6;3117;3110:22;3165:3;3156:6;3151:3;3147:16;3144:25;3141:45;;;3182:1;3179;3172:12;3141:45;3232:6;3227:3;3220:4;3212:6;3208:17;3195:44;3287:1;3280:4;3271:6;3263;3259:19;3255:30;3248:41;;;;2663:632;;;;;:::o;3300:451::-;3369:6;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3478:9;3465:23;3511:18;3503:6;3500:30;3497:50;;;3543:1;3540;3533:12;3497:50;3566:22;;3619:4;3611:13;;3607:27;-1:-1:-1;3597:55:1;;3648:1;3645;3638:12;3597:55;3671:74;3737:7;3732:2;3719:16;3714:2;3710;3706:11;3671:74;:::i;3938:328::-;4015:6;4023;4031;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4123:29;4142:9;4123:29;:::i;:::-;4113:39;;4171:38;4205:2;4194:9;4190:18;4171:38;:::i;:::-;4161:48;;4256:2;4245:9;4241:18;4228:32;4218:42;;3938:328;;;;;:::o;4271:258::-;4338:6;4346;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:28;4456:9;4438:28;:::i;:::-;4428:38;;4485;4519:2;4508:9;4504:18;4485:38;:::i;:::-;4475:48;;4271:258;;;;;:::o;4534:156::-;4600:20;;4660:4;4649:16;;4639:27;;4629:55;;4680:1;4677;4670:12;4695:182;4752:6;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:27;4861:9;4844:27;:::i;4882:186::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5033:29;5052:9;5033:29;:::i;5262:160::-;5327:20;;5383:13;;5376:21;5366:32;;5356:60;;5412:1;5409;5402:12;5427:254;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:52;;;5569:1;5566;5559:12;5521:52;5592:29;5611:9;5592:29;:::i;:::-;5582:39;;5640:35;5671:2;5660:9;5656:18;5640:35;:::i;5686:180::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;5834:26;5850:9;5834:26;:::i;5871:667::-;5966:6;5974;5982;5990;6043:3;6031:9;6022:7;6018:23;6014:33;6011:53;;;6060:1;6057;6050:12;6011:53;6083:29;6102:9;6083:29;:::i;:::-;6073:39;;6131:38;6165:2;6154:9;6150:18;6131:38;:::i;:::-;6121:48;;6216:2;6205:9;6201:18;6188:32;6178:42;;6271:2;6260:9;6256:18;6243:32;6298:18;6290:6;6287:30;6284:50;;;6330:1;6327;6320:12;6284:50;6353:22;;6406:4;6398:13;;6394:27;-1:-1:-1;6384:55:1;;6435:1;6432;6425:12;6384:55;6458:74;6524:7;6519:2;6506:16;6501:2;6497;6493:11;6458:74;:::i;:::-;6448:84;;;5871:667;;;;;;;:::o;6543:685::-;6636:6;6644;6652;6705:2;6693:9;6684:7;6680:23;6676:32;6673:52;;;6721:1;6718;6711:12;6673:52;6744:27;6761:9;6744:27;:::i;:::-;6734:37;;6822:2;6811:9;6807:18;6794:32;6845:18;6886:2;6878:6;6875:14;6872:34;;;6902:1;6899;6892:12;6872:34;6940:6;6929:9;6925:22;6915:32;;6985:7;6978:4;6974:2;6970:13;6966:27;6956:55;;7007:1;7004;6997:12;6956:55;7047:2;7034:16;7073:2;7065:6;7062:14;7059:34;;;7089:1;7086;7079:12;7059:34;7142:7;7137:2;7127:6;7124:1;7120:14;7116:2;7112:23;7108:32;7105:45;7102:65;;;7163:1;7160;7153:12;7102:65;7194:2;7190;7186:11;7176:21;;7216:6;7206:16;;;;;6543:685;;;;;:::o;7426:260::-;7494:6;7502;7555:2;7543:9;7534:7;7530:23;7526:32;7523:52;;;7571:1;7568;7561:12;7523:52;7594:29;7613:9;7594:29;:::i;7691:356::-;7893:2;7875:21;;;7912:18;;;7905:30;7971:34;7966:2;7951:18;;7944:62;8038:2;8023:18;;7691:356::o;8052:380::-;8131:1;8127:12;;;;8174;;;8195:61;;8249:4;8241:6;8237:17;8227:27;;8195:61;8302:2;8294:6;8291:14;8271:18;8268:38;8265:161;;8348:10;8343:3;8339:20;8336:1;8329:31;8383:4;8380:1;8373:15;8411:4;8408:1;8401:15;8265:161;;8052:380;;;:::o;9148:127::-;9209:10;9204:3;9200:20;9197:1;9190:31;9240:4;9237:1;9230:15;9264:4;9261:1;9254:15;9280:168;9347:6;9373:10;;;9385;;;9369:27;;9408:11;;;9405:37;;;9422:18;;:::i;:::-;9405:37;9280:168;;;;:::o;9453:125::-;9518:9;;;9539:10;;;9536:36;;;9552:18;;:::i;10275:168::-;10348:9;;;10379;;10396:15;;;10390:22;;10376:37;10366:71;;10417:18;;:::i;10801:398::-;11003:2;10985:21;;;11042:2;11022:18;;;11015:30;11081:34;11076:2;11061:18;;11054:62;-1:-1:-1;;;11147:2:1;11132:18;;11125:32;11189:3;11174:19;;10801:398::o;11330:545::-;11432:2;11427:3;11424:11;11421:448;;;11468:1;11493:5;11489:2;11482:17;11538:4;11534:2;11524:19;11608:2;11596:10;11592:19;11589:1;11585:27;11579:4;11575:38;11644:4;11632:10;11629:20;11626:47;;;-1:-1:-1;11667:4:1;11626:47;11722:2;11717:3;11713:12;11710:1;11706:20;11700:4;11696:31;11686:41;;11777:82;11795:2;11788:5;11785:13;11777:82;;;11840:17;;;11821:1;11810:13;11777:82;;12051:1352;12177:3;12171:10;12204:18;12196:6;12193:30;12190:56;;;12226:18;;:::i;:::-;12255:97;12345:6;12305:38;12337:4;12331:11;12305:38;:::i;:::-;12299:4;12255:97;:::i;:::-;12407:4;;12471:2;12460:14;;12488:1;12483:663;;;;13190:1;13207:6;13204:89;;;-1:-1:-1;13259:19:1;;;13253:26;13204:89;-1:-1:-1;;12008:1:1;12004:11;;;12000:24;11996:29;11986:40;12032:1;12028:11;;;11983:57;13306:81;;12453:944;;12483:663;11277:1;11270:14;;;11314:4;11301:18;;-1:-1:-1;;12519:20:1;;;12637:236;12651:7;12648:1;12645:14;12637:236;;;12740:19;;;12734:26;12719:42;;12832:27;;;;12800:1;12788:14;;;;12667:19;;12637:236;;;12641:3;12901:6;12892:7;12889:19;12886:201;;;12962:19;;;12956:26;-1:-1:-1;;13045:1:1;13041:14;;;13057:3;13037:24;13033:37;13029:42;13014:58;12999:74;;12886:201;-1:-1:-1;;;;;13133:1:1;13117:14;;;13113:22;13100:36;;-1:-1:-1;12051:1352:1:o;14382:1256::-;14606:3;14644:6;14638:13;14670:4;14683:64;14740:6;14735:3;14730:2;14722:6;14718:15;14683:64;:::i;:::-;14810:13;;14769:16;;;;14832:68;14810:13;14769:16;14867:15;;;14832:68;:::i;:::-;14989:13;;14922:20;;;14962:1;;15027:36;14989:13;15027:36;:::i;:::-;15082:1;15099:18;;;15126:141;;;;15281:1;15276:337;;;;15092:521;;15126:141;-1:-1:-1;;15161:24:1;;15147:39;;15238:16;;15231:24;15217:39;;15206:51;;;-1:-1:-1;15126:141:1;;15276:337;15307:6;15304:1;15297:17;15355:2;15352:1;15342:16;15380:1;15394:169;15408:8;15405:1;15402:15;15394:169;;;15490:14;;15475:13;;;15468:37;15533:16;;;;15425:10;;15394:169;;;15398:3;;15594:8;15587:5;15583:20;15576:27;;15092:521;-1:-1:-1;15629:3:1;;14382:1256;-1:-1:-1;;;;;;;;;;14382:1256:1:o;15643:127::-;15704:10;15699:3;15695:20;15692:1;15685:31;15735:4;15732:1;15725:15;15759:4;15756:1;15749:15;15775:135;15814:3;15835:17;;;15832:43;;15855:18;;:::i;:::-;-1:-1:-1;15902:1:1;15891:13;;15775:135::o;16322:127::-;16383:10;16378:3;16374:20;16371:1;16364:31;16414:4;16411:1;16404:15;16438:4;16435:1;16428:15;16454:120;16494:1;16520;16510:35;;16525:18;;:::i;:::-;-1:-1:-1;16559:9:1;;16454:120::o;16579:128::-;16646:9;;;16667:11;;;16664:37;;;16681:18;;:::i;16712:112::-;16744:1;16770;16760:35;;16775:18;;:::i;:::-;-1:-1:-1;16809:9:1;;16712:112::o;16829:489::-;-1:-1:-1;;;;;17098:15:1;;;17080:34;;17150:15;;17145:2;17130:18;;17123:43;17197:2;17182:18;;17175:34;;;17245:3;17240:2;17225:18;;17218:31;;;17023:4;;17266:46;;17292:19;;17284:6;17266:46;:::i;:::-;17258:54;16829:489;-1:-1:-1;;;;;;16829:489:1:o;17323:249::-;17392:6;17445:2;17433:9;17424:7;17420:23;17416:32;17413:52;;;17461:1;17458;17451:12;17413:52;17493:9;17487:16;17512:30;17536:5;17512:30;:::i

Swarm Source

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